/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --red:         #C1122F;
  --red-deep:    #8B0D22;
  --red-bright:  #E5203D;
  --red-soft:    rgba(193, 18, 47, 0.08);
  --red-line:    rgba(193, 18, 47, 0.14);
  --red-glow:    rgba(193, 18, 47, 0.22);

  --ink:         #100509;
  --ink-2:       #3A1520;
  --muted:       #7A5C64;
  --muted-2:     #A88894;

  --white:       #FFFFFF;
  --bg:          #FFFCFB;
  --bg-2:        #FFF4F2;
  --surface:     rgba(255, 255, 255, 0.9);

  --dark:        #100408;
  --dark-2:      #1E0810;

  --green:       #22C55E;
  --amber:       #F59E0B;
  --blue:        #3B82F6;
  --slate:       #94A3B8;

  --font-body:    "DM Sans", system-ui, sans-serif;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;

  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-2xl:  44px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(16, 4, 8, 0.06);
  --shadow-md:   0 8px 28px rgba(16, 4, 8, 0.09);
  --shadow-lg:   0 24px 64px rgba(16, 4, 8, 0.12);
  --shadow-red:  0 22px 55px rgba(193, 18, 47, 0.22);

  --ease:        240ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    300ms cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring: 440ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-w: 1200px;
  --gap:   1rem;
}

/* ─── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea { font: inherit; }

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

h1, h2, h3 { line-height: 1; letter-spacing: -0.03em; margin: 0; }

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

[id] { scroll-margin-top: 7rem; }

/* ─── LAYOUT ──────────────────────────────────────────────────────────── */
.site { position: relative; overflow: clip; }

.container {
  width: min(calc(100% - 2rem), var(--max-w));
  margin-inline: auto;
}

.section { padding: 5rem 0; }

/* ─── TYPOGRAPHY UTILS ────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light { color: rgba(255, 255, 255, 0.6); }

.section-head p:last-child { color: var(--muted); max-width: 44rem; }
.section-head.center { text-align: center; }
.section-head.center p:last-child { margin-inline: auto; }
.section-head h2 {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 42rem;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { box-shadow: 0 28px 60px rgba(193, 18, 47, 0.3); }

.btn-outline {
  background: transparent;
  border-color: var(--red-line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--red); background: var(--red-soft); }

.btn-white {
  background: #fff;
  color: var(--red);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-lg {
  padding: 1rem 1.8rem;
  font-size: 1.02rem;
  min-height: 3.4rem;
}

.btn-block { width: 100%; justify-content: center; }

/* ─── SCROLL PROGRESS ─────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
  transition: width 80ms linear;
  transform-origin: left;
}

/* ─── HEADER ──────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 252, 251, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 36px rgba(16, 4, 8, 0.07), 0 2px 8px rgba(16, 4, 8, 0.04);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.logo-mark {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(193, 18, 47, 0.18);
}

.logo-copy { display: grid; min-width: 0; }
.logo-copy strong { font-size: 0.96rem; white-space: nowrap; }
.logo-copy small { color: var(--muted); font-size: 0.76rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.logo-name { font-size: 1rem; font-weight: 700; }

.logo-wordmark {
  display: block;
  height: 3.2rem;
  width: auto;
  flex-shrink: 0;
}

.footer-logo {
  height: 2.6rem;
  width: auto;
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  padding: 0.25rem 0.65rem;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.header-nav a {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--ease), background var(--ease);
}

.header-nav a:hover, .header-nav a:focus-visible {
  color: var(--ink);
  background: var(--red-soft);
}

.header-cta { flex-shrink: 0; font-size: 0.9rem; padding: 0.9rem 1.9rem; }

/* ─── MOBILE NAV TOGGLE ───────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0.4rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--red-soft);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ──────────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  pointer-events: none;
}

.mobile-nav[aria-hidden="false"] { pointer-events: auto; }

.mobile-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(85vw, 340px);
  height: 100%;
  padding: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(-100%);
  transition: transform var(--ease-out);
  overflow-y: auto;
}

.mobile-nav[aria-hidden="false"] .mobile-panel { transform: translateX(0); }

.mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-close {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--red-line);
  border-radius: var(--radius-md);
  background: none;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--ease);
}

.mobile-close:hover { background: var(--red-soft); }

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-links a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: background var(--ease), color var(--ease);
}

.mobile-links a:hover { background: var(--red-soft); color: var(--red); }

.mobile-cta { margin-top: 1.5rem; width: 100%; justify-content: center; }

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 4, 8, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--ease-out);
}

.mobile-nav[aria-hidden="false"] .mobile-backdrop { opacity: 1; }

body.nav-open { overflow: hidden; }

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  padding-top: 1rem;
  padding-bottom: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(193, 18, 47, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 60%, rgba(193, 18, 47, 0.05) 0%, transparent 40%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #16A34A;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.live-dot-sm { width: 6px; height: 6px; }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-copy .eyebrow { margin-bottom: 1.25rem; }

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  color: var(--ink);
  max-width: 12ch;
  margin-bottom: 1.4rem;
  line-height: 0.96;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-copy .lead { margin-bottom: 2rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-proof span {
  position: relative;
}

.hero-proof span + span::before {
  content: '·';
  margin-right: 1.25rem;
  position: absolute;
  left: -1.25rem;
}

/* ─── OFFER CARD ──────────────────────────────────────────────────────── */
.hero-visual {
  display: grid;
  gap: 1rem;
}

