/* Florida Real Estate Hero — Moving to Broward County funnel
   Brand: Navy #0C223A, Sunset Orange #EF6A47 (CTA only), Sky Blue #57AADC, Cream #EFF1E6 */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0C223A;
  --navy-soft: #16324f;
  --orange: #EF6A47;
  --orange-dark: #d8532f;
  --sky: #57AADC;
  --cream: #EFF1E6;
  --white: #ffffff;
  --ink: #16212c;
  --muted: #5b6772;
  --border: #e2e0d4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(12,34,58,0.10);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 66px;
}
@media (min-width: 760px) { body { padding-bottom: 0; } }

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--navy);
  line-height: 1.05;
}

a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

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

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 0;
}
.topbar .wrap { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
.topbar .badge {
  background: var(--sky);
  color: var(--navy);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #e7e9db 100%);
  padding: 36px 0 48px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero .wrap { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--orange); }

.hero .sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 22px;
}

.trust-line {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
}
.guide-cover {
  width: min(320px, 80vw);
  aspect-ratio: 3/4;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--navy) 0%, #06131f 100%);
  color: var(--cream);
  box-shadow: 0 24px 50px rgba(12,34,58,0.35);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform: rotate(-2deg);
}
.guide-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(87,170,220,0.35), transparent 55%),
              radial-gradient(circle at 20% 90%, rgba(239,106,71,0.30), transparent 50%);
}
.guide-cover .edition {
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--sky);
  z-index: 1;
}
.guide-cover .gtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 6vw, 40px);
  line-height: 0.95;
  z-index: 1;
}
.guide-cover .gsub {
  font-size: 13px;
  color: #cfd8e0;
  z-index: 1;
  margin-top: 10px;
}
.guide-cover .gauthor {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--cream);
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
}
.guide-cover-photo { padding: 0; background: none; }
.guide-cover-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }

/* ---------- Form card ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  max-width: 460px;
}
.form-card h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(87,170,220,0.2);
}
.field.error input,
.field.error select { border-color: var(--orange-dark); }
.field .err-msg {
  display: none;
  color: var(--orange-dark);
  font-size: 12px;
  margin-top: 5px;
  font-weight: 600;
}
.field.error .err-msg { display: block; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; }
.consent label {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}
.consent a { color: var(--navy); text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 18px;
  padding: 15px 20px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, transform .1s ease;
}
.btn:hover { background: var(--orange-dark); }
.btn:active { transform: scale(0.99); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-foot {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-head .kicker {
  color: var(--sky);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 { font-size: clamp(26px, 4vw, 38px); }

.bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) {
  .bullets { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .bullets { grid-template-columns: repeat(3, 1fr); }
}
.bullet {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.bullet .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--navy);
  color: var(--sky);
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}
.bullet h3 { font-size: 18px; margin-bottom: 6px; }
.bullet p { font-size: 14px; color: var(--muted); }

.numbers { background: var(--navy); color: var(--cream); }
.numbers .section-head h2 { color: var(--white); }
.numbers .section-head p { color: #c6cdd4; margin-top: 8px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 800px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat .val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 34px);
  color: var(--sky);
}
.stat .lbl { font-size: 12.5px; color: #c6cdd4; margin-top: 4px; }

.city-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  overflow: hidden;
}
.city-table th, .city-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
}
.city-table th {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #9fb0bd;
  font-weight: 700;
}
.city-table td.price { color: var(--sky); font-weight: 700; }
.city-table td.meta { color: #9fb0bd; font-size: 12.5px; }
.table-source { font-size: 11.5px; color: #8b97a2; margin-top: 12px; }
.numbers .cta-link { text-align: center; margin-top: 24px; }

.hero-tip {
  background: var(--sky);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 780px;
}
.hero-tip .icon { font-size: 22px; }
.hero-tip strong { display: block; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; font-size: 13px; letter-spacing: 0.03em; }
.hero-tip p { font-size: 14.5px; }

.meet {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 760px) { .meet { grid-template-columns: 240px 1fr; } }
.meet-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.meet-body h3 { font-size: 15px; letter-spacing: 0.04em; margin-bottom: 10px; }
.meet-body p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.meet-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.meet-badges span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.review .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 10px; }
.review p { font-size: 14px; color: var(--ink); margin-bottom: 12px; }
.review .who { font-size: 12.5px; color: var(--muted); font-weight: 700; }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--sky);
  -webkit-text-stroke: 1px var(--navy);
}
.step h3 { font-size: 17px; margin: 6px 0; }
.step p { font-size: 14px; color: var(--muted); }

.faq { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-q .icon { font-size: 20px; color: var(--orange); transition: transform .15s ease; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease;
  font-size: 14.5px;
  color: var(--muted);
  padding: 0 4px;
}
.faq-item.open .faq-a { padding-bottom: 18px; }

.final-cta {
  background: linear-gradient(160deg, var(--navy), #06131f);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.final-cta h2 { color: var(--white); font-size: clamp(28px, 5vw, 42px); margin-bottom: 18px; }
.final-cta .btn { max-width: 360px; margin: 0 auto; }
.final-cta .alt { margin-top: 16px; font-size: 14px; color: #c6cdd4; }
.final-cta .alt a { color: var(--sky); font-weight: 700; text-decoration: none; }

footer {
  background: var(--navy);
  color: #9fb0bd;
  font-size: 12.5px;
  padding: 28px 0;
  text-align: center;
}
footer .fname { color: var(--cream); font-weight: 700; margin-bottom: 6px; }
footer a { color: var(--sky); text-decoration: none; }
footer .legal { max-width: 560px; margin: 10px auto 0; line-height: 1.5; }

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  z-index: 50;
  display: flex;
}
.sticky-cta .btn { font-size: 15px; padding: 12px; }
@media (min-width: 760px) { .sticky-cta { display: none; } }

/* ---------- Thank-you page ---------- */
.ty-hero {
  background: linear-gradient(180deg, var(--cream), #e7e9db);
  padding: 56px 0 40px;
  text-align: center;
}
.ty-check {
  width: 60px; height: 60px;
  background: var(--sky);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 18px;
}
.ty-hero h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 14px; }
.ty-hero p { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.download-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.download-card .btn { margin-bottom: 10px; }
.download-card .note { font-size: 13px; color: var(--muted); }

.next-step { padding: 56px 0; }
.next-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
}
.next-card h2 { font-size: clamp(24px, 4vw, 32px); margin-bottom: 18px; }
.next-list { text-align: left; max-width: 380px; margin: 0 auto 24px; list-style: none; }
.next-list li { padding: 8px 0 8px 28px; position: relative; font-size: 14.5px; color: var(--ink); }
.next-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--orange);
  font-weight: 700;
}
.next-card .btn { max-width: 360px; margin: 0 auto; }
.next-card .alt { margin-top: 14px; font-size: 14px; color: var(--muted); }
.next-card .alt a { color: var(--navy); font-weight: 700; }

