:root {
  --ink: #17364f;
  --ink-soft: #496276;
  --navy: #123d5a;
  --navy-deep: #0a2f48;
  --blue: #0b5e8e;
  --blue-bright: #2d93bd;
  --sky: #dff2f8;
  --mist: #f2f7f9;
  --paper: #ffffff;
  --line: #d7e5eb;
  --accent: #62c2e5;
  --success: #167452;
  --warning: #8a6512;
  --shadow: 0 22px 70px rgba(14, 53, 77, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(232, 173, 50, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(215, 229, 235, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand-mark img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.15;
}

.brand-mark small {
  margin-top: 3px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav .nav-login {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  padding: 10px 17px;
}

.site-nav .nav-login:hover {
  border-color: var(--blue);
  background: var(--mist);
}

.site-nav .nav-quote {
  border-radius: 999px;
  background: var(--navy);
  color: var(--paper);
  padding: 11px 18px;
  box-shadow: 0 9px 22px rgba(10, 47, 72, 0.15);
}

.site-nav .nav-quote:hover {
  background: var(--blue);
  color: var(--paper);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before {
  top: 14px;
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle::after {
  top: 28px;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  top: 21px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle::after {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 10vw, 130px) 0 78px;
  background:
    radial-gradient(circle at 82% 13%, rgba(45, 147, 189, 0.18), transparent 24%),
    linear-gradient(180deg, #f4f9fb 0%, #ffffff 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(11, 94, 142, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -220px;
  right: -110px;
  width: 600px;
  height: 600px;
}

.hero::after {
  top: -150px;
  right: -40px;
  width: 450px;
  height: 450px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--blue-bright);
  content: "";
}

.hero h1,
.section-heading h2,
.contact-panel h2,
.privacy-hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 21px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(18, 61, 90, 0.18);
}

.button-primary:hover {
  background: var(--blue);
  box-shadow: 0 15px 34px rgba(11, 94, 142, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: #a9c9d8;
  background: var(--mist);
}

.button-disabled {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #dce9ef;
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  padding: 0;
  color: #607788;
  font-size: 0.83rem;
  font-weight: 750;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(45, 147, 189, 0.11);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 53, 0.05) 22%, rgba(5, 31, 48, 0.84) 100%);
}

.hero-logo-card {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: flex;
  width: min(300px, calc(100% - 48px));
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 14px;
  box-shadow: 0 18px 42px rgba(5, 35, 54, 0.22);
  backdrop-filter: blur(10px);
}

.hero-logo-card img {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.hero-logo-card strong,
.hero-logo-card small {
  display: block;
}

.hero-logo-card strong {
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.1;
}

.hero-logo-card small {
  margin-top: 3px;
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo-overlay figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 127px;
  left: 30px;
  color: var(--paper);
}

.hero-photo-overlay figcaption strong,
.hero-photo-overlay figcaption span {
  display: block;
}

.hero-photo-overlay figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.hero-photo-overlay figcaption span {
  margin-top: 3px;
  color: #d4eaf2;
  font-size: 0.82rem;
}

.coordinate-card {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 28px;
  left: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(8, 43, 65, 0.74);
  backdrop-filter: blur(12px);
}

.coordinate-card div {
  padding: 17px 12px;
  text-align: center;
}

.coordinate-card div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.coordinate-card strong,
.coordinate-card span {
  display: block;
}

.coordinate-card strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.coordinate-card span {
  margin-top: 2px;
  color: #a9d8e8;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.workflow-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.workflow-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 28px;
}

.workflow-item + .workflow-item {
  border-left: 1px solid var(--line);
}

.workflow-number {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.decision-section {
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper);
  padding: clamp(72px, 9vw, 108px) 0;
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 9vw, 110px);
  align-items: start;
}

.decision-copy {
  position: sticky;
  top: 120px;
}

.decision-copy .eyebrow {
  color: #a8dff0;
}

.decision-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.07;
}

.decision-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.decision-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px 0;
}

.decision-list article > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.decision-list h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.decision-list p {
  margin: 0;
  color: #bdd5df;
  font-size: 0.92rem;
}

.workflow-item strong,
.workflow-item small {
  display: block;
}

.workflow-item strong {
  color: var(--navy);
  font-size: 0.93rem;
}

.workflow-item small {
  color: #6b7f8e;
  font-size: 0.76rem;
}

.section {
  padding: clamp(78px, 10vw, 120px) 0;
}

.section-muted {
  background: var(--mist);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(2.35rem, 4.5vw, 4rem);
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #afcedb;
  box-shadow: 0 18px 46px rgba(14, 53, 77, 0.09);
}

.service-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-index::after {
  width: 28px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.service-card h3 {
  margin: 45px 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.18;
}

.service-card p {
  flex: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 24px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 850;
  text-decoration: none;
}

.service-card > a:hover {
  text-decoration: underline;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 8vw, 105px);
  align-items: center;
}

.about-map {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.about-map > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-map-label {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(6, 38, 58, 0.72);
  color: var(--paper);
  padding: 19px;
  backdrop-filter: blur(10px);
}

.about-map-label small {
  display: block;
  margin-top: 3px;
  color: #b8deea;
}

.about-copy h2 {
  margin: 0 0 24px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.5vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.about-copy > p {
  color: var(--ink-soft);
}

.about-points {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.about-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.about-point > span {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.about-point strong,
.about-point small {
  display: block;
}

.about-point strong {
  color: var(--navy);
}

.about-point small {
  margin-top: 3px;
  color: var(--ink-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 18px;
}

.portfolio-photo {
  position: relative;
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-deep);
  box-shadow: 0 16px 38px rgba(14, 53, 77, 0.1);
}

.portfolio-photo-tall {
  grid-column: span 5;
  grid-row: span 2;
}

.portfolio-photo-wide {
  grid-column: span 4;
}

.portfolio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portfolio-photo:hover img {
  transform: scale(1.025);
}

.portfolio-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 58px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(5, 31, 48, 0.9));
  color: var(--paper);
}

.portfolio-photo figcaption strong,
.portfolio-photo figcaption span {
  display: block;
}

.portfolio-photo figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07rem;
}

.portfolio-photo figcaption span {
  margin-top: 4px;
  color: #cfe4ec;
  font-size: 0.74rem;
}

.field-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  margin-top: 72px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--paper);
  padding: clamp(28px, 5vw, 55px);
  box-shadow: var(--shadow);
}

.field-story-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
}

