@charset "UTF-8";

/* ══════════════════════════════════════════════════════════════════════════════
   BEVERT × FUTURO CORP — DESIGN SYSTEM
   Identidade Visual extraída do site oficial: https://www.bevertsolucoes.com/
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Typography & Reset ────────────────────────────────────── */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("partners/bevert/fonts/montserrat-latin.woff2") format("woff2");
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--bv-text);
  background-color: var(--bv-surface);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bv-surface);
}

/* Evita calcular toda a página longa durante o primeiro frame. */
main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-block-size: auto 720px;
}

/* ── Tokens Bevert (bevertsolucoes.com) ────────────────────── */
:root {
  /* Cores de Marca Bevert */
  --bv-green:         #5C997A;
  --bv-green-bright:  #56BA66;
  --bv-green-dark:    #477E64;
  --bv-green-deep:    #315C49;
  --bv-green-light:   #E8F2ED;
  --bv-green-soft:    #F3F7F4;
  --bv-green-shadow:  rgba(92, 153, 122, 0.28);
  --bv-coral:         #F06E42;
  --bv-coral-dark:    #D85A32;
  --bv-coral-action:  #C64D27;
  --bv-coral-action-hover: #A94320;
  --bv-coral-light:   #FFF0EA;
  --bv-coral-shadow:  rgba(240, 110, 66, 0.3);

  /* Fundo Escuro Bevert (Deep Forest Dark Green) */
  --bv-dark:          #2A3932;
  --bv-dark-surface:  #34483E;
  --bv-dark-deep:     #1E2B25;

  /* Neutros */
  --bv-text:          #2A3932;
  --bv-text-sec:      #52665C;
  --bv-text-ter:      #607067;
  --bv-surface:       #F7F8F6;
  --bv-white:         #FFFFFF;
  --bv-border:        #DDE7E1;
  --bv-border-str:    #BFD2C7;
  --bv-error:         #B42318;
  --bv-success:       #477E64;
  --bv-focus:         #F06E42;

  /* Aliases de compatibilidade */
  --bv-navy:          var(--bv-dark);
  --bv-navy-deep:     var(--bv-dark-deep);
  --bv-teal:          var(--bv-green);
  --bv-teal-dark:     var(--bv-green-dark);
  --bv-teal-light:    var(--bv-green-light);
  --bv-teal-soft:     var(--bv-green-soft);

  /* Sombras */
  --shadow-sm:        0 2px 8px rgba(42, 57, 50, 0.05);
  --shadow-md:        0 8px 24px rgba(42, 57, 50, 0.09);
  --shadow-lg:        0 18px 44px rgba(42, 57, 50, 0.14);
  --shadow-card:      0 8px 26px rgba(42, 57, 50, 0.07);
  --shadow-cta:       0 8px 24px var(--bv-coral-shadow);

  /* Tipografia */
  --font-heading:     "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body:        "Montserrat", "Segoe UI", Arial, sans-serif;

  /* Modificadores */
  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        16px;
  --radius-xl:        24px;
  --radius-pill:      999px;
  --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Header Fixed ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bv-border);
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.header-brand-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background-color: var(--bv-green-light);
  color: var(--bv-green-dark);
  border: 1px solid var(--bv-border-str);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--bv-green);
  color: var(--bv-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--bv-focus);
  outline-offset: 3px;
}

