:root {
  --navy: #071d30;
  --navy-soft: #0d2a42;
  --teal: #12a6a1;
  --teal-dark: #0d817e;
  --gold: #f4b719;
  --cream: #f7f4ee;
  --paper: #fffdf9;
  --ink: #102436;
  --muted: #65727c;
  --line: #dbe1df;
}
.site-legal-links{display:flex;justify-content:center;gap:18px;flex-wrap:wrap;padding:18px 24px;color:inherit;font-size:.85rem}.site-legal-links a{color:inherit;text-decoration:underline;text-underline-offset:3px}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid rgba(7, 29, 48, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 168px;
  height: 52px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.84rem;
  font-weight: 700;
  color: #354959;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 185px;
  padding: 12px 18px;
  border-left: 3px solid var(--gold);
  background: var(--navy);
  color: white;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.header-cta span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c7d2d9;
}

.header-cta strong {
  margin-top: 2px;
  font-size: 0.94rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 21, 35, 0.96) 0%, rgba(5, 24, 39, 0.82) 37%, rgba(5, 24, 39, 0.18) 72%, rgba(5, 24, 39, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 21, 35, 0.52), transparent 38%);
}

.hero-content {
  padding-block: clamp(72px, 10vh, 118px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #4ed1cc;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6.7vw, 6.7rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: #d7e1e6;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-price {
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 14px;
  align-items: baseline;
  margin-top: 24px;
  padding: 13px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(7, 29, 48, .66);
  backdrop-filter: blur(9px);
}

.hero-price > span {
  color: #b8c9d2;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-price strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.hero-price small {
  grid-column: 1 / -1;
  color: #d7e1e6;
  font-size: .67rem;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd059;
}

.button-ghost {
  border-color: rgba(255,255,255,.55);
  background: rgba(5, 24, 39, 0.25);
  color: white;
  backdrop-filter: blur(7px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: white;
  color: var(--navy);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 50px;
  color: #c6d4db;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(18, 166, 161, 0.18);
}

.visual-note {
  position: absolute;
  right: 20px;
  bottom: 18px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-ribbon {
  background: var(--gold);
  color: var(--navy);
}

.ribbon-grid {
  min-height: 138px;
  display: grid;
  grid-template-columns: 1fr 1.25fr auto;
  gap: 48px;
  align-items: center;
}

.ribbon-grid > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ribbon-kicker {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ribbon-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
}

.ribbon-grid p {
  margin: 0;
  padding-left: 48px;
  border-left: 1px solid rgba(7,29,48,.28);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.ribbon-grid a {
  padding-block: 10px;
  border-bottom: 2px solid var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

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

.section-intro.two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.section-intro h2,
.experience-copy h2,
.stats-title h2,
.method-intro h2,
.about-main h2,
.faq-intro h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.6vw, 4.65rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-intro.two-columns > p {
  max-width: 760px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.service-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--paper);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 1;
  background: white;
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(7,29,48,.12);
}

.service-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card:nth-child(even) .service-number {
  border-color: var(--gold);
  color: #a87500;
}

.service-card h3 {
  min-height: 62px;
  margin: 52px 0 16px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.service-detail {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
}

.pricing-section {
  padding-block: clamp(92px, 10vw, 144px);
  background: var(--navy-soft);
  color: white;
}

.pricing-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
}

.pricing-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4.6vw, 4.65rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.pricing-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: #c2d0d8;
  font-size: 1rem;
  line-height: 1.75;
}

.pricing-limit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .06);
}

.pricing-limit strong {
  color: var(--gold);
  font-size: 1rem;
}

.pricing-limit span {
  color: #afc1cb;
  font-size: .77rem;
  line-height: 1.55;
}

.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-formula {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}

.price-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--navy);
}

.price-card.featured {
  background: var(--teal-dark);
}

.price-card > span {
  min-height: 38px;
  color: #c8d5dc;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.price-card strong {
  margin-top: 32px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}

