/* ===== Tokens ===== */
:root {
  --bg: #0A0A0A;
  --text-heading: #DAE6D4;
  --text-body: #BACBB4;
  --accent: #84FF84;
  --accent-text: #00390A;
  --whatsapp: #24D45C;

  --font-heading: 'Alexandria', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --container-w: 1280px;
  --gutter: 80px;
  --gutter-mobile: 20px;

  --header-h: 80px;
  --header-h-mobile: 64px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure { margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-text);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ===== Layout utilities ===== */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 768px) {
  .container { padding-inline: var(--gutter-mobile); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 12px;
  white-space: nowrap;
  text-align: center;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-text);
}
.btn--sm {
  font-size: 16px;
  padding: 8px 24px;
}
.btn--lg {
  font-size: 16px;
  text-transform: uppercase;
  padding: 20px 40px;
  filter: drop-shadow(0 0 10px rgba(132, 255, 132, 0.3));
}
.btn--block { width: 100%; white-space: normal; }
.btn--case-normal { text-transform: none; }

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: 9999px;
  background: rgba(132, 255, 132, 0.1);
  border: 1px solid rgba(132, 255, 132, 0.2);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--accent);
}
.badge--muted {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--accent);
  flex-shrink: 0;
}

.accent { color: var(--accent); font-weight: 400; }

/* ===== Scroll reveal (fade-up) ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(16, 18, 19, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo-img { height: 32px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a:not(.btn) {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-body);
}
.header__nav a:not(.btn):hover { color: var(--text-heading); }

.header__menu-toggle { display: none; padding: 8px; }

@media (max-width: 768px) {
  .header__inner { height: var(--header-h-mobile); }
  .header__logo-img { height: 26px; }
  .header__menu-toggle { display: block; }
  .header__nav {
    position: absolute;
    top: var(--header-h-mobile);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(16, 18, 19, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px var(--gutter-mobile) 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .header__nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .header__nav .btn { margin-top: 16px; padding: 14px 24px; }
  .header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* ===== Hero ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-heading); }

.hero { position: relative; overflow: hidden; }
.hero--mobile { display: none; }

.hero--desktop {
  padding-block: 96px;
  background:
    linear-gradient(0deg, rgb(12, 22, 11) 22.5%, rgba(12, 22, 11, 0) 61.25%, rgba(12, 22, 11, 0) 100%),
    linear-gradient(90deg, rgb(2, 4, 5) 0%, rgb(2, 4, 5) 100%);
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  max-width: 598px;
}
.hero__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.hero__description {
  font-size: 18px;
  line-height: 1.55;
  max-width: 576px;
}
.hero__media {
  position: relative;
  flex-shrink: 0;
  width: 610px;
  height: 610px;
  border-radius: 10px;
  overflow: hidden;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(184.688deg, rgba(12, 22, 11, 0) 46.21%, rgb(12, 22, 11) 92.731%);
  pointer-events: none;
}
.hero__media::after {
  content: "";
  position: absolute;
  top: -26px;
  right: -32px;
  width: 256px;
  height: 256px;
  border-radius: 9999px;
  background: rgba(132, 255, 132, 0.1);
  filter: blur(50px);
  pointer-events: none;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1100px) {
  .hero__inner { flex-wrap: wrap; }
  .hero__media { width: 100%; height: auto; aspect-ratio: 1 / 1; max-width: 480px; margin-inline: auto; }
}

/* ===== Authority ===== */
.authority--mobile { display: none; }

.authority--desktop {
  background: #141e13;
  border-top: 1px solid #3c4b39;
  border-bottom: 1px solid #3c4b39;
  padding-block: 49px;
}
.authority__row {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.authority__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.authority__value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--accent);
}
.authority__label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-body);
}

