/* ===========================================================
   VICTÓRIA LOPES — INTERNACIONAL
   Design tokens
=========================================================== */
:root {
  /* Paleta oficial — Manual da Marca Victória Lopes */
  --navy-950: #21293D;   /* navy principal da marca */
  --navy-900: #262F46;
  --navy-800: #2D3750;
  --navy-700: #35415F;
  --navy-600: #3D4C70;
  --navy-500: #495B87;

  --rosegold-700: #8F5559;
  --rosegold-600: #A3686D;
  --rosegold-500: #BB8285;
  --rosegold-400: #D3A6A2;
  --rosegold-100: #F1DCD7;
  --rosegold-050: #F8ECE9;

  --taupe: #DACBC7;      /* terceira cor oficial da marca */
  --taupe-dark: #C7B4AE;

  --gold-600: var(--rosegold-700);
  --gold-500: var(--rosegold-500);
  --gold-400: var(--rosegold-400);
  --gold-100: var(--rosegold-100);
  --gold-050: var(--taupe);

  --paper: #FAF8F6;
  --paper-dim: var(--taupe);

  --white: #FFFFFF;

  --ink: #21293D;
  --ink-soft: #545B6B;
  --ink-faint: #82869A;
  --line: #E7E0DC;
  --line-dark: rgba(255,255,255,0.14);

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-label: "Jost", sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-card: 0 1px 2px rgba(33,41,61,0.06), 0 12px 32px -16px rgba(33,41,61,0.22);
  --shadow-lift: 0 24px 48px -20px rgba(33,41,61,0.35);

  --container: 1160px;
}

/* ===========================================================
   Reset
=========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

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

.eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

/* ===========================================================
   Buttons
=========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-primary:hover { background: var(--gold-400); box-shadow: 0 10px 24px -10px rgba(185,146,90,0.6); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline-dark:hover { background: var(--navy-900); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ===========================================================
   Header
=========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,27,46,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 16px; color: var(--white); }
.brand-tag { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* ===========================================================
   Timezone strip (signature element)
=========================================================== */
.tz-strip {
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.tz-strip .container {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.tz-strip-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  flex-shrink: 0;
}
.tz-list { display: flex; gap: 26px; flex-wrap: wrap; }
.tz-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
.tz-item .tz-time { color: var(--gold-400); font-weight: 600; }

/* ===========================================================
   Hero
=========================================================== */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 85% -10%, #16304F 0%, var(--navy-950) 55%);
  color: var(--white);
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero-routes {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  margin: 18px 0 22px;
  color: var(--white);
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--gold-400);
}
.hero-copy p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item {
  font-family: var(--font-label);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); }

/* Hero visual panel: destination cards */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.hero-panel-title {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.hero-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.hero-panel-row:first-of-type { border-top: none; }
.hero-panel-row .country { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); }
.hero-panel-row .flag {
  width: 26px; height: 18px; border-radius: 2px; background: var(--navy-700);
  display: flex; align-items:center; justify-content:center; font-size: 12px;
}
.hero-panel-row .figure { font-family: var(--font-label); color: var(--gold-400); font-size: 13px; }

/* ===========================================================
   Sections
=========================================================== */
section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-top: 16px;
  color: var(--navy-950);
  line-height: 1.15;
}
.section-head p { font-size: 17px; color: var(--ink-soft); margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.bg-navy { background: var(--navy-950); color: var(--white); }
.bg-navy .section-head h2 { color: var(--white); }
.bg-navy .section-head p { color: rgba(255,255,255,0.7); }
.bg-white { background: var(--white); }

/* Product cards (hub page) */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.product-card .tag {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--gold-050);
  border: 1px solid var(--gold-100);
  padding: 6px 12px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 22px;
}
.product-card h3 {
  font-size: 26px;
  color: var(--navy-950);
  margin-bottom: 14px;
}
.product-card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 24px; flex-grow: 1; }
.product-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.product-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink); }
.product-card li::before { content: "—"; color: var(--gold-500); flex-shrink: 0; }

