:root {
  color-scheme: light;
  --navy-950: #07111d;
  --navy-900: #0b1725;
  --navy-850: #102032;
  --teal-700: #0f766e;
  --teal-600: #12867d;
  --teal-100: #dff5f1;
  --gold-500: #c8963e;
  --gold-100: #f5ead2;
  --ink: #0f1720;
  --muted: #5c6876;
  --soft: #f5f7f6;
  --paper: #ffffff;
  --line: #dce5e1;
  --line-strong: #c8d4cf;
  --shadow: 0 24px 80px rgba(7, 17, 29, .12);
  --shadow-soft: 0 18px 52px rgba(7, 17, 29, .08);
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faf9 36%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
}

ul,
ol,
dl,
dd {
  margin: 0;
}

.marketing-lock {
  -webkit-user-select: none;
  user-select: none;
}

.marketing-lock a,
.marketing-lock button,
.site-header a,
.contact a {
  -webkit-user-select: auto;
  user-select: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--teal-700);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

.section-pad {
  padding: 106px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 229, 225, .86);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
}

.header-menu {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.header-menu[hidden] {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(7, 17, 29, .16);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--navy-950);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 850;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 650;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--navy-950);
  background:
    linear-gradient(180deg, #ffffff, #f8faf9);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(7, 17, 29, .08);
  cursor: pointer;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), #0d3235);
  border-color: rgba(7, 17, 29, .7);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344355;
  font-size: 14px;
  font-weight: 720;
}

.nav a {
  padding: 14px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--teal-700);
  border-bottom-color: rgba(15, 118, 110, .34);
}

.nav a[aria-current="page"] {
  color: var(--teal-700);
  border-bottom-color: rgba(15, 118, 110, .55);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 820;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-700), #0c4f52);
  box-shadow: 0 14px 30px rgba(15, 118, 110, .22);
}

.button.ghost {
  color: #f7fbfb;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.button.secondary {
  color: var(--navy-950);
  background: #fff;
  border-color: var(--line-strong);
}

.button.secondary:hover {
  border-color: rgba(15, 118, 110, .45);
  color: var(--teal-700);
}

.header-cta:hover,
.button.primary:hover,
.button.ghost:hover,
.button.secondary:hover {
  transform: translateY(-1px);
}

.header-cta:hover,
.button.primary:hover {
  background: linear-gradient(135deg, #129186, #0d454b);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(18, 134, 125, .32), transparent 30%),
    radial-gradient(circle at 12% 14%, rgba(200, 150, 62, .2), transparent 25%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 48%, #0c2a31 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  padding: 96px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .62fr);
  align-items: center;
  gap: 74px;
}

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

.hero-kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--teal-600);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 820;
}

.hero-kicker {
  color: #8ae3d6;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 62px;
  line-height: 1.03;
  font-weight: 860;
  max-width: 820px;
}

.hero-intro {
  max-width: 690px;
  margin: 26px 0 0;
  color: #cad8d8;
  font-size: 20px;
  line-height: 1.72;
}

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

.hero-card {
  padding: 30px;
  color: #eef7f6;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .07));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  display: grid;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hero-card-top span {
  color: #9beadf;
  font-size: 13px;
  font-weight: 800;
}

.hero-card-top strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.hero-card ol {
  padding: 0;
  list-style: none;
  display: grid;
}

.hero-card li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-card li span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #06131c;
  background: linear-gradient(135deg, var(--gold-500), #f1d18b);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.hero-card p {
  margin: 0;
  color: #d9e6e5;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 650;
}

.trust-strip {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-grid div {
  min-height: 142px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid dt {
  color: var(--navy-950);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
}

.trust-grid dd {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.intro {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.products h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.12;
  font-weight: 860;
}

.intro p:not(.section-label),
.section-heading > p,
.contact-panel p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .58fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.centered {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.centered .section-label {
  justify-content: center;
}

.services {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  min-height: 306px;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbfcfb);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--gold-500));
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 30px 0 0;
  color: var(--navy-950);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 840;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.accent-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(200, 150, 62, .18), transparent 38%),
    linear-gradient(180deg, var(--navy-850), var(--navy-950));
  border-color: rgba(7, 17, 29, .5);
}

.accent-card h3,
.accent-card p {
  color: #fff;
}

.accent-card p {
  color: #d7e2e2;
}

.work-types {
  background:
    linear-gradient(180deg, var(--soft), #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.case-grid article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.case-grid span {
  display: block;
  color: var(--gold-500);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.case-grid h3 {
  margin: 34px 0 0;
  color: var(--navy-950);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 850;
}

.case-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.sticky-heading p:not(.section-label) {
  margin-top: 20px;
}

.step-list {
  padding: 0;
  list-style: none;
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.step-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-strong);
}

.step-list span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #06131c;
  background: var(--gold-500);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.step-list h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 840;
}

.step-list p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.products {
  background: linear-gradient(180deg, #ffffff, #f8faf9);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding: 64px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(18, 134, 125, .34), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #0d3235);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(7, 17, 29, .2);
}

.product-panel .section-label,
.product-panel h2 {
  color: #fff;
}

.product-copy p {
  margin: 0;
  color: #d9e7e6;
  font-size: 19px;
  line-height: 1.75;
}

.product-copy ul {
  margin-top: 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.product-copy li {
  position: relative;
  padding: 13px 0 0 20px;
  color: #f7fbfb;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 15px;
  line-height: 1.55;
}

.product-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
}

.contact {
  background: #fff;
  padding-top: 42px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 52px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .08), transparent 40%),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact-panel p:not(.section-label) {
  max-width: 680px;
  margin-top: 18px;
}

.contact-button {
  min-width: 286px;
}