/* ── Typography Utilities ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--bv-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bv-green);
  margin-bottom: 0.75rem;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bv-green);
}

/* ── Buttons ───────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9375rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, color 0.2s;
  line-height: 1.2;
  white-space: nowrap;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button--primary {
  background: var(--bv-coral-action);
  color: var(--bv-white);
  box-shadow: var(--shadow-cta);
}

.button--primary:hover {
  background: var(--bv-coral-action-hover);
  box-shadow: 0 10px 30px var(--bv-coral-shadow);
}

.button--outline-white {
  background: transparent;
  color: var(--bv-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.button--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bv-white);
}

.button--compact {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.button--lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.button--full { width: 100%; }

/* ── HERO Section (Bevert Deep Dark Green) ─────────────────── */
.hero {
  background: var(--bv-dark);
  background-image: 
    radial-gradient(circle at 82% 18%, rgba(92, 153, 122, 0.28) 0%, transparent 48%),
    radial-gradient(circle at 8% 84%, rgba(240, 110, 66, 0.12) 0%, transparent 38%);
  color: var(--bv-white);
  padding-top: clamp(2.25rem, 4.5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.hero__eyebrow {
  background: rgba(92, 153, 122, 0.18);
  color: #BFE8CF;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(191, 232, 207, 0.35);
}

.hero__eyebrow .eyebrow__dot { background-color: var(--bv-coral); }

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  color: var(--bv-white);
  margin-bottom: 0.875rem;
  line-height: 1.15;
}

.hero h1 span {
  color: #FF8C66;
  display: inline-block;
}

.hero__text {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.35rem;
  line-height: 1.55;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.trust-check {
  color: #BFE8CF;
  font-weight: 800;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  right: 0.875rem;
  background: rgba(42, 57, 50, 0.88);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--bv-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Resumo factual / GEO ──────────────────────────────────── */
.section--summary {
  background: var(--bv-white);
}

.summary-heading {
  max-width: 800px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.summary-card {
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid var(--bv-border);
  border-top: 4px solid var(--bv-coral);
  border-radius: var(--radius-lg);
  background: var(--bv-green-soft);
  box-shadow: var(--shadow-sm);
}

.summary-card h3 {
  margin-bottom: 0.625rem;
  color: var(--bv-dark);
  font-size: 1.0625rem;
  line-height: 1.3;
}

.summary-card p {
  margin: 0;
  color: var(--bv-text-sec);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.editorial-note {
  max-width: 920px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bv-surface);
  color: var(--bv-text-ter);
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: center;
}

.editorial-note a {
  color: var(--bv-green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 1000px) {
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .summary-card {
    padding: 1.25rem;
  }
}

/* ── Partner Strip ─────────────────────────────────────────── */
.partner-strip {
  background-color: var(--bv-dark-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--bv-border);
  padding-block: 0.875rem;
}

.partner-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.partner-strip__text {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.partner-strip__logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.partner-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.2);
}

.partner-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }

/* ── Sections ──────────────────────────────────────────────── */
.section {
  padding-block: clamp(2.5rem, 4.5vw, 4rem);
}

section[id] {
  scroll-margin-top: 88px;
}

.section--muted {
  background-color: var(--bv-surface);
}

.section--white {
  background-color: var(--bv-white);
}

.section-heading {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 720px;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--bv-text-sec);
  font-size: 1.0625rem;
  line-height: 1.55;
}

/* ── Dores (Pain Cards) ────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.pain-card {
  background-color: var(--bv-white);
  border: 1px solid var(--bv-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bv-green);
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--bv-green-light);
  color: var(--bv-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.pain-card__text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--bv-text);
  line-height: 1.45;
}

/* ── Benefícios Grid ───────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--bv-white);
  border: 1px solid var(--bv-border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bv-green);
  opacity: 0;
  transition: opacity 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bv-green);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background-color: var(--bv-green-light);
  color: var(--bv-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.benefit-card__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.benefit-card__body {
  flex: 1;
}

.benefit-card__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--bv-dark);
}

.benefit-card__body p {
  color: var(--bv-text-sec);
  line-height: 1.55;
  font-size: 0.9375rem;
  margin: 0;
}

/* ── Ponte (Bridge Section — Deep Dark Green) ──────────────── */
/* ── Ponte (Bridge Section — Deep Dark Green) ──────────────── */
.bridge {
  background: var(--bv-dark);
  background-image: radial-gradient(circle at 50% 50%, rgba(92, 153, 122, 0.2) 0%, transparent 70%);
  color: var(--bv-white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.bridge__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .bridge__grid { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
}

.bridge__side {
  background-color: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
}

.bridge__side h3 {
  color: var(--bv-white);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bridge__side p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  font-size: 0.9375rem;
}

.bridge__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FF8C66;
}

.bridge__connector svg { width: 28px; height: 28px; }

.bridge__connector-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

.bridge__quote {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
}

.bridge__quote p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--bv-white);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.bridge__quote cite {
  font-size: 0.8125rem;
  color: var(--bv-green-bright);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── BEVERT EM NÚMEROS ─────────────────────────────────────── */
.numbers-section {
  background-color: var(--bv-white);
  border-top: 1px solid var(--bv-border);
  border-bottom: 1px solid var(--bv-border);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  text-align: center;
}

.number-card {
  padding: 1rem;
}

.number-card__val {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--bv-green);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.number-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bv-text-sec);
}

/* ── Processo (3 Etapas) ───────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.process-step {
  background-color: var(--bv-white);
  border: 1px solid var(--bv-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  position: relative;
}

.process-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bv-green);
  color: var(--bv-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px var(--bv-green-shadow);
}

.process-step h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--bv-text-sec);
  line-height: 1.55;
  font-size: 0.9375rem;
}

/* ── Formulário Section ────────────────────────────────────── */
.form-section {
  background-color: var(--bv-surface);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.form-wrapper {
  max-width: 680px;
  margin-inline: auto;
  background-color: var(--bv-white);
  border: 1px solid var(--bv-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group--full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bv-text);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--bv-error);
}

.form-input, .form-select {
  width: 100%;
  height: 52px;
  padding-inline: 1.25rem;
  background-color: var(--bv-surface);
  border: 1.5px solid var(--bv-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bv-text);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  appearance: none;
}

.form-input:focus, .form-select:focus {
  outline: none;
  background-color: var(--bv-white);
  border-color: var(--bv-green);
  box-shadow: 0 0 0 4px var(--bv-green-light);
}

.form-input:disabled {
  cursor: not-allowed;
  color: var(--bv-text-ter);
  background-color: #EDF1EE;
}

.form-input.has-error, .form-select.has-error {
  border-color: var(--bv-error);
  background-color: #FFF5F5;
}

.form-select-wrapper {
  position: relative;
}

.form-select-wrapper::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%202D3831' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
}

