/* ══════════════════════════════════════
   DomScan AI — Landing Page Styles v3
══════════════════════════════════════ */

:root {
  --teal:       #0F766E;
  --teal-dark:  #0D5F58;
  --teal-mid:   #14B8A6;
  --teal-light: #E6F4F3;
  --blue:       #1D4ED8;
  --bg:         #FFFFFF;
  --bg-soft:    #F8FFFE;
  --bg-section: #F1F5F9;
  --text:       #0F172A;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --red:        #EF4444;
  --amber:      #F59E0B;
  --green:      #16A34A;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(15,118,110,.10), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 16px 48px rgba(15,118,110,.16);
  --r:          12px;
  --r-lg:       20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; transition: color .15s; }
a:hover { color: var(--teal-dark); }

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

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

/* ── Container ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Scroll animations ── */
.fade-in, .fade-in-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-right { transform: translateX(32px); }
.fade-in.visible, .fade-in-right.visible { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 10px; border: none;
  cursor: pointer; transition: all .18s ease; line-height: 1;
  text-decoration: none; white-space: nowrap;
}
.btn-sm  { font-size: 14px; padding: 9px 18px; }
.btn-lg  { font-size: 16px; padding: 15px 28px; }

.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 2px 8px rgba(15,118,110,.3); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; box-shadow: 0 4px 14px rgba(15,118,110,.4); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal-light); }

.btn-ghost { background: transparent; color: var(--muted); border: 1.5px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: #CBD5E1; background: var(--bg-section); }

.btn-white { background: #fff; color: var(--teal); box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.btn-white:hover { background: var(--teal-light); box-shadow: 0 4px 12px rgba(0,0,0,.15); transform: translateY(-1px); }

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-primary-full, .btn-outline-full {
  display: flex; width: 100%; justify-content: center;
  padding: 14px 24px; border-radius: 10px; font-weight: 600;
  font-size: 15px; font-family: inherit; border: none; cursor: pointer;
  transition: all .18s ease; text-decoration: none;
}
.btn-primary-full { background: var(--teal); color: #fff; box-shadow: 0 2px 8px rgba(15,118,110,.3); }
.btn-primary-full:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); }
.btn-outline-full { color: var(--teal); border: 1.5px solid var(--teal); background: transparent; }
.btn-outline-full:hover { background: var(--teal-light); }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); padding: 13px 0;
}
.header .container { display: flex; align-items: center; gap: 16px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 16px; color: var(--text); letter-spacing: .04em; flex-shrink: 0; }
.logo-sm { font-size: 15px; }
nav { display: flex; gap: 2px; flex: 1; justify-content: center; }
nav a { color: var(--muted); font-size: 14px; font-weight: 500; padding: 7px 14px; border-radius: 8px; transition: all .15s; }
nav a:hover { color: var(--text); background: var(--bg-section); }
.header .btn { margin-left: auto; flex-shrink: 0; }

/* ── Section commons ── */
section { padding: 88px 0; }
.section-label { text-align: center; font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
h2 { font-size: 36px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--muted); font-size: 17px; margin-bottom: 52px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ══ HERO ══ */
.hero {
  padding: 88px 0 96px;
  background:
    radial-gradient(ellipse 55% 65% at 12% 75%, rgba(15,118,110,.38) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 88% 20%, rgba(3,105,161,.28) 0%, transparent 60%),
    radial-gradient(ellipse 28% 38% at 55% 5%, rgba(20,184,166,.18) 0%, transparent 55%),
    linear-gradient(148deg, #071E1C 0%, #0D3835 45%, #091C2E 100%);
  overflow: hidden;
  position: relative;
}

/* subtle grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,118,110,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,118,110,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 52px; font-weight: 800; letter-spacing: -.028em;
  line-height: 1.08; margin-bottom: 20px; text-align: left;
  color: #fff;
}
.hero-content h1 em { font-style: normal; color: var(--teal-mid); }
.hero-content .subtitle {
  font-size: 17px; color: rgba(255,255,255,.7);
  line-height: 1.65; margin-bottom: 28px; max-width: 440px;
}

.hero-social-proof {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  border-radius: 14px; padding: 14px 20px; margin-bottom: 28px; width: fit-content;
}
.sp-item { display: flex; flex-direction: column; padding: 0 16px; }
.sp-item strong { font-size: 18px; font-weight: 800; color: #fff; line-height: 1; }
.sp-item span { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 3px; }
.sp-divider { width: 1px; height: 32px; background: rgba(255,255,255,.18); }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-note { font-size: 12px; color: rgba(255,255,255,.38); }

/* ghost button override for dark hero */
.hero .btn-ghost {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
}
.hero .btn-ghost:hover {
  color: #fff; border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
}

.hero-visual { display: flex; justify-content: flex-end; align-items: center; }

.hero-house-wrapper {
  position: relative;
  width: 100%;
}

.hero-scan-img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(15,118,110,.3);
  border: 1px solid rgba(255,255,255,.1);
  display: block;
}

.defect-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.defect-callout.callout-left { flex-direction: row-reverse; }

.callout-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #EF4444;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(239,68,68,.35);
  flex-shrink: 0;
}

