:root {
  --navy: #07111f;
  --navy-2: #0d1f35;
  --navy-3: #132944;
  --line: #223956;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --sky: #8ea2bb;
  --green: #f59e0b;
  --paper: #ffffff;
  --paper-soft: #f4f7fb;
  --ink: #111827;
  --body: #3d4a5c;
  --muted: #8093ad;
  --rule: #d9e2ec;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 640ms ease,
      transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  background: var(--navy);
  color: #f7fbff;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(54px, 7.4vw, 100px);
}

h2 {
  font-size: clamp(38px, 5.2vw, 66px);
}

h3 {
  font-size: clamp(25px, 3vw, 34px);
}

p {
  color: inherit;
}

.container,
.container-wide {
  position: relative;
  z-index: 1;
  width: min(100% - 44px, 1040px);
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 44px, 1220px);
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.9);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo,
.footer strong {
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 31px;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 28px;
  background: url("/assets/brand/siteplans-ai.svg") center / contain no-repeat;
}

.logo span,
.footer strong span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-cta,
.btn-primary,
.checker-row button,
.email-row button,
.pricing-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #111;
  font: 800 14px/1 "DM Sans", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.nav-cta:hover,
.btn-primary:hover,
.checker-row button:hover,
.email-row button:hover,
.pricing-grid a:hover {
  background: var(--accent-2);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.22);
  transform: translateY(-1px);
}

.blueprint-surface {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(78, 163, 255, 0.2), transparent 38%),
    radial-gradient(ellipse at 78% 8%, rgba(245, 158, 11, 0.14), transparent 34%),
    var(--navy);
}

.blueprint-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 163, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 163, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero {
  min-height: auto;
  padding: clamp(58px, 7vw, 96px) 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 36px);
  align-items: start;
}

