/* ============================================================
   Attics Express — Rodent Proofing Landing Page
   Brand: Teal #005f74 | Dark Teal #081a24 | Dim #7bd2f0
   Action color: --primary (teal) — ONE role, no exceptions
   Fonts: Montserrat (headings) + Inter (body)
   ============================================================ */

:root {
  --primary:           #005f74;
  --primary-container: #007994;
  --primary-dim:       #7bd2f0;
  --teal-dark:         #081a24;
  --surface:           #f9f9f9;
  --surface-low:       #eaf0f7;
  --on-surface:        #1a1c1c;
  --on-surface-var:    #3f484c;
  --outline:           #6f797d;
  --white:             #ffffff;
  --border:            #dde5ea;
  --shadow-card:       0 4px 24px rgba(0, 95, 116, 0.10);
  --shadow-form:       0 8px 40px rgba(0, 95, 116, 0.16);
  --radius-sm:         8px;
  --radius:            14px;
  --radius-lg:         24px;
  --max-width:         1140px;
  --header-h:          7rem; /* 112px — igual al h-28 del nav de blown-in */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--on-surface-var);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--on-surface);
}

/* ── Eyebrow system ───────────────────────────────────────── */

.eyebrow {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary-container);
  margin-bottom: 10px;
}

.eyebrow--light {
  color: var(--primary-dim);
}

.section-underline {
  display: block;
  width: 44px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-transform: uppercase;
  text-align: center;
  min-height: 48px;
}

.btn-primary:hover  { background: var(--primary-container); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary--full {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-transform: uppercase;
  min-height: 48px;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── Header — glassmorphism EXACTO de blown-in (ae-nav-glass):
   rgba(0,0,0,0.35) + blur 28 + borde blanco 0.22. El glass NUNCA se
   opaca al scrollear (blown-in no tiene estado scrolled) — aprobado
   por Alfonso 2026-06-11 como "el tono y efecto correcto". ── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: height 0.3s ease, box-shadow 0.2s;
  height: var(--header-h);
}

/* Shrink al scrollear — medidas exactas de blown-in (nav-scrolled: 5.5rem / logo 60px).
   El glass NO cambia, solo el tamaño. */
.header--scrolled {
  height: 5.5rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.header--scrolled .header__logo img { height: 60px; }

.header .container { height: 100%; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 80px; /* igual al ae-nav-logo de blown-in */
  width: auto;
  transition: height 0.3s ease;
}

/* Pill teléfono — estilo glass-cta de blown-in (el CTA dominante del nav):
   teal glass + borde aqua + glow al hover */
.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 121, 148, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 185, 214, 0.55);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  transition: background 0.15s, box-shadow 0.15s;
  min-height: 48px;
}

.header__phone:hover {
  background: rgba(0, 121, 148, 0.7);
  box-shadow: 0 0 22px rgba(0, 185, 214, 0.4);
}

.header__phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  background: var(--white);
  padding: 56px 0 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: stretch;
}

.hero__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero__headline {
  font-size: clamp(34px, 4.6vw, 54px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__headline em {
  font-style: normal;
  font-size: 0.76em;
  display: block;
  color: var(--primary);
  line-height: 1.2;
  margin-top: 4px;
}

.hero__sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-container);
  margin-bottom: 16px;
  line-height: 1.45;
}

.hero__body {
  font-size: 1.02rem;
  color: var(--on-surface-var);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 520px;
}

.hero__body strong { color: var(--on-surface); font-weight: 700; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--surface-low);
  color: var(--on-surface);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0, 121, 148, 0.2);
  white-space: nowrap;
}

.trust-chip svg {
  width: 15px;
  height: 15px;
  color: var(--primary-container);
  flex-shrink: 0;
}

.trust-chip--star {
  background: #e8f6fb;
  border-color: rgba(123, 210, 240, 0.4);
}

.trust-chip--star svg { color: var(--primary); }

a.trust-chip { transition: opacity 0.15s; }
a.trust-chip:hover { opacity: 0.8; }