.callout-label {
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  padding: 5px 9px;
  border-radius: 8px;
  border: 1px solid rgba(239,68,68,.5);
  white-space: nowrap;
  max-width: 160px;
  white-space: normal;
}

.callout-line {
  width: 24px; height: 1px;
  background: rgba(239,68,68,.7);
  flex-shrink: 0;
}

/* defect positions (% of image size) */
.defect-1 { bottom: 38%; left: 16%; }
.defect-2 { top: 12%; right: 8%; flex-direction: row-reverse; }
.defect-3 { bottom: 18%; right: 8%; flex-direction: row-reverse; }

/* ══ TRUST BAR ══ */
.trust-bar {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 16px 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 6px 20px;
}
.trust-sep { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }

@media (max-width: 768px) {
  .trust-items { gap: 4px; }
  .trust-item { padding: 4px 10px; font-size: 12px; }
  .trust-sep { display: none; }
}

/* ══ PAIN ══ */
.pain-section { background: var(--bg-section); }
.pain-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.pain-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pain-photo { margin: -28px -24px 16px; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; height: 180px; }
.pain-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; display: block; transition: transform .4s ease; }
.pain-card:first-child .pain-photo img { object-position: center 95%; }
.pain-card:hover .pain-photo img { transform: scale(1.04); }
.pain-loss { font-size: 28px; font-weight: 800; color: var(--red); letter-spacing: -.02em; }
.pain-card h3 { font-size: 17px; font-weight: 700; }
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.pain-tag { font-size: 12px; color: var(--muted); background: var(--bg-section); border-radius: 6px; padding: 6px 10px; }
.pain-cta { text-align: center; }
.pain-cta p { font-size: 16px; color: var(--muted); margin-bottom: 20px; }

/* ══ STEPS ══ */
.steps-section { background: var(--bg); }
.steps { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 0; align-items: start; }
.step-connector { display: flex; align-items: center; justify-content: center; padding-top: 48px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: .1em; margin-bottom: 12px; opacity: .6; }
.step-icon { margin-bottom: 14px; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; text-align: left; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; text-align: left; }
.step-note { font-size: 12px; font-weight: 700; color: var(--teal); background: var(--teal-light); display: inline-block; padding: 4px 10px; border-radius: 6px; }

/* ══ REPORT ══ */
.report-section { background: var(--bg-soft); }
.report-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.report-text { display: flex; flex-direction: column; gap: 16px; }
.report-text .section-label, .report-text h2 { text-align: left; }
.report-text h2 { font-size: 32px; }
.report-text p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.report-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.report-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.report-preview { position: relative; }
.report-img { border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); width: 100%; }
.report-badge { position: absolute; bottom: -14px; right: 20px; background: var(--teal); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px; }