.offer-card {
  background: linear-gradient(150deg, var(--red-deep) 0%, var(--red) 60%, var(--red-bright) 100%);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.75rem 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-red);
  transition: transform 220ms ease;
}

.offer-card:hover { transform: translateY(-4px); }

.offer-card-top {
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.4rem;
}

.offer-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.75rem 0.3rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
}

.offer-price {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.offer-price span {
  font-size: 0.38em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  vertical-align: middle;
  margin-left: 0.3rem;
}

.offer-list {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.offer-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.hero-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── STATS BAR ───────────────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--red-line);
  background: var(--white);
  padding: 1.5rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--red-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat {
  padding: 1.1rem 1rem;
  background: var(--white);
  text-align: center;
}

.stat dt {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
}

/* ─── TRUST BAR ───────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  padding: 0 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.marquee-track .marquee-dot {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-play-state: paused; }
}

/* ─── BENEFITS ────────────────────────────────────────────────────────── */
.benefits { background: var(--white); }

.benefits .section-head { margin-bottom: 3rem; }

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

.benefit-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--red-line);
  border-radius: var(--radius-xl);
  background: var(--bg);
  transition: transform var(--ease), box-shadow var(--ease);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius-md);
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.benefit-card p { color: var(--muted); line-height: 1.7; }

.benefit-card-accent {
  background: linear-gradient(150deg, rgba(193, 18, 47, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(193, 18, 47, 0.2);
}

.benefit-card-accent .benefit-num {
  background: var(--red);
  color: #fff;
}

/* ─── ACCOUNTS ────────────────────────────────────────────────────────── */
.accounts { background: var(--bg-2); }

.accounts-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.accounts-copy .section-head { margin-bottom: 0; }
.accounts-copy h2 { margin-bottom: 1rem; }
.accounts-copy p { color: var(--muted); line-height: 1.72; margin-bottom: 1.5rem; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list span {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--red-line);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
}

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

.account-card {
  padding: 1.5rem;
  border: 1px solid var(--red-line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}

.account-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.account-type-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

.dot-green  { background: var(--green); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12); }
.dot-amber  { background: var(--amber); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12); }
.dot-slate  { background: var(--slate); box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.12); }
.dot-blue   { background: var(--blue);  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12); }

.account-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.account-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

/* ─── PROCESS ─────────────────────────────────────────────────────────── */
.process {
  background: var(--white);
  overflow: hidden;
}

.process .section-head { margin-bottom: 3.5rem; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
}

