:root {
  --ink: #071a24;
  --ink-2: #12313c;
  --paper: #f4efe5;
  --paper-2: #fffaf1;
  --white: #ffffff;
  --lime: #d7ff4f;
  --sea: #75c8b7;
  --blue: #65a9ff;
  --coral: #ff735d;
  --gold: #e8bf62;
  --line: rgba(7, 26, 36, .18);
  --shadow: 0 30px 90px rgba(7, 26, 36, .16);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }

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

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.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(rgba(7, 26, 36, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 36, .05) 1px, transparent 1px);
  background-size: 42px 42px;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.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: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: .8rem 1.1rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(7, 26, 36, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 950;
  transform: rotate(-7deg);
}

.brand strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: .12em;
}

.brand small {
  display: block;
  margin-top: .35rem;
  color: rgba(255, 255, 255, .66);
  font-size: .62rem;
  letter-spacing: .14em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a:hover { color: var(--lime); }

.main-nav .nav-cta {
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  border-radius: 12px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 8rem) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 22% 10%, rgba(117, 200, 183, .22), transparent 30%),
    linear-gradient(135deg, #071a24 0%, #0a2733 62%, #0d3e49 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
}

.hero::before { width: 620px; height: 620px; right: -260px; top: -300px; }
.hero::after { width: 420px; height: 420px; left: -250px; bottom: -230px; }

.hero-text, .hero-visual { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  background: var(--coral);
  border-radius: 4px;
}

.hero .eyebrow { color: var(--lime); }
.hero .eyebrow span { background: var(--lime); }

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
}

.hero h1 em {
  color: var(--lime);
  font-weight: 500;
}

.hero-lead {
  max-width: 680px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .88rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: var(--white); }
.button-secondary { color: var(--white); border-color: rgba(255, 255, 255, .36); background: rgba(255, 255, 255, .06); }
.button-secondary:hover { border-color: var(--white); background: rgba(255, 255, 255, .12); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--lime); }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .55); }
.button-outline-light:hover { color: var(--ink); background: var(--white); }

.hero-points {
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}