.hero-copy {
  max-width: 1140px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(13, 31, 53, 0.96), rgba(7, 17, 31, 0.9)),
    rgba(13, 31, 53, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.hero-copy h1,
.hero-sub,
.checker-card,
.coverage-result {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy h1 {
  max-width: 1040px;
}

.hero-copy .hero-sub {
  max-width: 840px;
}

.hero-copy .checker-card {
  max-width: 820px;
}

.hero-eyebrow,
.section-label,
.plan-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-eyebrow {
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.08);
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-sub {
  max-width: 660px;
  margin: 24px 0 30px;
  color: #aab9cc;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 300;
}

.checker-card {
  max-width: 700px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(13, 31, 53, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.checker-card label,
.email-start label {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-weight: 800;
}

.checker-row,
.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.checker-row input,
.email-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  background: #0b1a2d;
  color: #fff;
  font: inherit;
}

.checker-row input:focus,
.email-row input:focus {
  border-color: var(--accent);
}

.checker-row input::placeholder,
.email-row input::placeholder {
  color: #71859f;
}

.microcopy {
  margin-top: 10px;
  color: #8ea2bb;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: #aab9cc;
  font-size: 14px;
}

.hero-links a {
  color: #fff;
  font-weight: 800;
}

.coverage-result {
  max-width: 700px;
  margin-top: 16px;
  padding: 19px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  background: rgba(13, 31, 53, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.coverage-result.strong {
  border-left-color: var(--green);
}

.coverage-result.basic {
  border-left-color: var(--sky);
}

.coverage-result h3 {
  margin-bottom: 8px;
}

.coverage-result p {
  color: #aab9cc;
}

.coverage-area-line {
  margin-top: 10px;
  color: #dbe7f5 !important;
  font-size: 14px;
}

.coverage-area-line strong {
  color: #fff;
}

.coverage-area-line a {
  color: var(--accent);
  font-weight: 900;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.email-start {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.plan-preview,
.hero-start-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-start-card {
  width: min(100%, 940px);
  max-width: 940px;
  justify-self: center;
  padding: 18px;
  transform: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(13, 31, 53, 0.92);
}

.start-card-inner {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #f7fbff;
  color: var(--ink);
  transform: none;
  text-align: left;
}

.hero-start-card .start-card-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 14px 26px;
  align-items: center;
}

.hero-start-card .card-kicker,
.hero-start-card h2,
.hero-start-card .card-input,
.hero-start-card .btn-primary {
  grid-column: 1;
}

.hero-start-card .advisor-note,
.hero-start-card .start-checks {
  grid-column: 2;
}

.hero-start-card .start-checks {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.start-card-inner h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #b56c06;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-input {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 12px 0 10px;
  padding: 0 16px;
  border: 1px solid #d7e1ec;
  border-radius: 12px;
  background: #fff;
  color: #718096;
  box-shadow: inset 0 1px 0 rgba(17, 24, 39, 0.04);
}

.advisor-note {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 0;
  padding: 14px;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 12px;
  background: #fff8e8;
}

.advisor-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--accent);
  color: #111;
  font-family: "DM Mono", Consolas, monospace;
  font-weight: 900;
}

.advisor-note p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.35;
}

.start-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #d9e2ec;
  color: var(--body);
  font-size: 14px;
  list-style: none;
}

.start-checks li::before {
  content: "+";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.preview-topbar {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
  color: #aab9cc;
}

.preview-sheet {
  position: relative;
  min-height: 560px;
  margin: 18px;
  border: 2px solid #e8edf4;
  background:
    linear-gradient(90deg, rgba(20, 49, 82, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(20, 49, 82, 0.045) 1px, transparent 1px),
    #fbfbf8;
  background-size: 28px 28px;
  color: var(--ink);
}

.north-arrow {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 54px;
  height: 72px;
  display: grid;
  place-items: start center;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 58px solid var(--ink);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.preview-parcel {
  position: absolute;
  inset: 82px 54px 116px 72px;
  transform: rotate(-7deg);
  border: 3px solid #111;
  clip-path: polygon(8% 18%, 78% 3%, 95% 42%, 72% 96%, 12% 84%);
}

.pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fbfbf8;
}

.p1 { left: 7%; top: 17%; }
.p2 { right: 20%; top: 2%; }
.p3 { right: 4%; top: 42%; }
.p4 { left: 11%; bottom: 15%; }

.line-label {
  position: absolute;
  padding: 3px 6px;
  background: #fbfbf8;
  color: #111;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 10px;
  white-space: nowrap;
}

.label-one {
  left: 35%;
  top: 3%;
}

.label-two {
  right: -2%;
  top: 48%;
  transform: rotate(90deg);
}

.setback {
  position: absolute;
  border-color: #c64747;
  border-style: dashed;
}

.sb1 {
  left: 17%;
  right: 16%;
  bottom: 18%;
  border-top-width: 2px;
}

.sb2 {
  top: 18%;
  bottom: 18%;
  right: 18%;
  border-left-width: 2px;
}

.home-footprint,
.proposal {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 10px;
  line-height: 1.2;
}

.home-footprint {
  left: 34%;
  top: 34%;
  width: 104px;
  height: 78px;
  border: 2px solid #0d65b6;
  background: rgba(78, 163, 255, 0.12);
}

.proposal {
  left: 42%;
  top: 58%;
  width: 86px;
  height: 50px;
  border: 2px solid var(--accent);
  background: rgba(245, 158, 11, 0.14);
}

.preview-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  border-top: 2px solid #111;
  background: #fff;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 11px;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b1a2d;
}

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

.proof-grid div {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

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

.proof-grid strong {
  display: block;
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.proof-grid span {
  color: #8ea2bb;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
}

.white-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 39, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 40px 40px;
}

.content-section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(38px, 6vw, 80px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(340px, 1.05fr) minmax(0, 0.95fr);
}

.white-section .section-label {
  color: #c07909;
}

.lead {
  margin: 12px 0 16px;
  color: var(--body);
  font-size: clamp(18px, 2vw, 21px);
}

.white-section p {
  color: var(--body);
}

.section-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.coverage-section .container-wide {
  width: min(100% - 44px, 1180px);
}

.coverage-map-wide {
  position: relative;
  display: grid;
  justify-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--rule);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 35%, rgba(245, 158, 11, 0.16), transparent 28%),
    linear-gradient(135deg, #edf4fb, #fff);
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.08);
}

.coverage-map-wide svg,
.coverage-svg {
  display: block;
  width: min(100%, 1040px);
  height: clamp(310px, 48vw, 560px);
  margin: 0 auto;
  border: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

.coverage-map-note {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.08);
}

.us-base {
  fill: #f8fbff;
  stroke: #93a9bf;
  stroke-width: 4;
}

.state-glow {
  fill: rgba(245, 158, 11, 0.16);
  stroke: var(--accent);
  stroke-width: 5;
  filter: drop-shadow(0 0 9px rgba(245, 158, 11, 0.65));
  animation: statePulse 2.4s ease-in-out infinite;
}

.city-dots circle {
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.9));
  animation: dotPulse 1.8s ease-in-out infinite;
}

.city-dots circle:nth-child(2n) {
  animation-delay: 0.35s;
}

.city-dots circle:nth-child(3n) {
  animation-delay: 0.7s;
}

