/* ===================== TOKENS ===================== */
:root {
  --bg-dark: #0C160B;
  --bg-dark-panel: #141E13;
  --bg-darker: #070D06;
  --bg-light: #FFFFFF;
  --bg-light-soft: #F4F6F3;

  --text-on-dark: #FFFFFF;
  --text-on-dark-soft: #DAE6D4;
  --text-on-dark-body: #BACBB4;
  --text-on-light: #1C261B;
  --text-on-light-body: #5C6A5A;

  --accent: #84FF84;
  --accent-dark-text: #00390A;
  --accent-mint: #0CC66D;
  --accent-deep: #006218;
  --danger: #FFB4AB;
  --whatsapp: #24D45C;

  --border-dark: #3C4B39;
  --border-light: #E2E6E1;

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --container: 1280px;
  --font: "Alexandria", system-ui, sans-serif;
}

/* ===================== RESET / BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-on-dark-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, ul, blockquote, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container { padding-inline: 80px; }
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--accent-dark-text);
  padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

h1 { font-size: 32px; line-height: 1.25; letter-spacing: -0.32px; font-weight: 700; }
h2 { font-size: 28px; line-height: 1.3; letter-spacing: -0.5px; font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }
@media (min-width: 768px) {
  h1 { font-size: 48px; line-height: 1.25; }
  h2 { font-size: 36px; }
}

.accent-text { color: var(--accent); }
.text-accent-dark { color: var(--accent-deep); }
.text-mint { color: var(--accent-mint); }

.eyebrow {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 9999px; margin-bottom: 16px;
}
.eyebrow--accent { color: var(--accent); background: rgba(132,255,132,.1); border: 1px solid rgba(132,255,132,.2); }
.eyebrow--mint { color: var(--accent-mint); background: rgba(12,198,109,.1); border: 1px solid rgba(12,198,109,.2); }

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head p { margin-top: 12px; font-size: 16px; line-height: 1.6; }
@media (min-width: 768px) {
  .section-head { max-width: 680px; text-align: left; margin-bottom: 56px; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 14px 24px; border-radius: var(--radius-md);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn--accent {
  background: var(--accent); color: var(--accent-dark-text);
  box-shadow: 0 0 0 rgba(132,255,132,0);
}
.btn--accent:hover { box-shadow: 0 0 16px rgba(132,255,132,.45); }
.btn--pill { border-radius: 9999px; padding: 10px 22px; font-size: 14px; }
.btn--ghost {
  background: rgba(16,18,19,.7); color: var(--text-on-dark-soft);
  border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(6px);
}
.btn--lg { padding: 18px 28px; font-size: 16px; width: 100%; }
.btn--block { width: 100%; }
@media (min-width: 768px) {
  .btn--lg { width: auto; font-size: 18px; padding: 16px 36px; }
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,22,11,.85); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }
.logo img { height: 32px; width: auto; }
@media (min-width: 768px) { .logo img { height: 40px; } }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--text-on-dark); border-radius: 2px; transition: transform .2s ease, opacity .2s 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); }

.main-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg-dark-panel); border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 20px; display: none; flex-direction: column; gap: 20px;
}
.main-nav.is-open { display: flex; }
.main-nav__links { display: flex; flex-direction: column; gap: 16px; font-size: 15px; font-weight: 600; color: var(--text-on-dark-body); }
.main-nav__cta { align-self: flex-start; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static; display: flex; flex-direction: row; align-items: center;
    background: none; border: none; padding: 0; gap: 40px;
  }
  .main-nav__links { flex-direction: row; gap: 32px; }
}

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; padding-block: 48px 64px; background: var(--bg-dark); }
.hero__bg {
  display: none;
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .18;
}
@media (min-width: 768px) {
  .hero__bg { display: block; }
}
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .hero__bg { background-attachment: fixed; }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,22,11,.6), var(--bg-dark) 85%);
}
.hero__inner { position: relative; z-index: 1; max-width: 800px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(132,255,132,.1); border: 1px solid rgba(132,255,132,.2);
  color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 9999px; margin-bottom: 24px;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 { color: var(--text-on-dark-soft); margin-bottom: 20px; }
.hero__lead { font-size: 16px; line-height: 1.6; margin-bottom: 32px; max-width: 620px; }
.hero__actions { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.hero__bullets {
  display: flex; flex-wrap: wrap; gap: 12px 24px; padding-top: 24px;
  border-top: 1px solid rgba(60,75,57,.4); font-size: 13px;
}
.hero__bullets li { display: flex; align-items: center; gap: 8px; color: var(--text-on-dark-body); }
.hero__bullets svg { color: var(--accent); flex-shrink: 0; }

@media (min-width: 768px) {
  .hero { padding-block: 128px 96px; text-align: center; }
  .hero__inner { max-width: 980px; margin-inline: auto; }
  .hero h1 { color: var(--text-on-dark); }
  .hero__lead { margin-inline: auto; font-size: 18px; }
  .hero__actions { flex-direction: row; justify-content: center; }
  .hero__bullets { justify-content: center; font-size: 14px; flex-wrap: nowrap; white-space: nowrap; }
}

/* ===================== AUTHORITY BAND ===================== */
.authority { background: var(--bg-light-soft); border-top: 1px solid rgba(60,75,57,.2); border-bottom: 1px solid rgba(60,75,57,.2); padding-block: 40px; }
.authority__title { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #5C6A5A; margin-bottom: 28px; }
.authority__stats { display: flex; justify-content: space-between; gap: 8px; }
.stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(60,75,57,.25); }
.stat__number { font-size: 28px; font-weight: 800; color: var(--accent-dark-text); }
.stat__label { font-size: 10px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; color: #3C4B39; }
.desktop-only .stat__number { color: var(--accent-deep); }
@media (min-width: 768px) {
  .authority { padding-block: 56px; border: none; }
  .authority__title { font-size: 14px; margin-bottom: 40px; }
  .authority__stats { gap: 24px; }
  .stat { gap: 8px; }
  .stat + .stat::before { display: none; }
  .stat__number { font-size: 40px; }
  .stat__label { font-size: 15px; text-transform: none; letter-spacing: 0; color: var(--text-on-light); }
}

/* ===================== PROBLEM SECTION ===================== */
.problem { background: var(--bg-light); color: var(--text-on-light); padding-block: 64px; }
.problem .section-head h2 { color: var(--text-on-light); }
.problem .section-head p { color: var(--text-on-light-body); }
.problem__grid { display: flex; flex-direction: column; gap: 16px; }
.problem-card {
  background: var(--bg-light); border: 1px solid var(--border-light); border-left: 4px solid var(--danger);
  border-radius: var(--radius-md); padding: 20px;
}
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 16px;
  background: rgba(255,180,171,.15); color: #C4453A;
}
.problem-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--text-on-light); }
.problem-card p { font-size: 13px; line-height: 1.55; color: var(--text-on-light-body); }
.problem-card[data-mobile="hide"], .benefit[data-mobile="hide"], .step[data-mobile="hide"] { display: none; }