.field-story-copy > p:not(.eyebrow) {
  color: #cfe1e9;
}

.field-story .eyebrow {
  color: #bfe6f2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--paper);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link-blue {
  color: var(--blue);
}

.faq-section {
  background: linear-gradient(180deg, #f5fafc, #ffffff);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 8vw, 100px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--navy);
  font-size: 1.03rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 2px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -7px 52px 25px 0;
  color: var(--ink-soft);
}

.field-story video {
  display: block;
  width: 100%;
  max-height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #061f30;
  object-fit: contain;
}

.clients-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 8%, rgba(54, 159, 198, 0.14), transparent 30%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.clients-heading {
  align-items: start;
}

.clients-intro .text-link {
  margin-top: 20px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.client-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: #aed1de;
  box-shadow: 0 18px 42px rgba(14, 53, 77, 0.1);
}

.client-logo-stage {
  display: grid;
  min-height: 150px;
  flex: 1;
  place-items: center;
  padding: 28px 36px;
  background: #ffffff;
}

.client-logo-stage-dark {
  background: #070a0e;
}

.client-logo-stage-navy {
  background: #06284e;
}

.client-logo-stage img {
  width: 100%;
  height: 78px;
  object-fit: contain;
}

.client-logo-stage .client-logo-surfland {
  transform: scale(1.25);
}

.client-card figcaption {
  align-self: end;
  border-top: 1px solid rgba(215, 229, 235, 0.75);
  padding: 11px 18px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.clients-disclaimer {
  margin: 20px 0 0;
  color: #748792;
  font-size: 0.72rem;
  text-align: center;
}

.contact-section {
  padding: 0 0 clamp(80px, 10vw, 120px);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 15%, rgba(89, 181, 216, 0.28), transparent 25%),
    linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: var(--paper);
  padding: clamp(38px, 7vw, 72px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(38px, 7vw, 80px);
  align-items: center;
}

.contact-panel::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.contact-panel .eyebrow {
  color: #bfe6f2;
}

.contact-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--paper);
}