.process-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(193, 18, 47, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-label {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.process-step p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

.process-line {
  flex: 0 0 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--red-glow), var(--red-line));
  border-radius: 2px;
  margin-top: 27px;
  align-self: flex-start;
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────────── */
.testimonials { background: var(--bg-2); }
.testimonials .section-head { margin-bottom: 3rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.testimonial-card {
  padding: 1.75rem;
  border: 1px solid var(--red-line);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.t-featured {
  background: linear-gradient(150deg, rgba(193, 18, 47, 0.06) 0%, var(--white) 100%);
  border-color: rgba(193, 18, 47, 0.2);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.stars::before {
  content: '★★★★★';
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
}

.t-quote {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.t-author strong { display: block; font-size: 0.9rem; }
.t-author small { color: var(--muted); font-size: 0.8rem; }

/* ─── ESTIMATOR ───────────────────────────────────────────────────────── */
.estimator {
  background: linear-gradient(155deg, #1A0408 0%, #2C0A14 50%, #1A0408 100%);
  color: #fff;
}

.estimator-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.estimator-form h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}

.estimator-form > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.est-field { margin-bottom: 1.5rem; }

.est-label {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.est-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.est-option {
  padding: 0.55rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.est-option:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  transform: translateY(-1px);
}

.est-option:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.est-option.is-active {
  background: var(--red);
  border-color: var(--red-bright);
  color: #fff;
  box-shadow: 0 4px 14px rgba(193, 18, 47, 0.45);
}

.estimator-result {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.est-result-eyebrow {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.est-result-range {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  transition: transform var(--ease-spring), color 300ms ease;
}

.est-result-range.updated {
  color: #4ADE80;
}

.est-result-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  min-height: 2.5rem;
}

.est-disclaimer {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.76rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ─── CTA BAND ────────────────────────────────────────────────────────── */
.cta-band {
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    linear-gradient(135deg, var(--red-deep) 0%, var(--red) 55%, var(--red-bright) 100%);
  padding: 4rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 0.6rem;
}

.cta-band-copy p { color: rgba(255, 255, 255, 0.8); max-width: 36rem; }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-inner { max-width: 860px; }
.faq .section-head { margin-bottom: 2.5rem; }

.faq-list { display: grid; gap: 0.75rem; }

.faq-item {
  border: 1px solid var(--red-line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.faq-item[open] {
  border-color: rgba(193, 18, 47, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: color var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--red); }

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--red-soft);
  position: relative;
  transition: background var(--ease), transform var(--ease);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  transition: transform var(--ease);
}

.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }

.faq-item[open] .faq-icon { background: var(--red); }
.faq-item[open] .faq-icon::before { background: #fff; }
.faq-item[open] .faq-icon::after  { background: #fff; transform: scaleY(0); }

.faq-body {
  padding: 0 1.4rem 1.2rem;
  animation: faq-open 280ms ease forwards;
}

.faq-body p { color: var(--muted); line-height: 1.75; }

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--red);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.footer-brand p { margin: 0; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--ease), background var(--ease);
}

.footer-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.15); }

.footer-links a.footer-contact-cta {
  background: #fff;
  color: var(--red);
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
}
.footer-links a.footer-contact-cta:hover { background: #f5f5f5; color: var(--red-bright); }

/* ── Footer social links ────────────────────────────────────────────── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.80);
  transition: background var(--ease), color var(--ease);
}
.footer-social a:hover { background: rgba(255,255,255,0.28); color: #fff; }

/* ── Payment badges ─────────────────────────────────────────────────── */
.payment-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.80);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.payment-badge svg { flex-shrink: 0; }
.payment-badges-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0.1rem;
}

/* ── WhatsApp CTA button (contact page) ─────────────────────────────── */
.wa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
  margin-top: 1.25rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.28);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}
.wa-contact-btn:hover { background: #1ebe5d; box-shadow: 0 8px 28px rgba(37,211,102,0.36); transform: translateY(-2px); }

/* ─── FLOATING WHATSAPP ───────────────────────────────────────────────── */
.floating-wa {
  position: fixed;
  right: 1.25rem;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.8rem;
  padding: 0 1.9rem;
  border-radius: var(--radius-xl);
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  gap: 0.5rem;
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.32);
  transition: transform var(--ease), box-shadow var(--ease);
}

.floating-wa:hover, .floating-wa:focus-visible {
  transform: translateY(-3px);
  background: #1ebe5d;
  box-shadow: 0 28px 54px rgba(37, 211, 102, 0.4);
}

body.has-floating-wa { padding-bottom: 5.5rem; }

/* ─── SCROLL TO TOP ───────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: max(5.5rem, calc(env(safe-area-inset-bottom) + 5.5rem));
  z-index: 80;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--red-line);
  background: var(--white);
  color: var(--red);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ─── COOKIE BANNER ───────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  transition: opacity 260ms ease, transform 260ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner__panel {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  padding: 1rem max(1.5rem, env(safe-area-inset-left));
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: linear-gradient(100deg, var(--red-deep) 0%, var(--red) 55%, var(--red-bright) 100%);
  border-top: 2px solid var(--red-bright);
  box-shadow: 0 -6px 28px rgba(193, 18, 47, 0.28);
}

.cookie-banner__content {
  flex: 1 1 18rem;
  min-width: 0;
}

.cookie-banner__eyebrow {
  margin: 0 0 0.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.cookie-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

.cookie-banner__copy {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-banner__link {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  opacity: 0.9;
}

.cookie-banner__link:hover,
.cookie-banner__link:focus-visible { opacity: 1; }

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner__button {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  outline: none;
}

.cookie-banner__button--accept {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}

.cookie-banner__button--accept:hover,
.cookie-banner__button--accept:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--white);
}

/* ─── WAQ MODAL ───────────────────────────────────────────────────────── */
body.waq-lock { overflow: hidden; }

.waq-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.waq-modal.is-open { opacity: 1; pointer-events: auto; }

.waq-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 4, 8, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.waq-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(235, 49, 79, 0.08), transparent 22%),
    var(--white);
  box-shadow: 0 40px 90px rgba(16, 4, 8, 0.3);
}