.hero__photo-wrap {
  position: relative;
  margin-top: 8px;
  flex: 1;
  min-height: 280px;
  overflow: hidden; /* clip border-radius on hero photo (object-fit:cover) */
}

.hero__photo {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Quote Card (Hero Form — sticky) ─────────────────────── */

.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-form);
  padding: 32px 28px 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border: 1px solid var(--border);
}

.quote-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.quote-card__title {
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 22px;
  line-height: 1.25;
}

/* ── Form Styles ──────────────────────────────────────────── */

.quote-form { display: flex; flex-direction: column; gap: 12px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group { display: flex; flex-direction: column; gap: 4px; }

.form-group label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--on-surface);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }

.form-group textarea { min-height: 80px; resize: vertical; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bbbf; }

.form-submit {
  margin-top: 4px;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 52px;
  justify-content: center;
}

.quote-card__or {
  text-align: center;
  font-size: 0.76rem;
  color: var(--outline);
  margin-top: 14px;
}

.quote-card__phone-link {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 6px;
}

.quote-card__phone-link:hover { color: var(--primary-container); }

.quote-card__disclaimer {
  font-size: 0.68rem;
  color: var(--outline);
  line-height: 1.4;
  margin-top: 10px;
  text-align: center;
}

/* ── Form success state ───────────────────────────────────── */

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success__title {
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 8px;
}

.form-success__body {
  font-size: 0.9rem;
  color: var(--on-surface-var);
  line-height: 1.6;
}

.form-success__body a {
  color: var(--primary);
  font-weight: 700;
}

/* ── Proof Bar ────────────────────────────────────────────── */

.proof-bar {
  background: var(--teal-dark);
  padding: 22px 0;
  margin-top: 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 28px;
}

.proof-bar__item + .proof-bar__item {
  border-left: 1px solid rgba(255,255,255,0.18);
}

.proof-bar__item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-dim);
  flex-shrink: 0;
}

.proof-bar__item strong { color: var(--white); }

.proof-bar__item--link { transition: opacity 0.15s; }
.proof-bar__item--link:hover { opacity: 0.8; }

/* ── Agents Section ───────────────────────────────────────── */

.agents {
  background: var(--white);
  padding: 112px 0;
}

.agents__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.agents__photo-wrap { position: relative; }

.agents__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.agents__headline {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
  margin-bottom: 20px;
}

.agents__body {
  font-size: 0.97rem;
  color: var(--on-surface-var);
  line-height: 1.7;
  margin-bottom: 14px;
}

.agents__body strong { color: var(--on-surface); font-weight: 700; }

.agents__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.agents__hours {
  font-size: 0.82rem;
  color: var(--outline);
}

/* ── Pillars ──────────────────────────────────────────────── */

.pillars {
  background: var(--surface-low);
  padding: 72px 0;
}

.pillars__header {
  text-align: center;
  margin-bottom: 48px;
}

.pillars__headline {
  font-size: 1.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 95, 116, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 95, 116, 0.16);
}

.pillar__icon {
  width: 64px;
  height: 64px;
  background: var(--surface-low);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pillar__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.pillar__title {
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 10px;
  line-height: 1.25;
}

.pillar__desc {
  font-size: 0.88rem;
  color: var(--on-surface-var);
  line-height: 1.6;
}

/* ── What Is ──────────────────────────────────────────────── */

.what-is {
  background: var(--white);
  padding: 112px 0;
}

.what-is__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
}

.what-is__headline {
  font-size: 1.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
  margin-bottom: 20px;
}

.what-is__body {
  font-size: 0.97rem;
  color: var(--on-surface-var);
  line-height: 1.75;
  margin-bottom: 16px;
}

.what-is__body strong { color: var(--on-surface); font-weight: 700; }

.what-is__photo-wrap { position: relative; }

.what-is__photo {
  width: calc(100% - 40px);
  display: block;
  margin: 32px auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.what-is__deco {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary-dim);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

/* ── Steps ────────────────────────────────────────────────── */

.steps {
  background: var(--surface);
  padding: 80px 0;
  overflow: hidden;
}

.steps__header {
  text-align: center;
  margin-bottom: 48px;
}

.steps__headline {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.steps__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 20px;
  position: relative;
}

.steps__visual-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 85%;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50% 50% 0 0;
  z-index: 0;
}