.contact-panel p {
  position: relative;
  z-index: 1;
  max-width: 690px;
  color: #d9ebf1;
}

.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-conversion {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  padding: clamp(24px, 4vw, 34px);
  backdrop-filter: blur(12px);
}

.contact-conversion > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.contact-conversion ul {
  display: grid;
  gap: 9px;
  margin: 17px 0 0;
  padding: 0;
  color: #d9ebf1;
  font-size: 0.88rem;
  list-style: none;
}

.contact-conversion li::before {
  margin-right: 9px;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.contact-conversion .contact-actions {
  display: grid;
  margin-top: 24px;
}

.contact-conversion small {
  display: block;
  margin-top: 15px;
  color: #bcdbe5;
  text-align: center;
}

.contact-actions .button-primary {
  background: var(--paper);
  color: var(--navy);
}

.contact-actions .button-primary:hover {
  background: #edf7fa;
}

.contact-status {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: #bcdbe5;
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: var(--navy-deep);
  color: var(--paper);
  padding: 8px 17px 8px 8px;
  box-shadow: 0 14px 34px rgba(5, 31, 48, 0.28);
  text-decoration: none;
}

.floating-whatsapp > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--navy-deep);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-whatsapp strong {
  font-size: 0.82rem;
}

.floating-whatsapp:hover {
  background: var(--blue);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8fbfc;
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(2, minmax(160px, 0.6fr));
  gap: 50px;
}

.footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
}

.footer-column a,
.footer-column span {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #718593;
  font-size: 0.75rem;
}

/* Privacy page */
.privacy-hero {
  padding: clamp(68px, 9vw, 108px) 0 58px;
  background:
    radial-gradient(circle at 85% 22%, rgba(45, 147, 189, 0.16), transparent 24%),
    linear-gradient(180deg, #f2f8fa, #ffffff);
}

.privacy-hero h1 {
  max-width: 800px;
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.privacy-hero p {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 28px;
  color: #647b8b;
  font-size: 0.8rem;
}

.privacy-shell {
  display: grid;
  grid-template-columns: 265px minmax(0, 780px);
  gap: clamp(45px, 8vw, 90px);
  align-items: start;
  padding: 70px 0 105px;
}

.privacy-toc {
  position: sticky;
  top: 112px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.privacy-toc strong {
  display: block;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-toc a {
  display: block;
  margin: 8px 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-decoration: none;
}

.privacy-toc a:hover {
  color: var(--blue);
}

.confirmation-alert {
  border: 1px solid #ead698;
  border-radius: 16px;
  background: #fff9e9;
  color: #684e0b;
  padding: 19px 21px;
}

.confirmation-alert strong {
  display: block;
  margin-bottom: 5px;
}

.privacy-content section {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-content section:last-child {
  border-bottom: 0;
}

.privacy-content h2 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.18;
}

.privacy-content h3 {
  margin: 28px 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--ink-soft);
}

.privacy-content ul {
  margin: 16px 0;
  padding-left: 22px;
}

.privacy-content li + li {
  margin-top: 8px;
}

.pending-field {
  display: inline;
  border-radius: 5px;
  background: #fff0b9;
  color: #684e0b;
  padding: 2px 5px;
  font-weight: 800;
}

.privacy-contact {
  border: 1px solid #bfdbe5;
  border-radius: 18px;
  background: #eff8fb;
  padding: 23px;
}

.privacy-contact a {
  color: var(--blue);
  font-weight: 800;
}

.privacy-content a {
  color: var(--blue);
}

.legal-note {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7fafb;
  padding: 23px;
}

.legal-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
}

.legal-note code {
  display: block;
  overflow-wrap: anywhere;
  color: var(--blue);
}

/* WhatsApp platform page */
.platform-hero {
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0 clamp(72px, 8vw, 104px);
  background:
    radial-gradient(circle at 82% 12%, rgba(98, 194, 229, 0.23), transparent 28%),
    radial-gradient(circle at 4% 85%, rgba(11, 94, 142, 0.12), transparent 30%),
    linear-gradient(145deg, #f3fafc 0%, #ffffff 58%, #eef7f9 100%);
}

.platform-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.72fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.platform-hero h1,
.platform-flow-intro h2,
.platform-data-grid h2,
.platform-responsibility h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.04;
}

.platform-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6.2vw, 6rem);
  letter-spacing: -0.045em;
}