.waq-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.waq-panel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--ink);
}

.waq-panel-copy {
  max-width: 44rem;
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.waq-close, .waq-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.waq-close {
  border: 1px solid var(--red-line);
  color: var(--ink);
  background: var(--bg);
  flex-shrink: 0;
}

.waq-close:hover { background: var(--bg-2); }

.waq-submit {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  box-shadow: var(--shadow-red);
}

.waq-submit:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(193, 18, 47, 0.3); }

.waq-form { display: grid; gap: 1rem; }

.waq-field {
  padding: 1rem;
  border: 1px solid var(--red-line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color var(--ease);
}

.waq-field:focus-within { border-color: rgba(193, 18, 47, 0.3); }

.waq-field label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.waq-field input,
.waq-field select,
.waq-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.waq-field textarea { min-height: 130px; resize: vertical; }

.waq-field input:focus,
.waq-field select:focus,
.waq-field textarea:focus {
  outline: none;
  border-color: rgba(193, 18, 47, 0.35);
  box-shadow: 0 0 0 3px rgba(193, 18, 47, 0.08);
}

.waq-field.is-invalid input,
.waq-field.is-invalid select,
.waq-field.is-invalid textarea {
  border-color: rgba(193, 18, 47, 0.5);
  box-shadow: 0 0 0 3px rgba(193, 18, 47, 0.1);
}

.waq-error {
  display: none;
  margin-top: 0.5rem;
  color: var(--red);
  font-size: 0.85rem;
}

.waq-field.is-invalid .waq-error { display: block; }

.waq-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.waq-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ─── LEGAL PAGES ─────────────────────────────────────────────────────── */
.legal-page { padding: 3.5rem 0 4rem; }

.legal-layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.legal-hero-card,
.legal-card {
  position: relative;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(193, 18, 47, 0.07), transparent 28%),
    var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.legal-hero-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 0.75rem;
}

.legal-hero-card p {
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.72;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 700;
}

.legal-section + .legal-section { margin-top: 1.75rem; }

.legal-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.legal-section p,
.legal-section li { color: var(--muted); line-height: 1.78; }
.legal-section p { margin: 0; }
.legal-section p + p, .legal-section ul, .legal-section ol { margin-top: 0.7rem; }
.legal-section ul { padding-left: 1.1rem; list-style: disc; }

.legal-contact { display: grid; gap: 0.4rem; margin-top: 0.5rem; }
.legal-contact a { color: var(--red); font-weight: 700; overflow-wrap: anywhere; }

/* ─── CONTACT PAGE ────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-card {
  display: flex;
  flex-direction: column;
}

.contact-form-card .legal-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-card .contact-form {
  flex: 1;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-info-icon {
  font-size: 1.2rem;
  line-height: 1.5;
  flex-shrink: 0;
  width: 1.6rem;
  text-align: center;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.contact-info-text span { color: var(--muted); line-height: 1.55; }

.contact-info-list a {
  color: var(--red);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-info-list small {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Form */
.contact-form { display: grid; gap: 1.1rem; margin-top: 0.75rem; }

.form-field { display: grid; gap: 0.4rem; }

.form-field label,
.form-fieldset legend {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.form-field label span,
.form-fieldset legend span { color: var(--red); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid rgba(0,0,0,0.13);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 180ms;
  outline: none;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="tel"]:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(193,18,47,0.10);
}

.form-fieldset {
  border: 1.5px solid rgba(0,0,0,0.13);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  background: rgba(193,18,47,0.025);
}