.steps__photo {
  position: relative;
  z-index: 1;
  max-height: 460px;
  object-fit: contain;
}

.steps__cards { display: flex; flex-direction: column; gap: 16px; }

.step-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-card);
}

.step-card__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
}

.step-card__title {
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 4px;
}

.step-card__desc {
  font-size: 0.87rem;
  color: var(--on-surface-var);
  line-height: 1.55;
}

.step-card__desc strong { color: var(--on-surface); }

.steps__cta {
  margin-top: 8px;
  display: block;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
  min-height: 52px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.steps__cta:hover { background: var(--primary-container); }

.steps__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Reviews ──────────────────────────────────────────────── */

.reviews {
  background: var(--white);
  padding: 80px 0;
}

.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews__headline {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 6px;
}

.reviews__sub {
  font-size: 0.95rem;
  color: var(--primary-container);
  font-weight: 600;
}

.reviews__underline {
  width: 44px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  align-items: start;
}

.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
}

.review-card:nth-child(1) { margin-top: 12px; }
.review-card:nth-child(2) {
  border-top-color: var(--primary);
  margin-top: -8px;
  box-shadow: var(--shadow-form);
  background: var(--white);
}
.review-card:nth-child(3) { margin-top: 12px; }

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-card__stars svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--on-surface-var);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}

.review-card__author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--on-surface);
}

.review-card__source {
  font-size: 0.75rem;
  color: var(--outline);
  margin-top: 2px;
}

.reviews__cta { text-align: center; }

/* ── FAQ ──────────────────────────────────────────────────── */

.faq {
  background: var(--surface-low);
  padding: 112px 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.faq__header { margin-bottom: 32px; }

.faq__headline {
  font-size: 1.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
  margin-bottom: 8px;
}

.faq__list { display: flex; flex-direction: column; gap: 0; }

.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--on-surface);
  transition: background 0.15s;
}

.faq__question:hover { background: var(--surface-low); }

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.faq__icon svg {
  width: 16px;
  height: 16px;
  color: var(--outline);
  transition: color 0.15s;
}

.faq__item--open .faq__icon    { transform: rotate(180deg); }
.faq__item--open .faq__icon svg { color: var(--primary); }
.faq__item--open .faq__question {
  color: var(--primary);
  background: var(--surface-low);
}

.faq__answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--on-surface-var);
  line-height: 1.65;
  border-top: 1px solid var(--border);
}

.faq__answer strong { color: var(--on-surface); font-weight: 700; }
.faq__item--open .faq__answer { display: block; }

.faq__photo-wrap {
  position: relative;
  padding-top: 16px;
}

.faq__deco {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  background: var(--primary-dim);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.faq__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

/* ── Final CTA Slab ───────────────────────────────────────── */

.cta-final {
  background: var(--teal-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: var(--primary-container);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: var(--primary-dim);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-final__eyebrow {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary-dim);
  margin-bottom: 12px;
}

.cta-final__headline {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-final__body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-final__body strong { color: var(--white); }

.cta-final__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dim);
  transition: color 0.15s;
}

.cta-final__phone:hover { color: var(--white); }

.cta-final__phone svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.cta-final__phone-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-top: 4px;
}

.cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.3);
}

.cta-card__title {
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 20px;
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 72px 0 56px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer__logo img { height: 38px; width: auto; }

.footer__tagline {
  font-size: 0.82rem;
  color: var(--outline);
  line-height: 1.6;
  margin-top: 12px;
}

.footer__office-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-container);
  margin-bottom: 10px;
}

.footer__address {
  font-size: 0.85rem;
  color: var(--on-surface-var);
  line-height: 1.7;
  font-style: normal;
}

.footer__address a {
  color: var(--on-surface);
  font-weight: 600;
}

.footer__address a:hover { color: var(--primary); }

.footer__legal { font-size: 0.78rem; color: var(--outline); }

