@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@200;400;600;700&display=swap");

:root {
  --turquoise: #28bbc2;
  --turquoise-dark: #177f85;
  --orange: #ee5e1f;
  --ink: #184e52;
  --muted: #65777a;
  --paper: #fffdfb;
  --soft: #f3faf9;
  --peach: #fff1e9;
  --line: #dfeae8;
  --shadow: 0 18px 46px rgba(24, 78, 82, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat Alternates", "Segoe UI", sans-serif;
  font-weight: 200;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 200;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.1;
}

strong,
h3 {
  font-weight: 600;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 253, 251, 0.93);
  padding: 12px max(24px, calc((100vw - 1280px) / 2));
  backdrop-filter: blur(16px);
}

.site-logo img {
  display: block;
  width: 260px;
  max-height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--orange);
}

.nav-cta {
  min-height: 42px;
  border: 1px solid var(--turquoise);
  border-radius: 7px;
  padding: 12px 16px;
  color: var(--turquoise-dark);
}

.nav-app {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 7px;
  background: var(--turquoise);
  color: white;
  padding: 12px 16px;
}

.site-nav .nav-app:hover {
  background: var(--turquoise-dark);
  color: white;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(860px, 92vh);
  align-items: end;
  background: url("https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?auto=format&fit=crop&w=2000&q=88") center 40%/cover;
  color: white;
  padding-top: 82px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 63, 67, 0.92) 0%, rgba(14, 63, 67, 0.68) 45%, rgba(14, 63, 67, 0.12) 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 48px;
}

.hero .eyebrow {
  color: #9ae6e8;
}

.hero h1 {
  max-width: 700px;
  margin: 16px 0;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.98;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.eyebrow {
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions,
.contact-options,
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 20px;
  font-weight: 600;
}

.button.primary {
  background: var(--orange);
  color: white;
}

.button.primary:hover {
  background: #cf4813;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.button.outline {
  border-color: var(--turquoise);
  background: white;
  color: var(--turquoise-dark);
}

.trust-line {
  display: flex;
  gap: 34px;
  margin-top: 72px;
  font-size: 12px;
}

.trust-line span {
  display: grid;
  gap: 4px;
  border-left: 2px solid var(--turquoise);
  padding-left: 12px;
}

.trust-line strong {
  font-size: 15px;
}

.section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin: 10px 0 16px;
}

.sign-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sign-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.sign-grid img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.sign-grid article > div {
  display: grid;
  min-height: 112px;
  align-content: space-between;
  gap: 18px;
  padding: 16px;
}

.sign-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.sign-grid strong {
  line-height: 1.45;
}

.support-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  border-radius: 7px;
  background: var(--soft);
  padding: 24px;
}

.support-callout p {
  margin: 5px 0 0;
}

.process {
  width: 100%;
  background: var(--soft);
  padding-right: max(24px, calc((100vw - 1280px) / 2));
  padding-left: max(24px, calc((100vw - 1280px) / 2));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-grid article {
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.process-grid article:first-child {
  border-left: 1px solid var(--line);
}

.process-grid img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.process-grid article > div {
  min-height: 235px;
  padding: 24px;
}

.process-grid span {
  color: var(--orange);
  font-size: 30px;
  font-weight: 200;
}

.process-grid h3 {
  margin-top: 36px;
}

.difference {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.difference-copy h2 {
  margin: 12px 0 20px;
}

.text-link {
  color: var(--turquoise-dark);
  font-weight: 600;
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.difference-list div {
  min-height: 180px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.difference-list div:nth-child(2n) {
  border-right: 0;
}

.difference-list div:nth-child(n + 3) {
  border-bottom: 0;
}

.difference-list span {
  color: var(--turquoise);
  font-size: 38px;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  width: 100%;
  background: var(--peach);
  padding-right: max(24px, calc((100vw - 1280px) / 2));
  padding-left: max(24px, calc((100vw - 1280px) / 2));
}

.about-photo img {
  display: block;
  width: min(460px, 100%);
  aspect-ratio: 4/5;
  border-radius: 7px;
  object-fit: cover;
}

.about-copy h2 {
  margin: 12px 0 20px;
}

.credentials span {
  border: 1px solid rgba(238, 94, 31, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  padding: 8px 11px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
}

.testimonials .section-heading {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 26px;
}

blockquote p {
  color: var(--ink);
  font-size: 16px;
}

blockquote footer {
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 600;
}

.content-section {
  width: 100%;
  background: var(--soft);
  padding-right: max(24px, calc((100vw - 1280px) / 2));
  padding-left: max(24px, calc((100vw - 1280px) / 2));
}

.row-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.row-heading h2 {
  max-width: 780px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-grid article {
  display: grid;
  min-height: 290px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  padding: 24px;
}

.article-grid span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-grid h3 {
  margin: 42px 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.article-grid a {
  margin-top: auto;
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact-copy h2 {
  margin: 12px 0 20px;
}

.contact-options {
  display: grid;
  margin-top: 32px;
}

.contact-options a {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.contact-options span {
  color: var(--muted);
  font-size: 12px;
}

.contact-form {
  display: grid;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  padding: 12px;
  color: var(--ink);
  font-weight: 400;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(40, 187, 194, 0.14);
}

.contact-form small {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-success {
  border-radius: 7px;
  background: var(--soft);
  padding: 20px;
  color: var(--turquoise-dark);
  font-weight: 600;
  text-align: center;
}

.contact-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
}

.contact-map iframe {
  width: 100%;
  height: 370px;
  border: 0;
}

.map-details {
  align-self: center;
  padding: 32px;
}

.map-details h3 {
  margin: 9px 0;
  font-size: 24px;
}

.map-details p {
  margin-bottom: 24px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  background: var(--soft);
  padding: 54px 24px 30px;
  text-align: center;
}

.site-footer img {
  width: min(360px, 88vw);
  max-height: 82px;
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
}

.site-footer small {
  color: var(--muted);
  font-size: 10px;
}

.floating-contact {
  position: fixed;
  z-index: 15;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-height: 46px;
  align-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  padding: 0 18px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: white;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  .site-nav.open {
    display: flex;
  }

  .sign-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .difference,
  .about,
  .contact,
  .contact-map {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    aspect-ratio: 16/10;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-logo img {
    width: 205px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content,
  .section {
    width: min(100% - 28px, 1280px);
  }

  .hero h1 {
    font-size: 52px;
  }

  .trust-line,
  .support-callout,
  .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-line {
    gap: 16px;
    margin-top: 46px;
  }

  .sign-grid,
  .process-grid,
  .difference-list,
  .testimonial-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:nth-child(3) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .difference-list div,
  .difference-list div:nth-child(2n),
  .difference-list div:nth-child(n + 3) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .difference-list div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