@media (min-width: 768px) {
  .problem { padding-block: 96px; }
  .problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .problem-card { padding: 32px; box-shadow: 0 2px 5px rgba(0,0,0,.05); order: 0 !important; }
  .problem-card h3 { font-size: 20px; }
  .problem-card p { font-size: 15px; line-height: 1.45; }
  .problem-card[data-mobile="hide"] { display: block; }
  .benefit[data-mobile="hide"] { display: flex; }
  .step[data-mobile="hide"] { display: flex; }
}

/* ===================== BENEFITS SECTION ===================== */
.benefits { background: var(--bg-dark-panel); padding-block: 64px; }
.benefits .section-head h2 { color: var(--text-on-dark); }
.benefits .section-head p { color: var(--accent); }
.benefits__grid { display: flex; flex-direction: column; gap: 24px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.icon-circle {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(132,255,132,.13); color: var(--accent);
}
.benefit h3 { font-size: 16px; color: var(--text-on-dark); margin-bottom: 6px; }
.benefit p { font-size: 13px; line-height: 1.5; color: var(--text-on-dark-body); }

@media (min-width: 768px) {
  .benefits { padding-block: 96px; }
  .benefits__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 48px; }
  .icon-circle { width: 48px; height: 48px; }
  .benefit h3 { font-size: 18px; }
  .benefit p { font-size: 14px; }
}

/* ===================== VALUE SECTION (desktop only) ===================== */
.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: block; } }
.mobile-only { display: block; }
@media (min-width: 768px) { .mobile-only { display: none; } }
.break-desktop { display: none; }
@media (min-width: 768px) { .break-desktop { display: inline; } }