.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: var(--outline);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.footer__legal-btn:hover { color: var(--primary); }
.footer__legal-p2 { margin-top: 6px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 0.78rem;
  color: var(--outline);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__qa-link {
  color: var(--primary);
  font-weight: 600;
}

/* ── Mobile Sticky Phone Bar ──────────────────────────────── */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--primary);
  padding: 0;
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-cta-bar svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Legal Modals ─────────────────────────────────────────── */

.rp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 26, 36, 0.78);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.rp-modal-card {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.rp-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--outline);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  z-index: 1;
}

.rp-modal-close:hover { color: var(--on-surface); background: var(--surface); }

.rp-modal-scroll {
  overflow-y: auto;
  overflow-x: hidden; /* prevent horizontal scroll from long legal text on narrow viewports */
  padding: 40px 40px 36px;
}

.rp-modal-content        { display: none; }
.rp-modal-content--active { display: block; }

.rp-modal-heading {
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--on-surface);
  margin: 0 0 8px;
}

.rp-modal-date {
  font-size: 13px;
  color: var(--outline);
  margin: 0 0 24px;
}

.rp-modal-content h4 {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  margin: 22px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rp-modal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-surface-var);
  margin: 0 0 12px;
}

/* ── Consent Banner ───────────────────────────────────────── */

.rp-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--teal-dark);
  color: var(--white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  border-top: 3px solid var(--primary-container);
}

.rp-consent__text {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.rp-consent__link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  color: var(--primary-dim);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rp-consent__close {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
  font-family: 'Montserrat', sans-serif;
  min-height: 44px;
}

.rp-consent__close:hover { background: var(--primary-container); }

/* ── Structural BEM bindings ──────────────────────────────────
   These elements lay out via their parent grid/flow; the explicit
   rules satisfy §2 (every class has a CSS rule) and reserve a hook
   for per-column tweaks without inline styles. */

.hero__form-col {
  display: flex;
  flex-direction: column;
}

.agents__content {
  display: flex;
  flex-direction: column;
}

.what-is__content {
  display: flex;
  flex-direction: column;
}

.faq__content-col {
  min-width: 0; /* allow grid column to shrink without overflow */
}

.cta-final__content {
  display: flex;
  flex-direction: column;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero__inner,
  .agents__inner,
  .what-is__inner,
  .steps__grid,
  .faq__inner,
  .cta-final__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__headline { font-size: 2.4rem; }

  .quote-card {
    position: static;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero__photo { border-radius: var(--radius-lg); }

  .pillars__grid { grid-template-columns: 1fr; gap: 16px; }

  .reviews__grid { grid-template-columns: 1fr; }
  .review-card:nth-child(1),
  .review-card:nth-child(2),
  .review-card:nth-child(3) { margin-top: 0; }
  .review-card:nth-child(2) { box-shadow: var(--shadow-card); }

  .agents__photo-wrap { order: -1; }
  .steps__visual  { display: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 60px; }

  /* Consent banner lifts above the fixed mobile bar so they don't overlap */
  .rp-consent { bottom: 60px; }

  .proof-bar__inner { flex-direction: column; gap: 4px; }
  .proof-bar__item + .proof-bar__item {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
}

@media (max-width: 600px) {
  :root { --header-h: 80px; }
  .header__logo img { height: 56px; }
  .header--scrolled { height: 64px; }
  .header--scrolled .header__logo img { height: 44px; }
  .header__phone { padding: 12px 16px; }

  .hero { padding-top: 32px; }
  .hero__headline { font-size: 1.9rem; }

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

  .agents__cta { flex-direction: column; align-items: flex-start; }

  .cta-final__phone { font-size: 1.35rem; }

  .faq__photo-wrap { display: none; }

  .header__phone-text { display: none; }

  .pillars__headline,
  .reviews__headline,
  .steps__headline,
  .faq__headline,
  .what-is__headline,
  .agents__headline,
  .cta-final__headline {
    font-size: 1.55rem;
  }

  .rp-consent { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rp-consent__close { align-self: stretch; text-align: center; }
  .rp-modal-scroll { padding: 32px 24px 28px; }
}