@keyframes statePulse {
  0%, 100% { stroke-opacity: 0.76; }
  50% { stroke-opacity: 1; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; }
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.county-list a {
  padding: 9px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: #fff;
  color: var(--body);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.county-list a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.coverage-panel,
.comparison-card {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.08);
}

.coverage-panel {
  padding: 22px;
}

.coverage-map {
  position: relative;
  min-height: 270px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 70%, rgba(245, 158, 11, 0.3), transparent 8%),
    radial-gradient(circle at 45% 69%, rgba(245, 158, 11, 0.25), transparent 7%),
    radial-gradient(circle at 78% 73%, rgba(245, 158, 11, 0.28), transparent 9%),
    linear-gradient(135deg, #e9f0f7, #f9fbfd);
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 48px 22px 42px;
  border: 2px solid #b6c6d7;
  clip-path: polygon(8% 38%, 19% 18%, 42% 15%, 53% 33%, 68% 28%, 88% 41%, 78% 68%, 58% 78%, 43% 65%, 24% 76%, 13% 62%);
  background: rgba(255, 255, 255, 0.55);
}

.bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.16);
}

.bubble.ca { left: 16%; top: 48%; }
.bubble.tx { left: 45%; top: 61%; }
.bubble.fl { right: 18%; bottom: 18%; }
.bubble.ga { right: 28%; bottom: 31%; }

.data-strip-section {
  padding: clamp(58px, 6vw, 84px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
  text-align: center;
}

.data-strip-section .container {
  max-width: 930px;
}

.data-strip-section p {
  max-width: 760px;
  margin: 12px auto 24px;
  font-size: 18px;
}

.data-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.data-pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
}

.data-icon,
.help-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.data-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.16);
}

.data-icon::before,
.data-icon::after,
.help-icon::before,
.help-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.data-icon.shield::before {
  width: 11px;
  height: 13px;
  border: 2px solid var(--accent);
  border-top-width: 3px;
  border-radius: 7px 7px 9px 9px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.data-icon.pin::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.data-icon.check::before {
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) translate(1px, -1px);
}

.data-automation-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(245, 158, 11, 0.13), transparent 28%),
    linear-gradient(180deg, #f8f5ee 0%, #fff 46%, #f8f5ee 100%);
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.data-layout + .data-layout {
  margin-top: clamp(54px, 7vw, 86px);
}

.data-layout-second {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.included-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 16%, rgba(245, 158, 11, 0.14), transparent 32%),
    #fff;
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.1);
}

.included-card.soft-card {
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 158, 11, 0.14), transparent 32%),
    #fff;
}

.included-card h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.included-card li {
  position: relative;
  padding-left: 36px;
  color: var(--body);
  font-size: 17px;
  font-weight: 700;
}

.included-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.16);
}

.included-card li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #b56c06;
  border-bottom: 2px solid #b56c06;
  transform: rotate(-45deg);
}
.bubble.wa { left: 19%; top: 20%; }

.legend {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
  color: var(--body);
  font-weight: 700;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.dot.strong { background: var(--green); }
.dot.basic { background: var(--sky); }
.dot.manual { background: var(--accent); }

.blueprint-band,
.pricing-section {
  padding: clamp(76px, 8vw, 116px) 0;
  background: var(--navy);
}

.steps,
.workflow-grid,
.project-grid,
.pricing-grid,
.tutorial-grid,
.capability-grid,
.trust-grid {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

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

.steps article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--navy-2);
}

.steps article span {
  display: block;
  margin-bottom: 16px;
  color: rgba(245, 158, 11, 0.28);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 70px;
  line-height: 0.85;
}

.steps p {
  color: #8ea2bb;
  font-size: 15px;
}

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

.project-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.workflow-grid article,
.project-grid article,
.tutorial-grid a,
.capability-grid article,
.trust-grid article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 42px rgba(17, 24, 39, 0.06);
}

.project-grid article {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-left-width: 1px;
  border-color: rgba(17, 24, 39, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.9)),
    var(--project-image) center / cover no-repeat;
  color: #fff;
}

.project-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(245, 158, 11, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.02), rgba(7, 17, 31, 0.9));
  pointer-events: none;
}

.project-grid article > * {
  position: relative;
  z-index: 1;
}

.workflow-grid strong,
.tutorial-grid a {
  display: block;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.project-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.project-grid strong {
  color: #fff;
  font-size: 18px;
}

.workflow-grid article span {
  color: #c07909;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
}

.workflow-grid h3,
.capability-grid strong,
.trust-grid strong {
  display: block;
  color: var(--ink);
}

.workflow-grid p,
.capability-grid span,
.trust-grid span {
  display: block;
  margin-top: 8px;
  color: var(--body);
}

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

.painkiller-grid article {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.06);
}

.painkiller-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.painkiller-grid span {
  display: block;
  margin-top: 9px;
  color: var(--body);
}

.project-grid i {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #0d65b6;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.project-grid i::before {
  content: "";
  display: block;
}

.icon-shed::before {
  width: 22px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-width: 0;
  box-shadow: inset 0 7px 0 rgba(78, 163, 255, 0.15);
}

.icon-shed::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 16px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, 8px);
}

