/* ============ TOKENS ============ */
:root {
  --navy-950: #0a1f3c;
  --navy-900: #0d2748;
  --navy-800: #123258;
  --navy-700: #1a3f6b;
  --blue-accent: #2e6fe6;
  --blue-accent-light: #eaf1fe;
  --amber: #f5a524;
  --amber-dark: #d98c0f;
  --green: #1fb178;
  --ink: #131c2e;
  --slate: #5b6472;
  --slate-light: #6b7685;
  --line: #e6eaf2;
  --tint: #f5f8fc;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-full: 999px;
  --shadow-card: 0 20px 45px -20px rgba(10, 31, 60, 0.16);
  --shadow-soft: 0 10px 30px -12px rgba(10, 31, 60, 0.14);
  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "Raleway", "Inter", sans-serif;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; color: var(--slate); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
svg { flex-shrink: 0; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ============ ACCESSIBILITY: FOCUS & MOTION ============ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.faq-item summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2.5px solid var(--blue-accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.hero :is(a, button):focus-visible {
  outline-color: var(--amber);
}

@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;
  }
  .btn:active { transform: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; min-height: 44px; }

.btn-primary {
  background: var(--amber);
  color: var(--navy-950);
  box-shadow: 0 12px 28px -10px rgba(245, 165, 36, 0.55);
}
.btn-primary:hover { background: var(--amber-dark); box-shadow: 0 16px 34px -10px rgba(245, 165, 36, 0.65); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.55); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--line);
}
.btn-outline-navy:hover { border-color: var(--navy-700); background: var(--tint); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue-accent);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.card-link:hover { gap: 10px; color: var(--navy-900); }
.card-link.is-disabled {
  color: var(--slate-light);
  cursor: not-allowed;
}
.card-link.is-disabled:hover { gap: 6px; color: var(--slate-light); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand-name {
  display: flex;
  flex-direction: column;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  color: var(--navy-950);
}
.brand-name small {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  color: var(--slate-light);
  text-transform: none;
}
.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--blue-accent); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy-900);
}
.header-phone:hover { color: var(--blue-accent); }
.nav-toggle {
  display: none;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  touch-action: manipulation;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 620px at 82% -10%, var(--navy-700), transparent 60%), linear-gradient(160deg, var(--navy-900), var(--navy-950) 70%);
  padding: 68px 0 110px;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-shape.one {
  width: 520px;
  height: 520px;
  right: -140px;
  top: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(46, 111, 230, 0.35), transparent 70%);
}
.hero-shape.two {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(245, 165, 36, 0.18), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.kicker-badge { display: flex; color: var(--amber); }

.hero h1 {
  display: flex;
  flex-direction: column;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero h1 .w-light { font-weight: 300; color: #dbe6ff; }
.hero h1 .w-bold { font-weight: 800; color: #fff; }
.hero h1 .w-accent { font-weight: 800; color: var(--amber); }

.hero-dek {
  color: #b9c7e0;
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #c6d3ea;
}
.trust-item svg { color: var(--amber); }

/* Hero panel (floating card) */
.hero-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -25px rgba(5, 15, 35, 0.55);
  overflow: hidden;
}
.hero-panel-photo { aspect-ratio: 16/10; overflow: hidden; }
.hero-panel-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-panel-body { padding: 26px 26px 22px; }
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-accent);
}
.hero-panel-body ul { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.hero-panel-body li { display: flex; align-items: flex-start; gap: 12px; }
.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-accent-light);
  color: var(--blue-accent);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-panel-body li b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.hero-panel-body li > span > span { font-size: 13px; color: var(--slate); }
.hero-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.hero-panel-foot .num { font-weight: 800; font-size: 15px; color: var(--navy-900); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
}

/* ============ SECTIONS (general) ============ */
.section { padding: 96px 0; }
.section-tint { background: var(--tint); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 {
  font-size: 34px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-head h2 strong { font-weight: 800; }
.section-head p { font-size: 16px; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue-accent-light);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.service-card li {
  font-size: 13.5px;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============ DIFERENCIAIS ============ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.diff-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.diff-card p { font-size: 13.5px; }

@media (max-width: 960px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* ============ BRANDS ============ */
.brands-section .section-head { margin-bottom: 40px; }
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.brand-tile {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 130px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
}
.brand-tile:hover { filter: grayscale(0) opacity(1); transform: translateY(-3px); }
.brand-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ============ COVERAGE ============ */
.coverage-wrap {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.coverage-title { font-size: 32px; font-weight: 300; letter-spacing: -0.5px; margin: 14px 0 16px; }
.coverage-title strong { font-weight: 800; }
.coverage-lead { font-size: 15.5px; margin-bottom: 26px; }
.coverage-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pin-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 15px;
  border-radius: var(--radius-full);
}
.pin-chip svg { color: var(--blue-accent); }
.coverage-note { font-size: 13.5px; color: var(--slate-light); }
.coverage-map {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .coverage-wrap { grid-template-columns: 1fr; }
}

/* ============ AVALIAÇÕES ============ */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 26px 32px;
  margin-bottom: 32px;
  text-align: center;
}
.rating-stars { color: var(--amber); font-size: 22px; letter-spacing: 2px; }
.rating-number { font-family: "Raleway", sans-serif; font-weight: 800; font-size: 22px; }
.rating-count { font-size: 14.5px; color: var(--slate); font-weight: 600; }
.ph { color: var(--blue-accent); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testi-card .stars { color: var(--amber); letter-spacing: 2px; display: block; margin-bottom: 12px; }
.testi-card p { font-style: italic; margin-bottom: 16px; }
.testi-card footer { font-size: 13.5px; font-weight: 700; color: var(--navy-900); }

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

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 22px;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.plus { color: var(--blue-accent); font-size: 22px; font-weight: 400; transition: transform 0.25s var(--ease); }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-a { padding: 0 0 18px; font-size: 14.5px; }

/* ============ CTA FINAL ============ */
.cta-final-section { padding-top: 0; }
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-final-shape {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(245, 165, 36, 0.28), transparent 70%);
}
.cta-final-content { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.cta-final p { color: #b9c7e0; font-size: 15px; }
.cta-final-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 14px; }
.cta-final .btn-outline-navy { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.28); }
.cta-final .btn-outline-navy:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  .cta-final { padding: 40px 26px; }
}

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-950); padding: 64px 0 26px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 50%; }
.footer-brand span { font-family: "Raleway", sans-serif; font-weight: 800; color: #fff; font-size: 16px; }
.footer-grid p { font-size: 13.5px; color: #8fa0bf; max-width: 34ch; }
.footer-grid h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid li { font-size: 13.5px; color: #8fa0bf; }
.footer-grid a:hover { color: var(--amber); }
.footer-bottom a { font-weight: 600; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: 12.5px;
  color: #8fa0bf;
}

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

/* ============ FLOATING WHATSAPP ============ */
.float-whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 90;
  transition: transform 0.25s var(--ease);
}
.float-whats:hover { transform: scale(1.08); }
.float-whats svg { width: 28px; height: 28px; }

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 26px; }
}

/* ============ FOOTER WHATSAPP LINK (button styled as link) ============ */
.footer-whats-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 13.5px;
  color: #8fa0bf;
  cursor: pointer;
  text-align: left;
}
.footer-whats-link:hover { color: var(--amber); }