.ty-video {
  max-width: 640px;
  margin: 0 auto 48px;
  aspect-ratio: 16/9;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-direction: column;
  gap: 10px;
}
.ty-video .play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.ty-video span { font-size: 13px; color: #c6cdd4; }

/* ================================================================
   REDESIGN PASS — progress bar, logo, icons, dividers, animation,
   trust bar, avatars, photo frame
   ================================================================ */

/* ---------- Scroll progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--sky));
  z-index: 200;
  transition: width .1s linear;
}

/* ---------- Logo mark ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.logo .mark { width: 26px; height: 26px; flex-shrink: 0; object-fit: contain; }
.logo small { display: block; font-size: 8.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--sky); }

.topbar .wrap { justify-content: space-between; flex-wrap: wrap; }
.topbar .badges { display: flex; align-items: center; gap: 10px; }

/* ---------- Icon set ---------- */
.ic { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}
.trust-item .ic { width: 18px; height: 18px; color: var(--sky); }
.trust-item .stars-row { color: var(--orange); letter-spacing: 1px; font-size: 13px; }

/* ---------- Hero decoration ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-visual { position: relative; }
.hero-visual .blob {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,170,220,0.35), transparent 65%);
  top: -40px; right: -40px;
  z-index: 0;
  filter: blur(2px);
}
.guide-cover { position: relative; z-index: 1; }
.guide-cover-stack {
  position: absolute;
  inset: 10px -10px -10px 10px;
  border-radius: 10px;
  background: var(--navy-soft);
  z-index: 0;
  opacity: 0.5;
  transform: rotate(-2deg);
}
.hero-visual-inner { position: relative; }

/* ---------- Section dividers ---------- */
.divider { display: block; width: 100%; line-height: 0; position: relative; z-index: 1; }
.divider svg { display: block; width: 100%; height: 48px; }
.divider-to-navy { fill: var(--navy); }
.divider-to-cream { fill: var(--cream); }
.numbers { position: relative; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view .reveal-child:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view .reveal-child:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in-view .reveal-child:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in-view .reveal-child:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in-view .reveal-child:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in-view .reveal-child:nth-child(6) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-child { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Bullet icons (replace plain number chip) ---------- */
.bullet { display: flex; flex-direction: column; }
.bullet .icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--sky);
  border-radius: 10px;
  margin-bottom: 14px;
}
.bullet .icon-chip .ic { width: 24px; height: 24px; }
.bullet .chapter-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ---------- Animated stat counters ---------- */
.stat .val { font-variant-numeric: tabular-nums; }

/* ---------- Meet Khaliq photo frame ---------- */
.meet-photo-wrap { position: relative; width: 200px; margin: 0 auto; }
.meet-photo {
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  display: block;
}
.meet-photo-wrap .ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed var(--sky);
  opacity: 0.6;
}
.meet-photo-wrap .pin-badge {
  position: absolute;
  bottom: 6px; right: 0;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 3px solid var(--white);
  white-space: nowrap;
}

/* ---------- Review avatars ---------- */
.review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review .stars { margin-bottom: 0; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; }
.review .who { font-weight: 700; color: var(--navy); font-size: 13px; }
.review .source { font-size: 11.5px; color: var(--muted); }
.review-quote-mark { font-size: 34px; color: var(--sky); opacity: 0.4; font-family: Georgia, serif; line-height: 0.4; display: block; margin-bottom: 6px; }

/* ---------- Form card polish ---------- */
.form-card { position: relative; }
.form-card .form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.form-card .form-kicker .ic { width: 14px; height: 14px; color: var(--orange); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 480px) { .field-row-2 { grid-template-columns: 1fr 1fr; gap: 14px; } }
.field-icon-wrap { position: relative; }
.field-icon-wrap .ic {
  position: absolute; left: 13px; top: 40px;
  width: 17px; height: 17px;
  color: var(--muted);
  pointer-events: none;
}
.field-icon-wrap input { padding-left: 38px; }
.microcopy { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 10px; }

/* Honeypot field (Netlify spam trap) */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- Chapter icon list alt (mobile numbering keep) ---------- */
.bullet .chip-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.bullet .chip-row .icon-chip { margin-bottom: 0; }

/* ---------- Submit state ---------- */
.btn .spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.loading .spinner { display: inline-block; }
.btn.loading .btn-label { opacity: 0.8; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show { display: block; }
.form-success .ty-check { margin-bottom: 10px; }