.form-error {
  font-size: 0.8125rem;
  color: var(--bv-error);
  margin-top: 0.35rem;
  display: none;
}
.form-error.is-visible { display: block; }

.form-help {
  display: block;
  margin-top: 0.35rem;
  color: var(--bv-text-ter);
  font-size: 0.75rem;
  line-height: 1.4;
}

.form-error--check {
  margin-left: 2rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 4vw, 3rem);
}

.button-spinner {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.65rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: button-spin 0.7s linear infinite;
}

@keyframes button-spin {
  to { transform: rotate(360deg); }
}

/* City Autocomplete Dropdown */
.city-input-wrapper {
  position: relative;
  width: 100%;
}

.city-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #FFFFFF !important;
  border: 2px solid var(--bv-green) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}
.city-suggestions.is-open { display: block !important; }

.city-suggestion-item {
  width: 100%;
  padding: 0.875rem 1.25rem;
  text-align: left;
  background: #FFFFFF;
  border: none;
  border-bottom: 1px solid var(--bv-border);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bv-text);
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.city-suggestion-item:last-child { border-bottom: none; }
.city-suggestion-item:hover,
.city-suggestion-item:focus,
.city-suggestion-item.is-active {
  background-color: var(--bv-green-light) !important;
  color: var(--bv-green-dark) !important;
  outline: none;
}

.form-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  accent-color: var(--bv-green);
  flex-shrink: 0;
  cursor: pointer;
}

.form-check-label {
  font-size: 0.875rem;
  color: var(--bv-text-sec);
  line-height: 1.45;
}

.form-check-label a {
  color: var(--bv-green-deep);
  text-decoration: underline;
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  display: none;
}
.form-status--error {
  display: block;
  background-color: #FFF5F5;
  color: var(--bv-error);
  border: 1px solid #FEB2B2;
}
.form-status--success {
  display: block;
  background-color: var(--bv-green-light);
  color: var(--bv-green-dark);
  border: 1px solid var(--bv-border-str);
}

#form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

/* Honeypot */
.honey { display: none !important; }

/* ── FAQ Section ───────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bv-white);
  border: 1px solid var(--bv-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.is-open {
  border-color: var(--bv-green);
}

.faq-btn {
  width: 100%;
  padding: 1.5rem 1.75rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bv-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bv-surface);
  color: var(--bv-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background-color 0.3s;
  flex-shrink: 0;
}

.faq-icon svg { width: 16px; height: 16px; stroke-width: 2.5; }

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  background-color: var(--bv-green-light);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body__inner { overflow: hidden; }

.faq-body__content {
  padding: 0 1.75rem 1.5rem;
  color: var(--bv-text-sec);
  line-height: 1.65;
  font-size: 1rem;
}

/* ── Footer (Bevert Deep Dark Green) ───────────────────────── */
.site-footer {
  background-color: var(--bv-dark-deep);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand__tagline {
  max-width: 440px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bv-green-bright); }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credits a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  z-index: 990;
  background: rgba(17, 35, 25, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--bv-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.25s ease, visibility 0s linear 0.4s;
  box-sizing: border-box;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.cookie-banner p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--bv-white);
}

.cookie-banner a {
  color: var(--bv-green-bright);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}