.icon-fence::before {
  width: 26px;
  height: 20px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 2px 100%,
    linear-gradient(currentColor, currentColor) 8px 0 / 2px 100%,
    linear-gradient(currentColor, currentColor) 16px 0 / 2px 100%,
    linear-gradient(currentColor, currentColor) 24px 0 / 2px 100%,
    linear-gradient(90deg, currentColor, currentColor) 0 8px / 100% 2px,
    linear-gradient(90deg, currentColor, currentColor) 0 15px / 100% 2px;
  background-repeat: no-repeat;
}

.icon-deck::before {
  width: 28px;
  height: 18px;
  border: 2px solid currentColor;
  background:
    linear-gradient(90deg, transparent 24%, currentColor 25%, currentColor 28%, transparent 29%),
    linear-gradient(90deg, transparent 48%, currentColor 49%, currentColor 52%, transparent 53%),
    linear-gradient(90deg, transparent 72%, currentColor 73%, currentColor 76%, transparent 77%);
}

.icon-pool::before {
  width: 28px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: rgba(78, 163, 255, 0.15);
}

.icon-adu::before {
  width: 28px;
  height: 22px;
  border: 2px solid currentColor;
  clip-path: polygon(0 35%, 50% 0, 100% 35%, 100% 100%, 0 100%);
  background: rgba(78, 163, 255, 0.12);
}

.icon-drive::before {
  width: 30px;
  height: 22px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 50% 50% 0 0;
  transform: rotate(-18deg);
}

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

.capability-grid article {
  border-color: var(--line);
  border-left-color: var(--accent);
  background: var(--navy-2);
}

.cap-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.08);
  color: var(--accent);
  font-style: normal;
}

.cap-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
}

.cap-icon.lines::before {
  border: 2px solid currentColor;
  clip-path: polygon(10% 20%, 92% 8%, 80% 82%, 18% 92%);
}

.cap-icon.setbacks::before {
  border: 2px dashed currentColor;
  box-shadow: inset 0 0 0 6px rgba(245, 158, 11, 0.08);
}

.cap-icon.structures::before {
  background:
    linear-gradient(currentColor, currentColor) 3px 4px / 18px 2px,
    linear-gradient(currentColor, currentColor) 3px 18px / 18px 2px,
    linear-gradient(currentColor, currentColor) 3px 4px / 2px 16px,
    linear-gradient(currentColor, currentColor) 19px 4px / 2px 16px;
  background-repeat: no-repeat;
}

.cap-icon.contours::before {
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
  transform: skewX(-16deg);
}

.cap-icon.titleblock::before {
  border: 2px solid currentColor;
  background:
    linear-gradient(90deg, transparent 62%, currentColor 63%, currentColor 66%, transparent 67%),
    linear-gradient(transparent 68%, currentColor 69%, currentColor 72%, transparent 73%);
}

.cap-icon.pro::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.12);
}

.capability-grid strong {
  color: #fff;
}

.capability-grid span {
  color: #aab9cc;
}

.example-carousel {
  position: relative;
  max-width: 100%;
  min-height: clamp(360px, 48vw, 620px);
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: #eef2f7;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.1);
}

.example-carousel figure {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  transform: translateX(24px) scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.example-carousel figure.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.example-carousel img {
  width: 100%;
  height: 100%;
  max-height: clamp(320px, 44vw, 570px);
  object-fit: contain;
  padding: 18px;
  background: #e8edf4;
}

.example-carousel figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--rule);
  background: #fff;
  color: var(--body);
  font-weight: 800;
}

.comparison-card {
  padding: 30px;
}

.comparison-card h3 {
  margin-bottom: 12px;
}

.quote-stack {
  display: grid;
  gap: 12px;
}

.quote-stack article,
.checklist-card,
.experience-card,
.video-card {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.07);
}

.quote-stack article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
}

.quote-stack span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff5dd;
  color: #b56c06;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.quote-stack strong {
  color: var(--ink);
  line-height: 1.35;
}

.root-section,
.walkthrough-section {
  color: #fff;
}

.root-section p,
.walkthrough-section p {
  color: #aab9cc;
}

.checklist-card {
  padding: 28px;
  border-color: var(--line);
  background: var(--navy-2);
}

.checklist-card ul,
.before-after ul,
.experience-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.checklist-card li,
.before-after li,
.experience-card li {
  position: relative;
  padding-left: 24px;
}

.checklist-card li {
  color: #d7e3f2;
}

.checklist-card li::before,
.before-after li::before,
.experience-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 34px;
}

.before-after article {
  padding: 28px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.06);
}

.before-after article.after {
  border-color: rgba(32, 178, 107, 0.35);
  background: linear-gradient(180deg, #f6fffa, #fff);
}

.before-after h3 {
  margin-bottom: 14px;
  color: var(--ink);
}

.arrow-card {
  align-self: center;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}

.built-section {
  padding-top: 0;
}

.experience-card {
  padding: 30px;
}

.experience-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 20px;
}