@media (max-width: 768px) {
  .authority--desktop { display: none; }
  .authority--mobile {
    display: block;
    background: #071007;
    padding-block: 64px;
  }
  .authority__mobile-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .authority__mobile-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  .authority__mobile-title .accent { font-weight: 400; }
  .authority__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .authority-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 25px;
    border-radius: 16px;
    background: rgba(16, 18, 19, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .authority-card--featured {
    background: rgba(132, 255, 132, 0.05);
    border-color: rgba(132, 255, 132, 0.3);
  }
  .authority-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(132, 255, 132, 0.2);
  }
  .authority-card h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    padding-top: 8px;
  }
  .authority-card p {
    font-size: 16px;
    line-height: 24px;
  }
}

.anchor-target {
  display: block;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
@media (max-width: 768px) {
  .anchor-target { scroll-margin-top: calc(var(--header-h-mobile) + 16px); }
}

/* ===== Problem Section ===== */
.problem--mobile { display: none; }

.problem--desktop { background: #0c160b; padding-block: 96px; }
.problem__inner { display: flex; flex-direction: column; gap: 64px; }
.problem__intro { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.problem__title { font-weight: 700; font-size: 32px; line-height: 40px; }
.problem__subtitle { font-size: 16px; line-height: 24px; }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.problem-card {
  display: flex;
  flex-direction: column;
  padding: 33px;
  border-radius: 24px;
  background: rgba(16, 18, 19, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.problem-card--wide { grid-column: span 2; }
.problem-card__icon { margin-bottom: 16px; }
.problem-card h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
}
.problem-card p { font-size: 16px; line-height: 24px; }

@media (max-width: 1100px) {
  .problem__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .problem-card--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .problem--desktop { display: none; }
  .problem--mobile {
    display: block;
    background: #141e13;
    padding-block: 64px;
  }
  .problem--mobile .problem__title--mobile {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
  .problem__title--mobile .accent { font-weight: 400; }
  .feature-cards { display: flex; flex-direction: column; gap: 16px; }
  .feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 33px;
    border-radius: 24px;
    background: rgba(16, 18, 19, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .feature-card--featured {
    background:
      linear-gradient(141.34deg, rgba(132, 255, 132, 0.1) 0%, rgba(132, 255, 132, 0) 100%),
      rgba(16, 18, 19, 0.7);
  }
  .feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: rgba(132, 255, 132, 0.2);
    margin-bottom: 16px;
  }
  .feature-card h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .feature-card p { font-size: 16px; line-height: 24px; }
}

/* ===== Economy Section ===== */
.economy { background: #071007; padding-block: 96px; }
.economy__inner { display: flex; flex-direction: column; gap: 24px; }
.economy__title { font-weight: 700; font-size: 32px; line-height: 40px; }
.economy__subtitle { font-size: 18px; line-height: 28px; }

.economy__highlight {
  background: rgba(132, 255, 132, 0.1);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.economy__highlight h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.014em;
  color: var(--accent);
}
.economy__highlight p { font-size: 16px; line-height: 24px; color: var(--text-heading); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.case-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(16, 18, 19, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.case-card__top { display: flex; flex-direction: column; gap: 8px; }
.case-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 18px; line-height: 24px; color: var(--text-heading); }
.case-card__tag { font-weight: 700; font-size: 14px; line-height: 20px; color: var(--accent); }
.case-card__quote { font-size: 14px; line-height: 22px; }
.case-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.case-card__type { font-size: 12px; }
.case-card__badge {
  background: rgba(132, 255, 132, 0.05);
  border: 1px solid rgba(132, 255, 132, 0.2);
  border-radius: 9999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* ===== Video demo ===== */
.video-demo { background: #071007; padding-block: 96px; }
.video-demo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.video-demo__intro { max-width: 640px; text-align: center; display: flex; flex-direction: column; gap: 16px; }
.video-demo__title { font-weight: 700; font-size: 32px; line-height: 40px; }
.video-demo__title .accent { font-weight: 400; }
.video-demo__desc { font-size: 18px; line-height: 28px; }

.video-demo__player {
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}
.video-demo__player video { display: block; width: 100%; height: auto; background: #000; }

.video-demo__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-demo__icon.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.video-demo__icon .icon-unmuted { display: none; }
.video-demo__player.is-unmuted .icon-muted { display: none; }
.video-demo__player.is-unmuted .icon-unmuted { display: block; }

.video-demo__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-demo__hint::before { content: "🔇"; font-size: 13px; }
.video-demo__player.is-unmuted .video-demo__hint,
.video-demo__hint.is-hidden { opacity: 0; }

.video-demo__cta { width: 100%; max-width: 360px; }

/* ===== Authority Section (imagem) ===== */
.authority-image { background: #182217; padding-block: 96px; }
.authority-image__inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.authority-image__media {
  flex: 1;
  min-width: 0;
}
.authority-image__media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 514 / 492;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.authority-image__content { flex: 1; min-width: 0; }
.authority-image__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 32px;
}
.authority-feature-list { display: flex; flex-direction: column; gap: 32px; }
.authority-feature { display: flex; gap: 24px; align-items: flex-start; }
.authority-feature__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(132, 255, 132, 0.2);
}
.authority-feature h3 { font-weight: 600; font-size: 24px; line-height: 32px; margin-bottom: 8px; }
.authority-feature p { font-size: 16px; line-height: 24px; }

@media (max-width: 900px) {
  .authority-image__inner { flex-direction: column; }
  .authority-image__media img { max-width: 100%; }
}

/* ===== Clients ===== */
.clients {
  border-top: 1px solid #3c4b39;
  border-bottom: 1px solid #3c4b39;
  padding-block: 97px;
}
.clients__inner { display: flex; flex-direction: column; align-items: center; gap: 48px; }
.clients__eyebrow {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  text-align: center;
}
.clients__row {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}
.client { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.client__logo {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 8px;
  background: rgba(217, 217, 217, 0.5);
  overflow: hidden;
}
.client__logo img { width: 100%; height: 100%; object-fit: cover; }
.client__name {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.05em;
  color: var(--text-heading);
}
.client__name--italic { font-style: italic; }

@media (max-width: 600px) {
  .client__logo { width: 120px; height: 120px; }
}

/* ===== Timeline ===== */
.timeline { background: #0c160b; padding-block: 96px; }
.timeline__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 64px;
}
.timeline__steps { display: flex; gap: 32px; justify-content: center; }
.timeline-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.timeline-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  border: 2px solid var(--accent);
  background: rgba(132, 255, 132, 0.1);
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.timeline-step h3 { font-weight: 600; font-size: 16px; text-align: center; }
.timeline-step p { font-weight: 500; font-size: 14px; letter-spacing: 0.01em; text-align: center; }

@media (max-width: 768px) {
  .timeline__steps { flex-wrap: wrap; row-gap: 40px; }
  .timeline-step { flex: 1 1 calc(50% - 16px); }
}

/* ===== FAQ ===== */
.faq { background: #141e13; padding-block: 96px; }
.faq__inner { max-width: 768px; margin-inline: auto; }
.faq__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 48px;
}
.faq__list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: rgba(16, 18, 19, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 25px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-heading);
  text-align: left;
}
.faq-item__chevron { flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item__question[aria-expanded="true"] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer-inner p { padding: 0 25px 25px; font-size: 16px; line-height: 24px; }
.faq-item__question[aria-expanded="true"] ~ .faq-item__answer { grid-template-rows: 1fr; }

/* ===== Final CTA ===== */
.final-cta { background: #0c160b; padding-block: 96px; }

.final-cta-card--desktop {
  display: flex;
  align-items: stretch;
  border-radius: 48px;
  background: rgba(45, 55, 43, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}
.final-cta-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.final-cta-card__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.final-cta-card__desc { font-size: 18px; line-height: 28px; margin-bottom: 40px; }
.final-cta-card__trust { display: flex; align-items: center; gap: 16px; }
.final-cta-card__trust span { color: var(--accent); font-family: var(--font-heading); font-size: 16px; }

.final-cta-card__panel {
  flex: 1;
  min-width: 0;
  background: #232d21;
  padding: 80px;
  display: flex;
  align-items: center;
}

.final-cta-form { width: 100%; display: flex; flex-direction: column; gap: 24px; }
.final-cta-form__row { display: flex; gap: 24px; }
.final-cta-form input,
.final-cta-form textarea {
  width: 100%;
  background: #182217;
  border: 1px solid #3c4b39;
  border-radius: 12px;
  padding: 18px 17px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-heading);
}
.final-cta-form input::placeholder,
.final-cta-form textarea::placeholder { color: #6b7280; }
.final-cta-form textarea { resize: vertical; min-height: 108px; }
.final-cta-form__success { color: var(--text-heading); font-size: 18px; text-align: center; }
.final-cta-form__error { color: #ff8484; font-size: 14px; text-align: center; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.final-cta-ctaonly { width: 100%; display: flex; flex-direction: column; gap: 24px; }
.final-cta-ctaonly__microcopy { font-size: 15px; text-align: center; color: rgba(255, 255, 255, 0.55); }

.btn--whatsapp-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(107, 222, 115, 0.6);
  color: #6bde73;
  font-weight: 400;
  text-transform: none;
  padding: 20px 24px;
}

/* toggle form vs cta-only by data-cta-variant flag */
.final-cta[data-cta-variant="a"] [data-variant="b"] { display: none; }
.final-cta[data-cta-variant="b"] [data-variant="a"] { display: none; }

.final-cta-card--mobile { display: none; }

@media (max-width: 1024px) {
  .final-cta-card--desktop { flex-direction: column; border-radius: 32px; }
  .final-cta-card__info,
  .final-cta-card__panel { padding: 48px; }
}

@media (max-width: 768px) {
  .final-cta-card--desktop { display: none; }
  .final-cta-card--mobile {
    display: block;
    position: relative;
    background: rgba(16, 18, 19, 0.7);
    border: 1px solid rgba(132, 255, 132, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 33px;
    overflow: hidden;
  }
  .final-cta-card--mobile::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 256px;
    height: 256px;
    border-radius: 9999px;
    background: rgba(132, 255, 132, 0.1);
    filter: blur(32px);
  }
  .final-cta-card__title--mobile { font-size: 32px; line-height: 40px; margin-bottom: 8px; }
  .final-cta-card__desc--mobile { font-size: 16px; line-height: 24px; margin-bottom: 0; }
  .final-cta-form--mobile { position: relative; gap: 16px; padding-top: 16px; }
  .final-cta-form--mobile input { background: #232d21; border: none; }
  .final-cta-ctaonly--mobile { position: relative; padding-top: 16px; }
}

/* ===== Footer ===== */
.site-footer { background: #0c160b; border-top: 1px solid #3c4b39; padding-top: 97px; padding-bottom: 96px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 64px; }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer__brand img { height: 32px; width: auto; align-self: flex-start; }
.footer__brand p { max-width: 320px; font-family: var(--font-heading); font-weight: 500; font-size: 14px; letter-spacing: 0.01em; }

.footer__columns { display: flex; gap: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h3 {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__col a { font-family: var(--font-heading); font-weight: 500; font-size: 14px; letter-spacing: 0.01em; }
.footer__col a:hover { color: var(--text-heading); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 33px;
  border-top: 1px solid rgba(60, 75, 57, 0.3);
}
.footer__bottom p { font-family: var(--font-heading); font-weight: 500; font-size: 14px; }
.footer__social { display: flex; gap: 24px; }
.footer__social img { opacity: 0.8; }
.footer__social a:hover img { opacity: 1; }

@media (max-width: 768px) {
  .footer__inner { flex-direction: column; gap: 40px; }
  .footer__columns { gap: 32px; flex-wrap: wrap; }
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.06); }

/* Mobile hero */
@media (max-width: 768px) {
  .hero--desktop { display: none; }
  .hero--mobile {
    display: block;
    padding: var(--header-h-mobile) var(--gutter-mobile) 64px;
    background-image: url("../assets/hero-mobile-bg.webp");
    background-size: cover;
    background-position: center;
  }
  .hero--mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 45% 36% at 50% 50%, rgba(132, 255, 132, 0.15), transparent 70%),
      rgba(10, 10, 10, 0.92);
    z-index: 0;
  }
  .hero__mobile-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .hero__title--mobile {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .hero__description--mobile {
    font-size: 16px;
    line-height: 1.5;
    max-width: 384px;
  }
}