.price-card strong small {
  font-family: Arial, Helvetica, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.price-card p {
  margin: auto 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #c3d2da;
  font-size: .76rem;
  line-height: 1.55;
}

.price-card.featured p {
  color: #dcf0ef;
}

.pricing-examples {
  padding: 24px 26px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pricing-examples > p {
  margin: 0 0 17px;
  color: #91a8b5;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-examples > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-examples span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.pricing-examples span:first-child {
  padding-left: 0;
  border-left: 0;
}

.pricing-examples small {
  color: #b7c7cf;
  font-size: .68rem;
  line-height: 1.4;
}

.pricing-examples strong {
  color: white;
  font-size: 1rem;
}

.pricing-cta {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
  background: #ffd059;
  transform: translateY(-2px);
}

.privacy-section {
  padding-block: clamp(92px, 10vw, 144px);
  background: var(--cream);
}

.privacy-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.privacy-heading h2,
.coverage-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.8vw, 4.85rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.045em;
}

.privacy-heading h2 em {
  color: var(--teal-dark);
  font-style: italic;
}

.privacy-intro {
  max-width: 760px;
  padding-left: 0;
  border-left: 0;
}

.privacy-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-intro strong {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-size: 1.04rem;
}

.privacy-comparison {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  align-items: center;
  margin-top: 64px;
}

.comparison-card {
  margin: 0;
  padding: 9px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(7,29,48,.09);
}

.comparison-card.featured {
  border-color: var(--teal);
  box-shadow: 0 22px 70px rgba(13,129,126,.16);
}

.comparison-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e7e5df;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 9px 12px;
  background: rgba(7,29,48,.88);
  color: white;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.featured .comparison-label {
  background: var(--teal-dark);
}

.comparison-card figcaption {
  padding: 16px 12px 10px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.comparison-arrow {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 7px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
}

.privacy-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: #d6ddda;
  border: 1px solid #d6ddda;
}

.privacy-benefits article {
  min-height: 170px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 28px;
  background: var(--paper);
}

.privacy-benefits article > span {
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.privacy-benefits h3 {
  margin: 3px 0 12px;
  font-size: 1rem;
}

.privacy-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

.privacy-note {
  margin-top: 25px;
  color: #7d898f;
  font-size: .67rem;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.experience-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--navy);
  color: white;
}

.experience-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.experience-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,29,48,.6), transparent 55%);
}

.experience-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.play-link {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: 44px;
  left: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.play-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.9rem;
  transition: transform 180ms ease;
}

.play-link:hover .play-icon,
.play-link:focus-visible .play-icon {
  transform: scale(1.08);
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 120px);
}

.experience-copy h2 {
  max-width: 640px;
}

.experience-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: #c6d4dc;
  line-height: 1.75;
}

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

.check-list li {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 14px 18px 32px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.partner-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.partner-proof img {
  width: 58px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
}

.partner-proof div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.partner-proof strong {
  font-size: 0.85rem;
}

.partner-proof span {
  color: #aebfc9;
  font-size: 0.75rem;
  line-height: 1.45;
}

.use-cases {
  background: var(--cream);
}

.section-intro.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered > p:last-child {
  max-width: 690px;
  margin: 26px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.use-case-card {
  position: relative;
  min-height: 370px;
  padding: 34px;
  overflow: hidden;
  background: var(--paper);
  border-top: 4px solid var(--teal);
}

.use-case-card:nth-child(2) {
  border-top-color: var(--gold);
}

.use-case-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(18,166,161,.18);
  border-radius: 50%;
}

.use-case-index {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #d9dfdd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.use-case-label {
  margin: 38px 0 36px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-case-card:nth-child(2) .use-case-label {
  color: #a87500;
}

.use-case-card h3 {
  max-width: 300px;
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.use-case-card > p:last-child {
  max-width: 310px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.72;
}

.matterport-stats {
  padding-block: 94px 46px;
  background: var(--teal-dark);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 30px;
  align-items: stretch;
}

.stats-title {
  padding-right: 5vw;
}

.stats-title h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.7rem);
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: rgba(7,29,48,.22);
  border: 1px solid rgba(255,255,255,.16);
}

.stat-card strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 5.4vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.stat-card p {
  margin: 16px 0 0;
  color: #d8eeee;
  font-size: 0.82rem;
  line-height: 1.55;
}

.stat-source {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  text-align: right;
}

.stat-source a {
  color: #c6e4e3;
  font-size: 0.66rem;
  font-style: italic;
}

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

.method-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 10vw;
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 130px;
}