.video-card {
  position: relative;
  display: grid;
  min-height: 320px;
  align-content: end;
  padding: 30px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% 34%, rgba(245, 158, 11, 0.28), transparent 23%),
    linear-gradient(135deg, rgba(13, 31, 53, 0.92), rgba(7, 17, 31, 0.98));
  color: #fff;
  text-decoration: none;
}

.video-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(245, 158, 11, 0.28);
}

.video-card strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 40px;
  line-height: 0.95;
}

.video-card small {
  margin-top: 6px;
  color: #aab9cc;
  font-family: "DM Mono", Consolas, monospace;
}

.alternative-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.alternative-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px 22px;
  border-right: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.96));
}

.alternative-grid article:last-child {
  border-right: 0;
}

.alternative-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 2px solid #aebccb;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 48%, #aebccb 49%, #aebccb 53%, transparent 54%),
    linear-gradient(transparent 48%, #aebccb 49%, #aebccb 53%, transparent 54%);
}

.alternative-grid strong,
.time-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.alternative-grid span,
.time-grid span {
  display: block;
  margin-top: 12px;
  color: var(--body);
  font-size: 15px;
}

.alternative-grid .featured-alt {
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 0 0 2px rgba(245, 158, 11, 0.38);
}

.alternative-grid .featured-alt::before {
  border-color: var(--accent);
  background:
    linear-gradient(135deg, transparent 56%, var(--accent) 57%, var(--accent) 70%, transparent 71%) 4px 18px / 13px 11px no-repeat,
    linear-gradient(45deg, transparent 36%, var(--accent) 37%, var(--accent) 50%, transparent 51%) 13px 9px / 22px 20px no-repeat;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.time-grid article {
  min-height: 196px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(13, 31, 53, 0.95), rgba(7, 17, 31, 0.95));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.time-grid strong {
  color: #fff;
}

.time-grid span {
  color: #aab9cc;
}

.time-grid .featured-time {
  border-color: rgba(245, 158, 11, 0.72);
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(13, 31, 53, 0.94));
}

.section-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 14px;
  background: #fff8e6;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.06);
}

.section-cta-panel strong {
  color: var(--ink);
  font-size: 20px;
}

.section-cta-panel span {
  color: var(--body);
}

.section-cta-panel .btn-primary {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.section-cta-panel.dark {
  border-color: rgba(245, 158, 11, 0.45);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(13, 31, 53, 0.92));
}

.section-cta-panel.dark strong {
  color: #fff;
}

.section-cta-panel.dark span {
  color: #aab9cc;
}

.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--navy-2);
}

.pricing-grid article.featured {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 20px 70px rgba(245, 158, 11, 0.12);
}

.pricing-grid p {
  color: #aab9cc;
}

.pricing-grid ul {
  display: grid;
  gap: 8px;
  margin-left: 18px;
  color: #dbe7f5;
  font-size: 14px;
}

.pricing-grid .price {
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 44px;
  line-height: 1;
}

.pricing-grid .price span {
  color: #8ea2bb;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.pricing-grid a {
  margin-top: auto;
}

.help-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.1), transparent 28%),
    #fbf8f1;
  border-top: 1px solid var(--rule);
}

.help-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.help-card-grid article {
  min-height: 250px;
  padding: 34px 28px;
  border: 1px solid var(--rule);
  border-radius: 28px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.08);
}

.help-card-grid h3 {
  margin: 18px 0 12px;
  color: var(--ink);
}

.help-card-grid p {
  max-width: 260px;
  margin: 0 auto;
}

.help-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.14);
}

.help-icon.tutorial::before {
  left: 20px;
  top: 16px;
  width: 18px;
  height: 22px;
  border: 2px solid var(--accent);
  border-radius: 3px;
  transform: rotate(-18deg);
}