.value { background: var(--bg-light-soft); padding-block: 96px; }
.value__card {
  background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.value__left h2 { color: var(--text-on-light); font-size: 32px; margin-bottom: 16px; }
.value__left p { color: var(--text-on-light-body); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.value__list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--text-on-light); }
.value__list svg { color: var(--accent-deep); flex-shrink: 0; }
.value__right { background: var(--bg-light-soft); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.value__bar-labels { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.value__bar-labels span { font-weight: 600; color: var(--text-on-light-body); }
.value__bar-labels strong { color: var(--text-on-light); }
.value__bar-track { height: 8px; border-radius: 9999px; overflow: hidden; }
.value__bar-track--red { background: rgba(255,180,171,.3); }
.value__bar-track--green { background: rgba(0,232,70,.2); }
.value__bar-fill { height: 100%; border-radius: 9999px; }
.value__bar-fill--red { background: var(--danger); }
.value__bar-fill--green { background: var(--accent-deep); }
.value__note { font-size: 13px; text-align: center; color: var(--text-on-light-body); }

/* ===================== HOW IT WORKS ===================== */
.how { padding-block: 64px; }
.step__badge {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%; background: var(--bg-dark-panel);
  border: 2px solid var(--accent); color: var(--accent); font-weight: 800; font-size: 20px;
}

/* Mobile variant: light section, horizontal rows, filled badges */
.how--mobile { background: var(--bg-light-soft); border: 1px solid rgba(60,75,57,.2); color: var(--text-on-light); }
.how--mobile h2 { color: var(--text-on-light); margin-bottom: 12px; }
.how__subtitle { font-size: 14px; line-height: 1.6; color: var(--text-on-light-body); margin-bottom: 36px; }
.how__steps--mobile { display: flex; flex-direction: column; gap: 32px; }
.step--row { display: flex; align-items: flex-start; gap: 16px; }
.step--row h3 { color: var(--text-on-light); font-size: 16px; margin-bottom: 4px; }
.step--row p { font-size: 13px; color: var(--text-on-light-body); }
.step__badge--filled { width: 36px; height: 36px; font-size: 14px; background: var(--accent-dark-text); border: none; color: var(--accent); }

/* Desktop variant: dark section, centered columns, outlined badges */
.how.desktop-only { background: var(--bg-dark); text-align: center; }
.how__title { color: var(--text-on-dark); margin-bottom: 40px; }
.how.desktop-only .how__steps { display: flex; flex-direction: row; align-items: flex-start; gap: 32px; }
.how.desktop-only .step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.how.desktop-only .step h3 { color: var(--text-on-dark); }
.how.desktop-only .step p { font-size: 13px; color: var(--text-on-dark-body); max-width: 260px; }

@media (min-width: 768px) {
  .how.desktop-only { padding-block: 96px; }
}

/* ===================== VIDEO BLOCK ===================== */
.video-block { background: var(--bg-dark); padding-block: 40px 64px; }
.video-block__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.video-embed {
  position: relative; cursor: pointer;
  width: 100%; max-width: 320px; aspect-ratio: 9/16; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.1);
}
.video-embed video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.video-embed__icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.75);
  width: 56px; height: 56px; border-radius: 50%; background: rgba(0,0,0,.55); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; color: #fff;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.video-embed__icon.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.video-embed__icon .icon-unmuted { display: none; }