.method-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 30px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.steps li:first-child {
  border-top: 3px solid var(--navy);
}

.steps > li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.steps h3 {
  margin: 1px 0 11px;
  font-size: 1.18rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.coverage-section {
  padding-block: 104px 74px;
  overflow: hidden;
  background: var(--navy-soft);
  color: white;
}

.coverage-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.coverage-heading h2 {
  max-width: 760px;
}

.coverage-heading > p {
  max-width: 760px;
  margin: 0 0 8px;
  color: #c3d1d9;
  font-size: 1rem;
  line-height: 1.75;
}

.coverage-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  padding-top: 6px;
}

.coverage-route::before {
  content: "";
  position: absolute;
  top: 51px;
  right: 6%;
  left: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal) 45%, var(--gold));
}

.route-stop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.route-order {
  color: #8095a4;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.route-dot {
  width: 18px;
  height: 18px;
  margin: 23px 0 19px;
  border: 5px solid var(--navy-soft);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

.route-stop:nth-child(even) .route-dot {
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
}

.route-stop strong {
  max-width: 110px;
  color: white;
  font-size: .82rem;
  line-height: 1.35;
}

.coverage-footer {
  display: grid;
  grid-template-columns: .7fr 1.35fr auto;
  gap: 42px;
  align-items: center;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.17);
}

.coverage-footer > strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.coverage-footer p {
  margin: 0;
  color: #aebfca;
  font-size: .76rem;
  line-height: 1.6;
}

.coverage-footer a {
  padding-bottom: 7px;
  border-bottom: 2px solid var(--teal);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  background: var(--navy);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 150px 1fr .85fr;
  gap: 5vw;
  align-items: center;
}

.about-mark {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-style: italic;
}

.about-main h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.about-copy {
  padding-left: 42px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.about-copy p {
  margin: 0;
  color: #c7d4dc;
  line-height: 1.78;
}

.about-copy p + p {
  margin-top: 20px;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 10vw;
}

.faq-intro > p:last-child {
  max-width: 420px;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  border-top: 3px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid #cbd3d1;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--teal-dark);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 44px 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.contact-section {
  padding-block: 98px;
  background: var(--teal-dark);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  align-items: center;
}

.contact-section h2 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.contact-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #d7efee;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.22);
}

.contact-actions a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: background 180ms ease, padding-left 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  padding-left: 40px;
  background: rgba(7,29,48,.2);
}

.contact-actions span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 400;
}