.platform-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.platform-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 750;
  list-style: none;
}

.platform-trust li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--success);
  content: "";
  vertical-align: 1px;
}

.platform-status-card {
  position: relative;
  border: 1px solid rgba(191, 219, 229, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.platform-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #e7f7f1;
  color: #176044;
  padding: 7px 12px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.platform-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1b9368;
  content: "";
}

.platform-card-label {
  margin: 27px 0 2px;
  color: #718593;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-status-card h2 {
  margin: 0 0 24px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 600;
}

.platform-status-card dl {
  margin: 0;
}

.platform-status-card dl div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}

.platform-status-card dt {
  color: #718593;
  font-size: 0.78rem;
}

.platform-status-card dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: right;
}

.platform-card-note {
  margin: 20px 0 0;
  color: #647b8b;
  font-size: 0.76rem;
}

.platform-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.platform-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-proof-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
}

.platform-proof-grid div + div {
  border-left: 1px solid var(--line);
}

.platform-proof-grid strong {
  color: var(--blue-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.platform-proof-grid span {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.platform-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.platform-feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: clamp(25px, 4vw, 38px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.platform-feature-card:hover {
  transform: translateY(-3px);
  border-color: #acd2df;
  box-shadow: 0 16px 34px rgba(14, 53, 77, 0.08);
}

.platform-feature-card > span {
  color: var(--blue-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.platform-feature-card h3 {
  margin: 18px 0 10px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 600;
}

.platform-feature-card p {
  margin: 0;
  color: var(--ink-soft);
}

.platform-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
}

.platform-flow-intro {
  position: sticky;
  top: 122px;
}

.platform-flow-intro h2,
.platform-data-grid h2,
.platform-responsibility h2 {
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  letter-spacing: -0.035em;
}

.platform-flow-intro > p:last-child,
.platform-data-lead,
.platform-responsibility p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.platform-flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-flow-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.platform-flow-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.platform-flow-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  font-weight: 850;
}

.platform-flow-list h3 {
  margin: 3px 0 7px;
  color: var(--navy);
  font-size: 1.1rem;
}

.platform-flow-list p {
  margin: 0;
  color: var(--ink-soft);
}

.platform-data-grid {
  display: grid;
  gap: 42px;
}

.platform-data-grid > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 50px;
  align-items: end;
}

.platform-data-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.platform-data-panels article {
  border-radius: var(--radius-md);
  background: var(--navy-deep);
  color: var(--paper);
  padding: clamp(28px, 4vw, 42px);
}

.platform-data-panels article:last-child {
  background: var(--blue);
}

.platform-data-panels h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.platform-data-panels ul {
  margin: 0;
  padding-left: 20px;
}

.platform-data-panels li + li {
  margin-top: 9px;
}

.platform-policy-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.platform-policy-links a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
}

.platform-policy-links a:hover {
  border-color: var(--blue-bright);
  background: var(--mist);
}

.platform-policy-links strong,
.platform-policy-links span {
  display: block;
}

.platform-policy-links strong {
  color: var(--navy);
}

.platform-policy-links span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.platform-responsibility {
  padding: clamp(72px, 9vw, 110px) 0;
  background: linear-gradient(145deg, var(--navy-deep), #124f70);
}

.platform-responsibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.platform-responsibility .eyebrow,
.platform-responsibility h2,
.platform-responsibility p {
  color: var(--paper);
}

.platform-responsibility address {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  color: var(--paper);
  font-style: normal;
}

.platform-responsibility address span,
.platform-responsibility address a,
.platform-responsibility address strong,
.platform-responsibility address small {
  display: block;
}

.platform-responsibility address span {
  margin-top: 17px;
  color: #a9d8e8;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-responsibility address span:first-child {
  margin-top: 0;
}

.platform-responsibility address a,
.platform-responsibility address strong {
  margin-top: 4px;
  color: var(--paper);
  font-size: 1.06rem;
  overflow-wrap: anywhere;
}

.platform-responsibility address small {
  margin-top: 22px;
  color: #c1dfE9;
}

@media (max-width: 980px) {
  .platform-hero-grid,
  .platform-flow-layout,
  .platform-responsibility-grid {
    grid-template-columns: 1fr;
  }

  .platform-flow-intro {
    position: static;
  }

  .platform-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-proof-grid div:nth-child(3) {
    border-left: 0;
  }

  .platform-proof-grid div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .platform-data-grid > div:first-child {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .platform-feature-grid,
  .platform-data-panels,
  .platform-policy-links,
  .platform-proof-grid {
    grid-template-columns: 1fr;
  }

  .platform-proof-grid div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .platform-status-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .platform-status-card dd {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .decision-grid,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .decision-copy,
  .faq-intro {
    position: static;
  }

  .decision-copy,
  .faq-intro {
    max-width: 760px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 680px;
  }

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

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-map {
    min-height: 460px;
  }

  .field-story {
    grid-template-columns: 1fr;
  }

  .field-story-copy {
    max-width: 680px;
  }

  .contact-copy {
    max-width: 780px;
  }

  .privacy-shell {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 22px;
  }

  .privacy-toc strong {
    width: 100%;
  }

  .privacy-toc a {
    margin: 0;
  }
}

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

  .site-nav {
    position: fixed;
    z-index: 90;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    transform: translateY(-130%);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 12px 20px 24px;
    box-shadow: 0 18px 40px rgba(14, 53, 77, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-bottom: 1px solid #edf3f5;
    padding: 14px 4px;
  }

  .site-nav .nav-login {
    margin-top: 12px;
    border-bottom: 1px solid var(--line);
    padding: 12px 17px;
    text-align: center;
  }

  .site-nav .nav-quote {
    margin-top: 10px;
    padding: 13px 17px;
    text-align: center;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-item + .workflow-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 360px;
  }

  .portfolio-photo,
  .portfolio-photo-wide {
    grid-column: auto;
  }

  .portfolio-photo-tall {
    grid-column: auto;
    grid-row: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .brand-mark strong {
    font-size: 1rem;
  }

  .brand-mark small {
    font-size: 0.59rem;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-logo-card {
    top: 16px;
    right: 16px;
    left: auto;
    width: 245px;
  }

  .hero-logo-card img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-photo-overlay figcaption {
    right: 20px;
    bottom: 103px;
    left: 20px;
  }

  .hero-photo-overlay figcaption strong {
    font-size: 1.22rem;
  }

  .coordinate-card {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: repeat(3, 1fr);
  }

  .coordinate-card div {
    padding: 10px 5px;
  }

  .coordinate-card div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .coordinate-card strong {
    font-size: 0.86rem;
  }

  .coordinate-card span {
    font-size: 0.54rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    min-height: 180px;
  }

  .client-logo-stage {
    min-height: 140px;
  }

  .service-card {
    min-height: 245px;
  }

  .about-map {
    min-height: 460px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 430px;
  }

  .portfolio-photo,
  .portfolio-photo-tall,
  .portfolio-photo-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .field-story {
    margin-top: 46px;
    border-radius: 22px;
  }

  .field-story video {
    max-height: 520px;
  }

  .decision-list article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