.video-embed.is-unmuted .icon-muted { display: none; }
.video-embed.is-unmuted .icon-unmuted { display: block; }
.video-embed__hint {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px; background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
  color: #fff; font-size: 12px; font-weight: 500; white-space: nowrap; pointer-events: none;
  opacity: 1; transition: opacity .3s ease;
}
.video-embed__hint::before { content: "🔇"; font-size: 13px; }
.video-embed.is-unmuted .video-embed__hint,
.video-embed__hint.is-hidden { opacity: 0; }
.video-block__caption { max-width: 420px; text-align: center; font-size: 14px; color: var(--text-on-dark-body); }
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.final-cta__error { color: #ff8a8a; font-size: 14px; text-align: center; }
@media (min-width: 768px) {
  .video-block { padding-block: 64px 96px; }
  .video-embed { max-width: 360px; }
}

/* ===================== SEGMENTS ===================== */
.segments { background: var(--bg-light); color: var(--text-on-light); padding-block: 64px; }
.segments .section-head h2 { color: var(--text-on-light); }
.segments .section-head p { color: var(--text-on-light-body); }
.segments__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.segment-card {
  position: relative; aspect-ratio: 167/140; border-radius: var(--radius-md); overflow: hidden;
  display: flex; align-items: flex-end; padding: 16px; background: var(--bg-dark-panel);
}
.segment-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.segment-card::before { content: ""; position: absolute; inset: 0; background: rgba(12,22,11,.55); }
.segment-card h3 { position: relative; color: var(--text-on-dark-soft); font-size: 16px; }

@media (min-width: 768px) {
  .segments { padding-block: 96px; }
  .segments__grid { grid-template-columns: repeat(6, 1fr); gap: 24px; }
  .segment-card { aspect-ratio: auto; height: 280px; padding: 24px; border-radius: var(--radius-lg); }
  .segment-card h3 { color: var(--text-on-dark); font-size: 18px; }
}

/* ===================== WHY CENTROSEG ===================== */
.why { background: var(--bg-dark-panel); padding-block: 96px; }
.why__inner h2 { color: var(--text-on-dark); max-width: 900px; margin-bottom: 56px; }
.why__content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why__image { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 560/360; }
.why__image img { width: 100%; height: 100%; object-fit: cover; }
.why__values { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-item__icon { flex-shrink: 0; color: var(--accent); }
.why-item h3 { color: var(--text-on-dark); font-size: 16px; margin-bottom: 4px; }
.why-item p { color: var(--text-on-dark-body); font-size: 14px; line-height: 1.5; }

/* ===================== TESTIMONIALS & FAQ ===================== */
.testimonials-faq { background: var(--bg-light-soft); color: var(--text-on-light); padding-block: 64px; }
.testimonials-faq > .container > h2 { color: var(--text-on-light); margin-bottom: 24px; }
.testimonials { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.testimonial { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; }
.testimonial p { font-size: 15px; line-height: 1.6; color: var(--text-on-light); margin-bottom: 20px; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent-deep); color: #fff;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testimonial cite { display: block; font-style: normal; font-weight: 700; font-size: 14px; }
.testimonial small { display: block; font-size: 12px; color: var(--text-on-light-body); }

.google-reviews-link {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px;
  color: var(--accent-mint); background: rgba(255,255,255,.5); border: 1px solid rgba(12,198,109,.5);
  border-radius: var(--radius-sm); padding: 12px 20px; margin-bottom: 48px;
}

.faq-title { margin-bottom: 24px; color: var(--text-on-light); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 16px; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--text-on-light); cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__chevron { flex-shrink: 0; transition: transform .2s ease; color: var(--text-on-light-body); }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--text-on-light-body); }

@media (min-width: 768px) {
  .testimonials-faq { padding-block: 96px; }
  .testimonials { flex-direction: row; }
  .testimonial { flex: 1; padding: 32px; }
  .faq-item { padding: 24px; }
  .faq-item summary { font-size: 16px; }
}

/* ===================== FINAL CTA ===================== */
.final-cta { background: var(--bg-dark); padding-block: 64px; }
.final-cta__inner { display: flex; flex-direction: column; gap: 40px; }
.final-cta__text h2 { color: var(--text-on-dark); font-size: 26px; margin-bottom: 16px; }
.final-cta__text p { color: var(--text-on-dark-body); font-size: 15px; line-height: 1.6; }
.final-cta__form {
  background: var(--bg-dark-panel); border: 1px solid rgba(132,255,132,.2); border-radius: var(--radius-xl);
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-on-dark-body); }
.field input {
  background: rgba(16,18,19,.7); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md);
  padding: 14px 16px; color: var(--text-on-dark); outline-offset: 2px;
}
.field input::placeholder { color: var(--text-on-dark-body); }
.field input:focus-visible { outline: 2px solid var(--accent); }
.final-cta__success { color: var(--accent); font-size: 14px; text-align: center; font-weight: 600; }

@media (min-width: 768px) {
  .final-cta { padding-block: 96px; }
  .final-cta__inner { flex-direction: row; gap: 64px; align-items: center; }
  .final-cta__text { flex: 1; }
  .final-cta__text h2 { font-size: 40px; }
  .final-cta__text p { font-size: 18px; }
  .final-cta__form { flex: 1; padding: 40px; }
}

/* ===================== FOOTER ===================== */
.site-footer { background: var(--bg-darker); border-top: 1px solid rgba(255,255,255,.1); padding-block: 48px 24px; }
.site-footer__grid { display: flex; flex-direction: column; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: var(--text-on-dark-body); max-width: 320px; }
.footer-col h3 { color: var(--accent); font-size: 14px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13px; color: var(--text-on-dark-body); }
.footer-col p { font-size: 13px; color: var(--text-on-dark-body); margin-bottom: 12px; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--text-on-dark); font-weight: 600; font-size: 15px; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
.site-footer__bottom p { font-size: 12px; color: var(--text-on-dark-body); }

@media (min-width: 768px) {
  .site-footer { padding-block: 80px 48px; }
  .site-footer__grid { flex-direction: row; justify-content: space-between; gap: 24px; }
}

/* ===================== SCROLL REVEAL ===================== */
[data-animate] {
  opacity: 0; transform: translateY(28px) scale(.98);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
}
[data-animate].is-visible { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
@media (min-width: 768px) {
  .whatsapp-fab { width: 64px; height: 64px; right: 32px; bottom: 32px; }
}