footer {
  padding-block: 36px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-grid > img {
  width: 155px;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 170px 1fr auto;
    gap: 18px;
  }

  .desktop-nav {
    gap: 16px;
    font-size: 0.74rem;
  }

  .header-cta {
    min-width: 160px;
  }

  .hero h1 {
    max-width: 650px;
  }

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

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

  .experience-section {
    grid-template-columns: 1fr;
  }

  .experience-visual {
    min-height: 630px;
  }

  .experience-copy {
    padding: 88px 7vw;
  }

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

  .stats-title {
    grid-column: 1 / -1;
    max-width: 760px;
    padding: 0 0 20px;
  }

  .about-grid {
    grid-template-columns: 120px 1fr;
  }

  .about-copy {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 36px, 680px);
  }

  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .brand img {
    width: 142px;
    height: 46px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    min-width: 0;
    padding: 10px 13px;
  }

  .header-cta span {
    display: none;
  }

  .header-cta strong {
    font-size: 0.8rem;
  }

  .hero {
    min-height: calc(100svh - 72px);
    align-items: flex-end;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(4,21,35,.98) 0%, rgba(4,21,35,.87) 53%, rgba(4,21,35,.17) 100%);
  }

  .hero-content {
    padding-top: 210px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 5.3rem);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1.02rem;
  }

  .hero-copy {
    font-size: 0.88rem;
  }

  .hero-proof {
    gap: 12px 20px;
    margin-top: 34px;
    font-size: 0.68rem;
  }

  .visual-note {
    display: none;
  }

  .ribbon-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 34px;
  }

  .ribbon-grid p {
    padding: 16px 0;
    border-top: 1px solid rgba(7,29,48,.22);
    border-left: 0;
    border-bottom: 1px solid rgba(7,29,48,.22);
  }

  .ribbon-grid a {
    width: fit-content;
  }

  .section-intro.two-columns,
  .pricing-layout,
  .privacy-heading,
  .use-case-grid,
  .method-layout,
  .faq-grid,
  .contact-grid,
  .coverage-heading,
  .coverage-footer {
    grid-template-columns: 1fr;
  }

  .section-intro.two-columns {
    gap: 28px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3 {
    min-height: 0;
    margin-top: 32px;
  }

  .service-detail {
    margin-top: 32px;
  }

  .pricing-layout {
    gap: 52px;
  }

  .pricing-intro {
    max-width: 680px;
  }

  .privacy-heading {
    gap: 34px;
  }

  .privacy-intro {
    padding: 28px 0 0;
    border-top: 3px solid var(--gold);
    border-left: 0;
  }

  .privacy-comparison {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison-arrow {
    margin-block: -5px;
    transform: rotate(90deg);
  }

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

  .experience-visual {
    min-height: 520px;
  }

  .experience-copy {
    padding: 72px 20px;
  }

  .use-case-grid {
    gap: 14px;
  }

  .use-case-card {
    min-height: 330px;
  }

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

  .stats-title {
    grid-column: auto;
  }

  .stat-source {
    text-align: left;
  }

  .method-layout,
  .faq-grid,
  .contact-grid {
    gap: 64px;
  }

  .method-intro {
    position: static;
  }

  .coverage-heading {
    gap: 30px;
  }

  .coverage-route {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 52px;
  }

  .coverage-route::before {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 17px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), var(--teal) 45%, var(--gold));
  }

  .route-stop {
    min-height: 58px;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: start;
    text-align: left;
  }

  .route-order {
    grid-column: 2;
  }

  .route-dot {
    position: absolute;
    top: 13px;
    left: 9px;
    margin: 0;
  }

  .route-stop strong {
    grid-column: 2;
    max-width: none;
    margin-top: 6px;
    font-size: 1rem;
  }

  .coverage-footer {
    gap: 22px;
  }

  .coverage-footer a {
    width: fit-content;
  }

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

  .about-mark {
    width: 90px;
    height: 90px;
    font-size: 3.7rem;
  }

  .about-copy {
    grid-column: auto;
    padding: 34px 0 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }

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

  .footer-grid > div {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: calc(100% - 28px);
  }

  .hero-content {
    padding-top: 170px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-price {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-price small {
    grid-column: auto;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-proof {
    display: grid;
  }

  .section {
    padding-block: 78px;
  }

  .pricing-formula,
  .pricing-examples > div {
    grid-template-columns: 1fr;
  }

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

  .pricing-examples span,
  .pricing-examples span:first-child {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .pricing-examples span:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .section-intro h2,
  .pricing-intro h2,
  .privacy-heading h2,
  .experience-copy h2,
  .stats-title h2,
  .method-intro h2,
  .about-main h2,
  .faq-intro h2,
  .contact-section h2,
  .coverage-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .experience-visual {
    min-height: 410px;
  }

  .play-link {
    right: 20px;
    bottom: 24px;
    left: 20px;
  }

  .experience-copy {
    padding-inline: 14px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .partner-proof {
    align-items: flex-start;
  }

  .privacy-benefits article {
    grid-template-columns: 42px 1fr;
    padding: 24px 20px;
  }

  .steps li {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .contact-actions a {
    padding-inline: 12px;
  }

  .contact-actions a:hover,
  .contact-actions a:focus-visible {
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