/* ══ CALCULATOR ══ */
.calc-section { background: var(--bg); }
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.calc-inputs { background: var(--bg-section); border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.input-wrap { position: relative; }
.input-wrap input { width: 100%; padding: 12px 44px 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--text); transition: border-color .15s; outline: none; background: #fff; }
.input-wrap input:focus { border-color: var(--teal); }
.input-suffix { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; color: var(--muted); pointer-events: none; }
.calc-field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--text); background: #fff; outline: none; transition: border-color .15s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.calc-field select:focus { border-color: var(--teal); }
.calc-result { background: var(--teal); border-radius: var(--r-lg); padding: 32px; display: flex; align-items: center; justify-content: center; }
.calc-result-inner { text-align: center; color: #fff; }
.calc-result-label { font-size: 13px; font-weight: 600; opacity: .8; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.calc-result-range { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.1; }
.calc-result-sub { font-size: 14px; opacity: .75; margin-bottom: 24px; }
.calc-disclaimer { font-size: 11px; opacity: .55; margin-bottom: 20px; line-height: 1.5; }

/* ══ REVIEWS ══ */
.reviews-section { background: var(--bg-soft); }
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review { background: #fff; border-radius: var(--r-lg); padding: 28px 24px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.review-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.65; flex: 1; }
.review-text::before { content: '\201C'; }
.review-text::after { content: '\201D'; }
.review-footer { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; background: var(--teal); color: #fff; border-radius: 50%; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.review-meta strong { color: var(--teal); }

/* ══ PRICING ══ */
.pricing-section { background: var(--bg); }
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 20px; }
.price-card { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; background: #fff; display: flex; flex-direction: column; gap: 14px; position: relative; }
.price-featured { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--shadow-md); }
.price-badge { display: inline-block; background: var(--teal); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; align-self: flex-start; }
.price-card h3 { font-size: 17px; font-weight: 700; }
.price-amount { font-size: 30px; font-weight: 800; color: var(--teal); letter-spacing: -.02em; }
.price-featured .price-amount { color: var(--teal); }
.price-card:not(.price-featured) .price-amount { color: var(--text); }
.price-desc { font-size: 13px; color: var(--muted); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-list li { font-size: 14px; color: var(--muted); padding-left: 22px; position: relative; }
.price-list li::before { content: ''; position: absolute; left: 0; top: 5px; width: 14px; height: 14px; background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%230F766E' opacity='0.12'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%230F766E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; }
.price-extra { }
.price-extra-card { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 28px; background: #fff; }
.price-extra-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.price-extra-card p { font-size: 14px; color: var(--muted); }
.price-extra-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.price-amount-inline { font-size: 22px; font-weight: 800; color: var(--teal); }
.price-extra-card > div:first-child { flex: 1; }

/* ══ FAQ ══ */
.faq-section { background: var(--bg-soft); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); background: #fff; overflow: hidden; }
.faq-item summary { padding: 20px 24px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background .15s; }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--teal); transition: transform .2s; flex-shrink: 0; margin-left: 16px; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══ FINAL CTA ══ */
.final-cta { background: var(--teal); padding: 96px 0; }
.final-cta-wrap { text-align: center; }
.final-cta h2 { color: #fff; font-size: 40px; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.final-note { font-size: 13px; color: rgba(255,255,255,.5); }

/* ══ LEAD ══ */
.lead-section { padding: 80px 0; background: var(--bg-section); }
.lead-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.lead-text h2 { text-align: left; font-size: 28px; margin-bottom: 12px; }
.lead-text p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.disclaimer-note { background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 8px; padding: 14px 16px; font-size: 12px; color: #92400E; line-height: 1.55; }
.lead-form { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.lead-form input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--text); transition: border-color .15s; outline: none; }
.lead-form input:focus { border-color: var(--teal); }
.lead-form .status { font-size: 14px; text-align: center; min-height: 20px; }

/* ══ FOOTER ══ */
footer { border-top: 1px solid var(--border); padding: 32px 0; background: #fff; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 4px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 13px; padding: 6px 12px; border-radius: 8px; transition: all .15s; }
.footer-links a:hover { color: var(--text); background: var(--bg-section); }
.footer-copy { font-size: 12px; color: #94A3B8; text-align: center; }

/* price-extra layout fix */
.price-extra-card { display: flex; align-items: center; gap: 32px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-content h1 { font-size: 42px; }
  .hero-visual { justify-content: center; }
  .report-wrap { grid-template-columns: 1fr; }
  .report-text h2, .report-text .section-label { text-align: center; }
  .calc-wrap { grid-template-columns: 1fr; }
  .lead-wrap { grid-template-columns: 1fr; gap: 40px; }
  .lead-text h2 { text-align: left; }
  .price-extra-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .price-extra-right { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  h2 { font-size: 28px; }
  .hero { padding: 56px 0 64px; }
  .hero-content h1 { font-size: 34px; }
  .hero-social-proof { flex-wrap: wrap; width: 100%; }
  .sp-divider { display: none; }
  .sp-item { padding: 4px 12px; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .pain-cards { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  nav { display: none; }
  .final-cta h2 { font-size: 30px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Focus / A11y ── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--teal); outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .fade-in, .fade-in-right { opacity: 1; transform: none; }
}