.hero-points li {
  padding-top: .9rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.hero-points strong, .hero-points span { display: block; }
.hero-points strong { color: var(--lime); font-size: 1.15rem; }
.hero-points span { margin-top: .3rem; color: rgba(255, 255, 255, .62); font-size: .73rem; line-height: 1.35; }

.hero-visual {
  justify-self: end;
  width: min(100%, 550px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 46% 46% 24px 24px;
  box-shadow: 0 44px 100px rgba(0, 0, 0, .34);
  filter: saturate(.84) contrast(1.04);
}

.hero-label {
  position: absolute;
  z-index: 2;
  padding: .65rem .85rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.label-top { top: 12%; left: -6%; transform: rotate(-5deg); }
.label-bottom { right: -5%; bottom: 14%; transform: rotate(4deg); }
.label-bottom span, .label-bottom strong { display: block; }

.route-stamp {
  position: absolute;
  right: 4%;
  top: -2.6rem;
  color: rgba(255, 255, 255, .55);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .24em;
}

.signal-strip {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  padding: 1rem max(24px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background: var(--lime);
  overflow: hidden;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.signal-strip span { color: var(--coral); }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-heading { margin-bottom: 3rem; }
.section h2 { font-size: clamp(2.55rem, 5.2vw, 5.2rem); }

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  gap: 3rem;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 .5rem;
  color: rgba(7, 26, 36, .68);
  font-size: 1.05rem;
}

.center-heading {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.center-heading .eyebrow { justify-content: center; }
.center-heading > p:last-child { max-width: 660px; margin: 1.25rem auto 0; color: rgba(7, 26, 36, .68); }

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

.audience-card {
  position: relative;
  min-height: 340px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.audience-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(7, 26, 36, .12); }
.audience-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -45px; bottom: -45px; border: 26px solid rgba(7, 26, 36, .08); border-radius: 50%; }
.accent-lime { background: var(--lime); }
.accent-coral { background: #ffb0a1; }
.accent-blue { background: #b8d7ff; }
.accent-cream { background: var(--paper-2); }
.accent-sea { background: #b7e3da; }
.accent-gold { background: #f1d797; }
.card-no { display: block; margin-bottom: 3rem; font-size: .78rem; font-weight: 950; letter-spacing: .16em; }
.audience-card h3 { margin: 0; font-family: Georgia, serif; font-size: 1.75rem; line-height: 1.05; }
.audience-card p { color: rgba(7, 26, 36, .75); font-size: .94rem; }
.audience-card ul { margin: 1.2rem 0 0; padding-left: 1.1rem; font-size: .86rem; font-weight: 720; }

.story-panel,
.process,
.price-panel {
  width: min(calc(100% - 40px), 1360px);
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.story-panel {
  padding-right: clamp(1.5rem, 5vw, 5rem);
  color: var(--white);
  background: var(--ink);
  border-radius: 34px;
  overflow: hidden;
}

.story-image { position: relative; height: 100%; min-height: 720px; }
.story-image img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; object-position: center; }
.image-caption { position: absolute; left: 1.2rem; bottom: 1.2rem; max-width: calc(100% - 2.4rem); padding: .7rem .9rem; color: var(--ink); background: var(--lime); font-size: .77rem; font-weight: 850; }
.story-copy { padding: 3rem 0; }
.story-copy h2 { max-width: 700px; }
.story-copy > p:not(.eyebrow) { max-width: 680px; color: rgba(255, 255, 255, .72); font-size: 1.04rem; }

.feature-list { margin: 2rem 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .12); }
.feature-list div { padding: 1.2rem; background: var(--ink); }
.feature-list strong, .feature-list span { display: block; }
.feature-list strong { color: var(--lime); }
.feature-list span { margin-top: .3rem; color: rgba(255, 255, 255, .63); font-size: .84rem; }
.text-link { display: inline-flex; gap: .6rem; align-items: center; color: var(--lime); font-weight: 850; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.techniques { padding-top: clamp(6rem, 10vw, 10rem); }
.tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.tech-grid article { min-height: 280px; padding: 1.5rem; border-right: 1px solid var(--line); background: rgba(255, 250, 241, .58); }
.tech-grid article:last-child { border-right: 0; }
.tech-icon { display: grid; place-items: center; width: 46px; aspect-ratio: 1; margin-bottom: 4rem; border: 1px solid var(--ink); border-radius: 50%; font-family: Georgia, serif; font-size: 1.25rem; }
.tech-grid h3 { margin: 0; font-family: Georgia, serif; font-size: 1.35rem; }
.tech-grid p { margin-bottom: 0; color: rgba(7, 26, 36, .68); font-size: .88rem; }

.process { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); }
.process-copy h2 { max-width: 700px; }
.process-copy > p:not(.eyebrow) { max-width: 660px; color: rgba(7, 26, 36, .67); font-size: 1.02rem; }
.process-steps { margin-top: 2.2rem; border-top: 1px solid var(--line); }
.process-steps article { display: grid; grid-template-columns: 64px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.process-steps article > span { color: var(--coral); font-weight: 950; letter-spacing: .12em; }
.process-steps h3 { margin: 0; font-size: 1.05rem; }
.process-steps p { margin: .25rem 0 0; color: rgba(7, 26, 36, .65); font-size: .9rem; }
.process-media { position: relative; }
.process-media img { width: 100%; max-height: 760px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.media-note { position: absolute; right: -1rem; bottom: 2rem; padding: 1rem 1.2rem; color: var(--ink); background: var(--lime); box-shadow: 7px 7px 0 var(--ink); }
.media-note strong, .media-note span { display: block; }
.media-note span { margin-top: .25rem; font-size: .76rem; }

.coverage {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}
.coverage .split-heading > p { color: rgba(255, 255, 255, .68); }
.coverage .eyebrow { color: var(--lime); }
.coverage .eyebrow span { background: var(--lime); }
.coverage-layout { display: grid; grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 5rem); }
.coverage-map { position: relative; min-height: 520px; background: linear-gradient(150deg, #0d3743, #09202a); border: 1px solid rgba(255, 255, 255, .13); border-radius: 26px; overflow: hidden; }
.coverage-map::before, .coverage-map::after { content: ""; position: absolute; inset: 14% 8%; border: 1px solid rgba(117, 200, 183, .23); border-radius: 49% 44% 53% 46%; transform: rotate(-8deg); }
.coverage-map::after { inset: 23% 14%; border-color: rgba(215, 255, 79, .16); transform: rotate(10deg); }
.map-line { position: absolute; left: 13%; right: 13%; top: 56%; height: 2px; background: linear-gradient(90deg, var(--sea), var(--lime)); transform: rotate(-7deg); }
.map-dot { position: absolute; z-index: 2; display: flex; align-items: center; gap: .5rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.map-dot i { width: 13px; height: 13px; background: var(--lime); border: 3px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 2px var(--lime); }
.dot-1 { left: 13%; top: 55%; }
.dot-2 { left: 39%; top: 48%; }
.dot-3 { left: 51%; top: 65%; }
.dot-4 { right: 20%; top: 42%; }
.dot-5 { right: 8%; top: 69%; }
.map-title { position: absolute; left: 8%; top: 8%; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: .86; color: rgba(255, 255, 255, .1); }
.coverage-cards { display: grid; gap: 1px; background: rgba(255, 255, 255, .15); border: 1px solid rgba(255, 255, 255, .15); }
.coverage-cards article { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 1.5rem; background: var(--ink); }
.coverage-cards article > span { color: var(--lime); font-weight: 950; }
.coverage-cards h3 { margin: 0; font-family: Georgia, serif; font-size: 1.35rem; }
.coverage-cards p { margin: .4rem 0 0; color: rgba(255, 255, 255, .65); font-size: .9rem; }
.coverage-cards strong { color: var(--white); }

.price-panel { padding-left: clamp(1.5rem, 5vw, 5rem); background: #b7e3da; border-radius: 34px; overflow: hidden; }
.price-image { order: 2; height: 100%; min-height: 680px; }
.price-image img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; object-position: center; }
.price-copy { padding: 3rem 0; }
.price-copy > p:not(.eyebrow) { max-width: 620px; color: rgba(7, 26, 36, .7); }
.check-list { margin: 1.7rem 0 2rem; padding: 0; display: grid; gap: .7rem; list-style: none; }
.check-list li { position: relative; padding-left: 1.8rem; font-weight: 720; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #0b6d5d; font-weight: 950; }

.faq { max-width: 980px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.4rem 0; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: clamp(1.2rem, 2vw, 1.65rem); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { flex: 0 0 auto; display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); background: var(--lime); border-radius: 50%; font-family: Inter, sans-serif; font-weight: 900; }
.faq details p { max-width: 790px; margin: 0; padding: 0 0 1.5rem; color: rgba(7, 26, 36, .68); }

.final-cta {
  width: min(calc(100% - 40px), 1360px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem);
  color: var(--white);
  background: var(--coral);
  border-radius: 34px;
}
.final-cta .eyebrow span { background: var(--ink); }
.final-cta h2 { max-width: 830px; font-size: clamp(3rem, 6vw, 6rem); }
.cta-copy > p:not(.eyebrow):not(.cta-note) { max-width: 700px; color: rgba(255, 255, 255, .88); }
.cta-note { max-width: 650px; margin-top: 1rem; font-size: .8rem; opacity: .76; }
.cta-card { padding: 1.6rem; color: var(--white); background: var(--ink); border-radius: 20px; box-shadow: 12px 12px 0 rgba(255, 255, 255, .25); }
.cta-card > span { color: var(--lime); font-size: .73rem; font-weight: 950; letter-spacing: .15em; }
.cta-card ol { margin: 1.2rem 0; padding-left: 1.3rem; display: grid; gap: .55rem; color: rgba(255, 255, 255, .75); }
.cta-card a { display: inline-flex; gap: .5rem; color: var(--lime); font-weight: 850; text-decoration: none; }

.site-footer {
  margin-top: clamp(5rem, 9vw, 9rem);
  padding: 4.5rem max(24px, calc((100vw - var(--max)) / 2)) 2rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 3rem;
  color: var(--white);
  background: var(--ink);
}
.footer-brand p { max-width: 440px; color: rgba(255, 255, 255, .6); }
.site-footer h2 { margin: 0 0 1rem; color: var(--lime); font-family: Inter, sans-serif; font-size: .75rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.site-footer > div:not(.footer-brand):not(.footer-bottom) a { display: block; margin: .45rem 0; color: rgba(255, 255, 255, .82); text-decoration: none; }
.site-footer > div:not(.footer-brand):not(.footer-bottom) a:hover { color: var(--lime); }
.site-footer > div:not(.footer-brand):not(.footer-bottom) p { color: rgba(255, 255, 255, .55); font-size: .86rem; }
.brand-footer { margin-bottom: 1.2rem; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .5); font-size: .78rem; }

.floating-contact {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .82fr; gap: 2.5rem; }
  .hero h1 { font-size: clamp(3.4rem, 7.7vw, 5.8rem); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid article { border-bottom: 1px solid var(--line); }
  .tech-grid article:nth-child(2n) { border-right: 0; }
  .tech-grid article:last-child { grid-column: 1 / -1; }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-map { min-height: 440px; }
}

@media (max-width: 820px) {
  .nav-shell { width: min(calc(100% - 28px), var(--max)); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: .8rem;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .85rem; }
  .main-nav .nav-cta { margin-top: .5rem; text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 4.5rem; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; justify-self: center; width: min(90%, 540px); }
  .hero-points { grid-template-columns: 1fr; }
  .signal-strip { justify-content: flex-start; overflow-x: auto; }
  .split-heading { grid-template-columns: 1fr; gap: 1.3rem; }
  .story-panel, .process, .price-panel { grid-template-columns: 1fr; gap: 0; }
  .story-panel { padding-right: 0; }
  .story-copy { padding: 3rem 1.5rem; }
  .story-image, .story-image img { min-height: 540px; }
  .process { gap: 3rem; }
  .process-media { width: min(100%, 620px); margin: 0 auto; }
  .price-panel { padding-left: 0; }
  .price-copy { padding: 3rem 1.5rem; }
  .price-image { order: 0; min-height: 520px; }
  .price-image img { min-height: 520px; }
  .final-cta { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  html { scroll-padding-top: 74px; }
  .nav-shell { min-height: 70px; }
  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: .53rem; }
  .brand-mark { width: 38px; }
  .hero { padding-right: 20px; padding-left: 20px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.7rem); }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-visual { width: 94%; }
  .label-top { left: -2%; }
  .label-bottom { right: -2%; }
  .section { width: min(calc(100% - 28px), var(--max)); padding: 5rem 0; }
  .section h2 { font-size: clamp(2.45rem, 13vw, 4.2rem); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 300px; }
  .story-panel, .price-panel, .final-cta { width: calc(100% - 20px); border-radius: 24px; }
  .story-image, .story-image img { min-height: 440px; }
  .feature-list { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-grid article, .tech-grid article:nth-child(2n) { border-right: 0; }
  .tech-grid article:last-child { grid-column: auto; }
  .tech-icon { margin-bottom: 2rem; }
  .process-steps article { grid-template-columns: 46px 1fr; }
  .media-note { right: .6rem; bottom: .8rem; }
  .coverage { width: 100%; padding-right: 14px; padding-left: 14px; }
  .coverage-map { min-height: 360px; }
  .map-dot b { display: none; }
  .coverage-cards article { grid-template-columns: 40px 1fr; padding: 1.15rem; }
  .price-image, .price-image img { min-height: 440px; }
  .final-cta { padding: 2.3rem 1.2rem; }
  .final-cta h2 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .site-footer { grid-template-columns: 1fr; padding: 3.5rem 20px 5.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { right: .7rem; bottom: .7rem; padding: .7rem .85rem; }
}

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