.help-icon.tutorial::after {
  left: 25px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.help-icon.buddy {
  background: rgba(245, 158, 11, 0.16);
}

.help-icon.buddy::before {
  width: 27px;
  height: 23px;
  border: 2px solid var(--accent);
  border-radius: 13px 13px 9px 9px;
}

.help-icon.buddy::after {
  top: 35px;
  width: 18px;
  height: 8px;
  border: 2px solid var(--accent);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.help-icon.person::before {
  top: 14px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.help-icon.person::after {
  top: 33px;
  width: 28px;
  height: 14px;
  border: 2px solid var(--accent);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.help-cta {
  margin: 34px auto 0;
}

.comparison-table {
  display: grid;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--navy-2);
}

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

.comparison-row span {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #cbd8e8;
  overflow-wrap: anywhere;
}

.comparison-row span:last-child {
  border-right: 0;
}

.comparison-row:last-child span {
  border-bottom: 0;
}

.comparison-row.heading span {
  background: #0a1728;
  color: var(--accent);
  font-weight: 900;
}

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

.tutorial-grid a {
  min-height: 240px;
  overflow: hidden;
}

.tutorial-grid span {
  display: block;
  margin-bottom: 10px;
  color: #c07909;
  font-family: "DM Mono", Consolas, monospace;
}

.tutorial-grid img {
  width: 100%;
  height: 150px;
  margin: -22px -22px 16px;
  width: calc(100% + 44px);
  object-fit: cover;
  border-bottom: 1px solid var(--rule);
  background: #e8edf4;
}

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

.trust-grid article {
  position: relative;
  padding-left: 82px;
}

.trust-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff5dd;
  color: #b56c06;
}

.trust-icon::before,
.trust-icon::after {
  content: "";
  position: absolute;
}

.trust-icon.card::before {
  width: 24px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.trust-icon.card::after {
  width: 18px;
  height: 2px;
  top: 18px;
  background: currentColor;
}

.trust-icon.email::before {
  width: 24px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.trust-icon.email::after {
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  top: 9px;
}

.trust-icon.lock::before {
  width: 22px;
  height: 16px;
  bottom: 10px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.trust-icon.lock::after {
  width: 14px;
  height: 13px;
  top: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.trust-icon.limits::before {
  width: 23px;
  height: 22px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.trust-icon.limits::after {
  width: 19px;
  height: 15px;
  background:
    linear-gradient(currentColor, currentColor) 0 11px / 5px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 7px 6px / 5px 9px no-repeat,
    linear-gradient(currentColor, currentColor) 14px 1px / 5px 14px no-repeat;
}

.text-cta {
  display: inline-flex;
  margin-top: 16px;
  color: #b56c06;
  font-weight: 900;
}

.video-link {
  display: inline-flex;
  margin: 8px 14px 0 0;
  color: #b56c06;
  font-weight: 900;
}

.faq {
  padding: 78px 0 92px;
}

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

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq p {
  margin-top: 10px;
}

.final-cta {
  padding: clamp(78px, 8vw, 118px) 0;
  text-align: center;
}

.final-cta p {
  max-width: 680px;
  margin: 14px auto 26px;
  color: #aab9cc;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #050b14;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) auto auto;
  gap: 28px;
  align-items: center;
  color: #8ea2bb;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
}

.footer p {
  max-width: 620px;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-links a {
  color: #aab9cc;
  text-decoration: none;
}

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

.footer small {
  color: #6f8198;
  text-align: right;
}

.reviews-section {
  overflow: hidden;
  padding-block: clamp(70px, 8vw, 108px);
  scroll-margin-top: 78px;
}

.reviews-section > .container {
  text-align: center;
}

.reviews-section .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.review-marquee {
  width: min(100% - 44px, 1220px);
  margin: 34px auto 26px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.98) 8%, rgba(255,255,255,0.98) 92%, rgba(255,255,255,0));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 18px 0;
  will-change: transform;
  animation: review-scroll 32s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

@keyframes review-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.review-card {
  width: min(320px, calc(100vw - 40px));
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.reviews-grid .review-card {
  width: auto;
}

.review-stars {
  color: var(--accent);
  font-family: "DM Mono", Consolas, monospace;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 12px;
}

.review-card p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}

.review-card footer {
  display: grid;
  gap: 4px;
  color: var(--body);
  font-size: 0.88rem;
}

.review-card footer strong {
  color: var(--ink);
}

.review-hero {
  min-height: auto;
  padding-block: 120px 70px;
}

.review-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.review-form label,
.checkbox-row {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
}

.review-form textarea {
  resize: vertical;
}

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

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 600;
  color: var(--body);
}

.checkbox-row input {
  width: auto;
}

.review-form button {
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #111827;
  padding: 14px 18px;
  font-weight: 900;
  cursor: pointer;
}

.admin-review-list {
  display: grid;
  gap: 14px;
}

.admin-review-item {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.admin-review-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.admin-review-topline span {
  font-family: "DM Mono", Consolas, monospace;
  color: #b76f00;
  font-size: 0.78rem;
  white-space: nowrap;
}

.admin-review-item p {
  margin: 0 0 12px;
  color: var(--ink);
}

.admin-review-item dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0 0 14px;
}

.admin-review-item dt {
  font-family: "DM Mono", Consolas, monospace;
  color: var(--body);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.admin-review-item dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-actions button {
  border: 1px solid var(--rule);
  border-radius: 9px;
  background: #fff;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--navy-2);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.support-hero {
  padding: 82px 0 50px;
}

.support-hero h1 {
  color: var(--ink);
}

.support-list {
  padding: 20px 0 94px;
}

.support-list .container {
  display: grid;
  gap: 18px;
}

.support-list article {
  padding: 26px;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.seo-card-grid a,
.seo-card-grid article {
  display: block;
  min-height: 156px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--body);
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.07);
}

.seo-card-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.seo-card-grid span {
  display: block;
  color: var(--body);
}

.seo-card-grid em {
  display: inline-block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-directory-card {
  display: flex !important;
  flex-direction: column;
}

.blog-directory-card > span {
  margin-top: 12px;
}

.blog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 2px;
}

.blog-tag-row span,
.blog-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e8f5fb;
  color: #075985;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.blog-category {
  margin: 4px 0 2px;
  background: #fff2cc;
  color: #8a5a00;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.blog-byline span,
.blog-byline time {
  color: var(--muted);
}

.blog-post-meta {
  margin: 18px 0 10px;
  padding: 16px 0 6px;
}

.template-page .blog-post-meta + .cms-cta-row,
.cms-preview .blog-post-meta + .cms-cta-row {
  margin-top: 18px;
}

.seo-card-grid a:hover {
  border-left-color: var(--ink);
  transform: translateY(-2px);
}

.seo-card-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--rule);
  border-radius: 10px;
  margin-bottom: 14px;
}

.cms-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 24px 0 8px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.08);
}

.btn-secondary:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.cms-link-section {
  margin-top: 38px;
}

.cms-link-section h2 {
  margin-bottom: 8px;
  color: var(--ink);
}

.cms-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.cms-breadcrumb a {
  color: var(--body);
  text-decoration: none;
}

.cms-breadcrumb a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cms-breadcrumb strong {
  color: var(--ink);
}

.cms-feature-image {
  margin: 30px 0;
}

.cms-feature-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.10);
}