/* Steps (como funciona) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.step .step-index {
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--gold-600);
  margin-bottom: 14px;
  display: block;
}
.step h4 { font-size: 19px; color: var(--navy-950); margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* Feature list w/ icon */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-label);
  font-size: 14px;
}
.feature h4 { font-size: 16px; color: var(--navy-950); margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--ink-soft); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial p.quote {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}
.testimonial .who {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* Pricing / offer card */
.offer-card {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.offer-card h3 { font-size: 28px; margin-bottom: 14px; }
.offer-card p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 6px; }
.offer-price-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.offer-price-box .from { font-family: var(--font-label); font-size: 11px; color: var(--gold-400); text-transform: uppercase; letter-spacing: .08em; }
.offer-price-box .value { font-family: var(--font-display); font-size: 40px; margin: 10px 0 4px; }
.offer-price-box .value small { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.6); }
.offer-price-box .note { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy-950);
  font-family: var(--font-body);
}
.faq-q .plus {
  font-family: var(--font-label);
  font-size: 20px;
  color: var(--gold-500);
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--ink-soft); max-width: 720px; }

/* Form / lead capture */
.lead-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.lead-side h3 { font-size: 26px; color: var(--navy-950); margin-bottom: 16px; }
.lead-side p { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
.lead-side ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.lead-side li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink); }
.lead-side li::before { content: "✓"; color: var(--gold-600); font-weight: 700; flex-shrink: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12.5px; font-weight: 600; color: var(--navy-800); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; }
.form-status {
  margin-top: 14px;
  font-size: 13.5px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: #EAF3EA; color: #2A5C34; border: 1px solid #C6E0C8; }
.form-status.error { background: #FBEAEA; color: #8A2C2C; border: 1px solid #F0C6C6; }

/* Areas cross-sell band */
.crosssell {
  background: var(--gold-050);
  border: 1px solid var(--gold-100);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.crosssell p { font-size: 16px; color: var(--navy-900); max-width: 560px; }
.crosssell strong { color: var(--gold-600); }

/* Final CTA band */
.cta-band {
  background: var(--navy-950);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 560px; margin: 0 auto 34px; }

/* Footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-col h5 {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a { font-size: 14px; color: rgba(255,255,255,0.68); display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  max-width: 760px;
  line-height: 1.6;
  margin-top: 18px;
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-950);
  color: var(--white);
  border: 1px solid var(--gold-500);
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 30px -10px rgba(11,27,46,0.5);
  transition: transform .15s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float .wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #3FCB6E; }

/* Entrada suave — animação por CSS, sem depender de scroll/JS.
   Garante que o conteúdo NUNCA fique invisível caso o JS falhe. */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeInUp 0.7s ease both; }

/* Breadcrumb (product pages) */
.breadcrumb {
  font-family: var(--font-label);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold-400); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--navy-950);
  z-index: 90;
  padding: 32px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  font-size: 17px;
}
.mobile-nav .btn { margin-top: 20px; }

/* Founder section (hub) */
.founder-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.founder-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.founder-photo img { width: 100%; display: block; }
.founder-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,41,61,0) 55%, rgba(33,41,61,0.55) 100%);
}
.founder-photo .founder-caption {
  position: absolute; left: 24px; bottom: 20px; z-index: 2;
  color: var(--white);
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.founder-copy h2 { margin-top: 14px; }
.founder-copy p { color: var(--ink-soft); font-size: 16px; margin-top: 16px; }
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.founder-credentials span {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--navy-800);
  background: var(--rosegold-050);
  border: 1px solid var(--rosegold-100);
  padding: 8px 14px;
  border-radius: 100px;
}

/* Cartão "quem analisa seu caso" (páginas de produto) */
.analyst-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
}
.analyst-card img {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--rosegold-100);
}
.analyst-card .name { font-family: var(--font-display); font-size: 17px; color: var(--navy-950); margin-bottom: 4px; }
.analyst-card .role { font-family: var(--font-label); font-size: 12.5px; color: var(--gold-600); letter-spacing: 0.03em; margin-bottom: 6px; }
.analyst-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ===========================================================
   Responsive
=========================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .product-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .lead-section { grid-template-columns: 1fr; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-section { grid-template-columns: 1fr; }
  .analyst-card { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  .header-actions { gap: 10px; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .crosssell { flex-direction: column; align-items: flex-start; }
  .wa-float span.wa-label { display: none; }
  .wa-float { padding: 14px; }
}