.cookie-btn--accept {
  background: var(--bv-green-dark);
  color: var(--bv-white);
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ── Mobile Responsive Corrections ───────────────────────────── */
@media (max-width: 640px) {
  .site-header__inner {
    height: auto;
    min-height: 60px;
    padding-block: 0.625rem;
    padding-inline: 1rem;
    gap: 0.5rem;
  }

  .header-brand-group {
    gap: 0.4rem !important;
    max-width: 100%;
  }

  .header-brand-group img {
    height: 20px !important;
    width: auto !important;
  }

  .header-brand-group span {
    font-size: 0.85rem !important;
  }

  .site-header .button--compact {
    display: none;
  }

  .button {
    white-space: normal !important;
    text-align: center;
    word-break: break-word;
    max-width: 100%;
  }

  #form-submit, .button--lg {
    padding: 0.875rem 1.25rem !important;
    font-size: 0.9375rem !important;
    line-height: 1.35 !important;
  }

  .cookie-banner {
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    width: auto !important;
    max-width: calc(100vw - 1.5rem) !important;
    padding: 1.125rem !important;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .section, .hero, .bridge, .numbers-section, .form-section {
    padding-block: 2rem !important;
  }
  .section-heading {
    margin-bottom: 1.25rem !important;
  }
  .section-heading h2 {
    font-size: 1.6rem !important;
  }
  .pain-grid, .benefits-grid, .process-grid, .numbers-grid {
    gap: 1rem !important;
  }
  .pain-card, .benefit-card, .process-step {
    padding: 1.25rem !important;
  }

  .partner-strip__logos {
    gap: 0.75rem;
    max-width: 100%;
  }

  .partner-logo img {
    width: auto !important;
    max-width: 138px;
    height: auto !important;
  }
}

@media (max-width: 380px) {
  .header-brand-group img {
    height: 16px !important;
  }
  .site-header .button--compact {
    padding: 0.4rem 0.5rem !important;
    font-size: 0.7rem !important;
  }
}

/* ── Form Modal Pop-up ───────────────────────────────────────── */
body.modal-open { overflow: hidden !important; }

.form-modal {
  width: min(720px, calc(100% - 2rem));
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0.5rem;
  overflow: visible;
  border: 0;
  background: transparent;
  color: inherit;
}

.form-modal::backdrop {
  background: rgba(17, 35, 25, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-modal__panel {
  position: relative;
  width: 100%;
  max-height: calc(100dvh - 2rem);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  scrollbar-width: thin;
}

.form-modal__panel::-webkit-scrollbar { width: 5px; }
.form-modal__panel::-webkit-scrollbar-thumb {
  background: var(--bv-green);
  border-radius: 4px;
}

.form-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--bv-green-light);
  color: var(--bv-green-dark);
  font: 700 1.4rem/1 var(--font-body);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.form-modal-close:hover,
.form-modal-close:focus-visible {
  background: var(--bv-green);
  color: #FFFFFF;
  outline: 3px solid rgba(0, 171, 95, 0.25);
  outline-offset: 2px;
}

.form-modal__intro {
  padding-right: 3rem;
  margin-bottom: 1rem;
}

.form-modal__intro .eyebrow { margin-bottom: 0.35rem; }
.form-modal__intro h2 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}
.form-modal__intro p:last-child {
  color: var(--bv-text-sec);
  font-size: 0.875rem;
}

.form-modal .form-wrapper {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.form-modal .form-grid { gap: 0.7rem 1rem; }
.form-modal .form-label {
  margin-bottom: 0.25rem;
  font-size: 0.84rem;
}
.form-modal .form-input,
.form-modal .form-select {
  height: 44px;
  padding-inline: 0.9rem;
  font-size: 0.925rem;
}
.form-modal .form-help,
.form-modal .form-error { font-size: 0.72rem; }
.form-modal .form-footer {
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.form-modal .form-check { gap: 0.6rem; }
.form-modal .form-check-input {
  width: 18px;
  height: 18px;
}
.form-modal .form-check-label {
  font-size: 0.76rem;
  line-height: 1.35;
}
.form-modal .form-status {
  padding: 0.65rem 0.8rem;
  font-size: 0.8rem;
}
.form-modal .button--lg { min-height: 48px; }
.form-modal .form-assurance { font-size: 0.72rem; }

.mobile-form-cta { display: none; }
.mobile-form-cta[hidden] { display: none !important; }

@media (max-width: 768px) {
  .mobile-form-cta:not([hidden]) {
    position: fixed;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    left: 0.75rem;
    z-index: 9000;
    display: inline-flex;
    min-height: 50px;
    box-shadow: 0 10px 28px rgba(17, 35, 25, 0.28);
  }
}

@media (max-width: 640px) {
  .form-modal {
    width: calc(100% - 1rem);
  }
  .form-modal__panel {
    max-height: calc(100dvh - 1rem);
    padding: 1.1rem 0.9rem 0.9rem;
    border-radius: var(--radius-lg);
  }
  .form-modal-close {
    top: 0.55rem;
    right: 0.55rem;
    width: 38px;
    height: 38px;
  }
  .form-modal__intro {
    margin-bottom: 0.7rem;
  }
  .form-modal__intro h2 { font-size: 1.3rem; }
  .form-modal .form-grid { gap: 0.55rem; }
  .form-modal .form-input,
  .form-modal .form-select { height: 42px; }
  .form-modal .form-footer {
    gap: 0.5rem;
    margin-top: 0.65rem;
  }
}

/* ── Animations / Reveal ───────────────────────────────────── */
[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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