.form-fieldset legend {
  padding: 0 0.35rem;
  margin-left: -0.35rem;
}

.radio-group { display: grid; gap: 0.55rem; margin-top: 0.55rem; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.93rem;
  color: var(--muted);
  transition: color 150ms;
}

.radio-option:hover { color: var(--ink); }

.radio-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.radio-box {
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.20);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 150ms;
}

.radio-box::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transition: opacity 150ms;
}

.radio-option input[type="radio"]:checked ~ .radio-box { border-color: var(--red); }
.radio-option input[type="radio"]:checked ~ .radio-box::after { opacity: 1; }
.radio-option input[type="radio"]:focus-visible ~ .radio-box { outline: 2px solid var(--red); outline-offset: 2px; }


/* Success banner */
.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(34,197,94,0.10);
  border: 1.5px solid rgba(34,197,94,0.30);
  color: #166534;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-submit { width: 100%; justify-content: center; }

/* Map card */
.contact-map-card { padding: 1.25rem; }


/* ─── REVEAL ANIMATION ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
/* ── Header nav: Contact button pill ────────────────────────────────── */
.header-nav a.footer-contact-cta {
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
}
.header-nav a.footer-contact-cta:hover,
.header-nav a.footer-contact-cta:focus-visible {
  background: var(--red-bright);
  color: #fff;
}

/* ── Tablet wide (≤1100px) ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: none; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .offer-card { height: 100%; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .accounts-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .estimator-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Tablet (≤900px) ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-copy h1 { font-size: clamp(2rem, 5vw, 3rem); }

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

  .process-steps { flex-wrap: wrap; justify-content: center; }
  .process-step { flex: 0 0 calc(50% - 2rem); max-width: 220px; }
  .process-line { display: none; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }

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

  .section { padding: 4rem 0; }

  /* Footer stacks on tablet */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
}

/* ── Phone large (≤680px) ───────────────────────────────────────────── */
@media (max-width: 680px) {
  :root { --gap: 0.75rem; }

  .section { padding: 3rem 0; }

  [id] { scroll-margin-top: 5rem; }

  .container { padding-inline: 1rem; }

  .header { padding: 0.6rem 0; }
  .header-row {
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: var(--radius-xl);
    padding: 0.65rem 0.9rem;
  }
  .logo-wordmark { height: 2.1rem; }
  .logo-copy small { display: none; }

  .hero-inner { padding: 2rem 0 1.5rem; }
  .hero-copy h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); line-height: 1.15; }
  .hero-copy .sub { font-size: 1rem; }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .section-head h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .stat dd { font-size: 2rem; }

  .benefits-grid,
  .accounts-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .process-step {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
    padding-inline: 0;
  }

  .faq-inner { max-width: 100%; }
  .faq-q { font-size: 1rem; }

  .cta-band h2 { font-size: 1.5rem; }
  .cta-band p { font-size: 0.95rem; }

  body.has-floating-wa { padding-bottom: 5rem; }
  .floating-wa { left: 0.75rem; width: calc(100vw - 1.5rem); right: auto; border-radius: var(--radius-xl); font-size: 0.88rem; }
  .scroll-top { right: 0.75rem; }

  .legal-hero-card h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .legal-hero-card,
  .legal-card { padding: 1.5rem 1.25rem; }
  .contact-form-card, .contact-info-card, .contact-map-card { padding: 1.25rem; }

  /* WAQ modal */
  .waq-panel { padding: 1.25rem; }
  .waq-panel-header { flex-direction: column; gap: 0.75rem; }
  .waq-actions { flex-direction: column; align-items: stretch; }
  .waq-submit, .waq-close { width: 100%; justify-content: center; }

  /* Footer social wrap */
  .footer-social { flex-wrap: wrap; gap: 0.5rem; }
}

/* ── Phone small (≤420px) ───────────────────────────────────────────── */
@media (max-width: 420px) {
  .hero-copy h1 { font-size: 1.65rem; }
  .section-head h2 { font-size: 1.4rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat dd { font-size: 1.75rem; }
  .logo-wordmark { height: 1.8rem; }
  .offer-card { padding: 1.25rem; }
  .btn-lg { font-size: 0.95rem; padding: 0.85rem 1.4rem; }
  .legal-hero-card,
  .legal-card { padding: 1.25rem 1rem; }
  .est-options { gap: 0.4rem; }
  .est-option { padding: 0.5rem 0.85rem; font-size: 0.85rem; }
}