.footer {
  margin-top: 42px;
  background: var(--navy-950);
}

.footer-inner {
  min-height: 92px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #adbdc2;
  font-size: 13px;
  line-height: 1.5;
}

.footer-inner span:last-child {
  color: #84969d;
}

:focus-visible {
  outline: 3px solid rgba(200, 150, 62, .62);
  outline-offset: 4px;
}

.button:focus-visible,
.header-cta:focus-visible,
.nav a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible {
  outline-color: rgba(15, 118, 110, .48);
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 82px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 10px 0;
    gap: 10px 14px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .header-menu {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0 0 12px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(7, 17, 29, .14);
  }

  .header-menu[hidden] {
    display: none;
  }

  .nav {
    justify-self: stretch;
    display: grid;
    gap: 2px;
    font-size: 15px;
  }

  .nav a {
    min-height: 44px;
    padding: 14px 12px;
    border-bottom: 0;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--soft);
  }

  .header-cta {
    width: 100%;
    min-height: 46px;
    margin-top: 4px;
  }

  .hero-grid,
  .intro-grid,
  .split-heading,
  .process-grid,
  .product-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 78px 0 86px;
    gap: 46px;
  }

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

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

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  .container,
  .header-inner {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    width: min(100% - 28px, var(--max));
    min-height: 62px;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    font-size: 14px;
  }

  .section-pad {
    padding: 74px 0;
  }

  .hero-grid {
    padding: 58px 0 74px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-intro,
  .product-copy p,
  .intro p:not(.section-label) {
    font-size: 17px;
    line-height: 1.68;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-grid,
  .service-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:nth-child(2),
  .trust-grid div:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .intro h2,
  .section-heading h2,
  .products h2,
  .contact h2 {
    font-size: 32px;
    line-height: 1.18;
  }

  .service-card,
  .case-grid article {
    min-height: auto;
    padding: 24px;
  }

  .service-card::before {
    left: 24px;
    right: 24px;
  }

  .step-list li {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .product-panel,
  .contact-panel {
    padding: 30px 22px;
    gap: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

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

  .nav {
    font-size: 13px;
  }

  .menu-toggle {
    width: 42px;
    height: 40px;
  }
}

/* --- Restructure: doors, pricing, page heroes, forms --- */

.hero-grid--simple {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
}

.page-hero .hero-grid {
  min-height: auto;
  padding: 88px 0 80px;
}

.door-section {
  background: var(--paper);
}

.door-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.door-link {
  display: grid;
  gap: 10px;
  padding: 28px 26px;
  color: inherit;
  background: linear-gradient(180deg, #fff, #fbfcfb);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.door-link:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, .45);
  box-shadow: var(--shadow-soft);
}

.door-link strong {
  color: var(--navy-950);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 850;
}

.door-link span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.door-link em {
  color: var(--teal-700);
  font-style: normal;
  font-size: 14px;
  font-weight: 780;
}

.door-link.is-featured {
  border-color: rgba(15, 118, 110, .4);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(15, 118, 110, .06), transparent 40%),
    #fff;
}

.door-link.is-muted {
  opacity: .92;
}

.door-link.is-muted strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.door-soon {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
}

.audience-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}

.audience-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 650;
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  background: var(--teal-700);
  border-radius: 50%;
}

.pricing-section {
  background: linear-gradient(180deg, var(--soft), #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.pricing-card.is-featured {
  border-color: rgba(15, 118, 110, .45);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(15, 118, 110, .06), transparent 28%),
    #fff;
}

.pricing-badge {
  display: inline-flex;
  align-self: start;
  padding: 6px 10px;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.pricing-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 860;
}

.pricing-price {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.pricing-price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
}

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

.include-block {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.include-block h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 18px;
  font-weight: 840;
}

.include-block p,
.include-block ul {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.include-block ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.addon-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(200, 150, 62, .12), transparent 42%),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.addon-block h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 24px;
  font-weight: 850;
}

.addon-block p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
}

.faq-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

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

.faq-list h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 18px;
  font-weight: 840;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
}

.feature-rows {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.feature-rows li {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-strong);
}

.feature-rows strong {
  color: var(--navy-950);
  font-size: 18px;
  font-weight: 840;
}

.feature-rows p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.pilot-banner {
  margin-top: 36px;
  padding: 28px 30px;
  color: #eef7f6;
  background:
    radial-gradient(circle at 88% 16%, rgba(18, 134, 125, .34), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #0d3235);
  border-radius: 16px;
}

.pilot-banner h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
}

.pilot-banner p {
  margin: 0;
  color: #d9e7e6;
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

.portal-login {
  display: inline-flex;
  margin-top: 18px;
  color: #9beadf;
  font-size: 14px;
  font-weight: 780;
}

.portal-login:hover {
  color: #fff;
}

.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 780;
}

.lead-form textarea,
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 14px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
  resize: vertical;
}

.lead-form textarea {
  min-height: 96px;
}

.lead-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-nav a {
  color: #c5d4d8;
}

.footer-nav a:hover {
  color: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.support-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
}

@media (max-width: 1100px) {
  .door-grid,
  .pricing-grid,
  .include-grid {
    grid-template-columns: 1fr;
  }

  .addon-block,
  .feature-rows li,
  .contact-actions {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .nav a[aria-current="page"] {
    background: var(--soft);
    border-bottom-color: transparent;
  }
}

@media (max-width: 720px) {
  .audience-list {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .lead-form,
  .addon-block,
  .pilot-banner {
    padding: 24px;
  }

  .pricing-price {
    font-size: 28px;
  }

  .feature-rows li {
    gap: 10px;
  }

  .contact-actions .button,
  .addon-block .button,
  .form-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