.cms-feature-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.cms-jump-box {
  margin: 30px 0 30px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.95)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.cms-jump-box h2 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
}

.cms-jump-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cms-jump-grid a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.cms-jump-grid a:hover {
  border-color: rgba(245, 158, 11, 0.65);
  transform: translateY(-1px);
}

.cms-jump-grid a.is-sub {
  color: var(--body);
  font-weight: 800;
}

.cms-answer-box {
  margin: 28px 0 30px;
  padding: 24px;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-left: 5px solid var(--accent);
  border-radius: 14px;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 74%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.cms-answer-box p {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  font-weight: 700;
}

.cms-faq-block {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.cms-faq-block details {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.cms-faq-block summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.cms-faq-block p {
  margin-top: 10px;
}

.seo-checklist {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.seo-check {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
}

.seo-check strong {
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-check span {
  color: var(--body);
}

.seo-check.is-ok {
  border-left: 4px solid #22c55e;
}

.seo-check.is-ok strong {
  color: #15803d;
}

.seo-check.is-warn {
  border-left: 4px solid var(--accent);
}

.seo-check.is-warn strong {
  color: #9a5f00;
}

.cms-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
}

.cms-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.cms-table-wrap th,
.cms-table-wrap td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.cms-table-wrap th {
  background: #fbf8f1;
  color: var(--ink);
  font-weight: 900;
}

.cms-table-wrap tr:last-child td {
  border-bottom: 0;
}

.template-page article a,
.cms-preview a {
  color: #9a5f00;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-list article > span {
  color: #c07909;
  font-family: "DM Mono", Consolas, monospace;
}

.support-list h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
}

.legal-page,
.template-page {
  min-height: 100vh;
  padding: clamp(92px, 10vw, 138px) 0;
}

.legal-page h1,
.template-page h1 {
  max-width: 900px;
  color: var(--ink);
}

.legal-page article,
.template-page article {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.legal-page article h2,
.template-page article h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
}

.video-placeholder {
  margin-top: 16px;
  padding: 18px;
  border: 1px dashed #aebccb;
  border-radius: 8px;
  background: #f6f8fb;
  color: #607086;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
}

.support-video-card {
  margin: 18px 0 0;
  width: min(100%, 720px);
  min-height: 150px;
  overflow: hidden;
  border: 1px solid #d6e0ec;
  border-radius: 12px;
  background: #f5f8fc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.support-video-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #edf2f7;
}

.admin-page {
  min-height: 100vh;
  padding: clamp(56px, 7vw, 88px) 0;
}

.admin-locked .admin-full-heading,
.admin-locked .admin-shell,
.admin-locked #adminNavLinks {
  display: none !important;
}

.admin-locked .admin-page .container-wide {
  max-width: 820px;
}

.admin-locked .admin-secure-nav .nav-inner {
  justify-content: center;
}

.admin-locked .admin-secure-nav .logo {
  pointer-events: none;
}

.admin-page h1 {
  color: var(--ink);
}

.admin-full-heading {
  max-width: 980px;
  margin: 0 0 20px;
}

.admin-full-heading h1,
#adminPublicIntro h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  max-width: 760px;
}

.admin-full-heading .lead,
#adminPublicIntro .lead {
  max-width: 760px;
}