/* ============ MODAL: WHATSAPP LEAD FORM ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 20, 38, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { opacity: 1; }

.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -20px rgba(5, 15, 35, 0.5);
  padding: 34px 30px 28px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s var(--ease);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--tint);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--line); color: var(--ink); }

.modal-head { margin-bottom: 22px; padding-right: 30px; }
.modal-head .eyebrow { display: block; margin-bottom: 8px; }
.modal-head h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.modal-head p { font-size: 14px; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: var(--slate-light); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3.5px rgba(46, 111, 230, 0.15);
}
.field select { appearance: none; cursor: pointer; }
.field:has(select) { position: relative; }
.field:has(select)::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 17px;
  width: 9px;
  height: 9px;
  border-right: 1.8px solid var(--slate);
  border-bottom: 1.8px solid var(--slate);
  transform: rotate(45deg);
  pointer-events: none;
}
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #d63939;
}
.field.has-error input,
.field.has-error select { border-color: #d63939; }
.field.has-error .field-error { display: block; }

.modal-submit { width: 100%; margin-top: 4px; }
.modal-submit:disabled { opacity: 0.7; cursor: progress; }
.modal-privacy {
  margin-top: 14px;
  font-size: 12px;
  color: var(--slate-light);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal { transition: none; }
}

/* ============ SCROLL REVEAL (progressive enhancement) ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