.admin-login,
.admin-panel,
.admin-editor,
.admin-preview-wrap {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.08);
}

.admin-login {
  max-width: 720px;
  margin-top: 28px;
  padding: 24px;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 22px;
  margin-top: 20px;
  align-items: start;
}

.admin-panel,
.admin-editor {
  padding: 20px;
}

.admin-panel {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 126px);
  overflow: auto;
}

.admin-editor {
  min-width: 0;
}

.admin-panel-head,
.admin-editor-actions,
.admin-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.admin-panel-head strong {
  color: var(--ink);
  font-size: 18px;
}

.admin-editor-actions {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.admin-panel button,
.admin-editor button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.admin-editor-actions button:nth-child(2) {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}

.admin-filter-row {
  margin: 16px 0;
}

.admin-page-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
}

.admin-page-item {
  display: grid;
  gap: 4px;
  width: 100%;
  text-align: left;
}

.admin-page-item span {
  color: var(--body);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 12px;
}

.cms-form {
  display: grid;
  gap: 16px;
}

.cms-fieldset {
  display: grid;
  gap: 12px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 14px;
  background: #fffaf0;
}

.cms-fieldset legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 950;
}

.cms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cms-form label,
.admin-login label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.cms-form input,
.cms-form textarea,
.cms-form select,
.admin-filter-row select,
.admin-login input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.cms-form textarea {
  resize: vertical;
}

.admin-preview-wrap {
  margin-top: 22px;
  padding: 20px;
}

.cms-preview {
  margin-top: 16px;
  padding: 26px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fbf8f1;
}

.cms-preview h1,
.cms-preview h2,
.cms-preview h3 {
  color: var(--ink);
}

.cms-preview-body {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.cms-preview-body ul {
  margin-left: 22px;
}

.microcopy {
  color: var(--body);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .steps,
  .workflow-grid,
  .project-grid,
  .pricing-grid,
  .capability-grid,
  .painkiller-grid,
  .trust-grid,
  .help-card-grid,
  .seo-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .data-layout,
  .data-layout-second {
    grid-template-columns: 1fr;
  }

  .data-layout-second .included-card {
    order: 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer small {
    text-align: center;
  }

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

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

  .hero-start-card {
    justify-self: stretch;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

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

  .alternative-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .alternative-grid .featured-alt {
    grid-column: 1 / -1;
  }

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

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

  .before-after {
    grid-template-columns: 1fr;
  }

  .arrow-card {
    justify-self: center;
  }

  .comparison-row span {
    border-right: 0;
  }

  .comparison-row.heading span:not(:first-child) {
    display: none;
  }
}

@media (max-width: 680px) {
  .container,
  .container-wide {
    width: min(100% - 30px, 1040px);
  }

  .nav-cta {
    display: none;
  }

  .checker-row,
  .email-row,
  .proof-grid,
  .steps,
  .workflow-grid,
  .project-grid,
  .pricing-grid,
  .tutorial-grid,
  .capability-grid,
  .painkiller-grid,
  .trust-grid,
  .help-card-grid,
  .seo-card-grid,
  .reviews-grid,
  .review-score-grid,
  .admin-review-item dl {
    grid-template-columns: 1fr;
  }

  .admin-review-topline {
    display: grid;
  }

  .data-pill-row {
    justify-content: stretch;
  }

  .data-pill-row span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .included-card {
    border-radius: 20px;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-start-card .start-card-inner {
    grid-template-columns: 1fr;
  }

  .hero-start-card .card-kicker,
  .hero-start-card h2,
  .hero-start-card .card-input,
  .hero-start-card .btn-primary,
  .hero-start-card .advisor-note,
  .hero-start-card .start-checks {
    grid-column: 1;
  }

  .alternative-grid,
  .time-grid,
  .section-cta-panel {
    grid-template-columns: 1fr;
  }

  .support-video-card {
    width: 100%;
    min-height: 118px;
    border-radius: 10px;
  }

  .support-video-card img {
    height: 118px;
  }

  .section-cta-panel .btn-primary {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .trust-grid article {
    padding-left: 22px;
    padding-top: 78px;
  }

  .coverage-svg {
    height: 300px;
  }

  .coverage-map-note {
    border-radius: 12px;
  }

  .quote-stack article {
    grid-template-columns: 1fr;
  }

  .video-card {
    min-height: 250px;
  }

  .hero-start-card {
    padding: 14px;
    transform: none;
  }

  .start-card-inner {
    transform: none;
  }

  .start-checks {
    grid-template-columns: 1fr;
  }

  .example-carousel {
    min-height: 390px;
  }

  .example-carousel img {
    padding: 10px;
  }

  .hero {
    min-height: auto;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

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

  .admin-editor-actions button,
  .admin-panel button {
    width: 100%;
  }
}
