/* ============================================================
   BOUBERE CARGO INC — Feuille de style principale
   Palette : bleu marine profond, vert foncé, blanc cassé, doré
   ============================================================ */

:root {
  --navy: #0d2137;
  --navy-800: #12314f;
  --navy-700: #1a4066;
  --green: #14532d;
  --green-soft: #e7f0ea;
  --gold: #d9a021;
  --gold-dark: #b5831a;
  --offwhite: #faf9f6;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --ink: #1c2530;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 10px rgba(13, 33, 55, 0.07);
  --shadow-lg: 0 8px 28px rgba(13, 33, 55, 0.12);
  --container: 1120px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--navy-700); }
a:hover { color: var(--navy); }

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

.section { padding: 64px 0; }
.section--alt { background: var(--white); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--gray-700); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

/* ---------- Accessibilité ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--white); }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-dark); color: var(--navy); }

.btn--whatsapp { background: var(--green); color: var(--white); }
.btn--whatsapp:hover { background: #0f4023; color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--outline-light:hover { background: var(--white); color: var(--navy); }

.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- En-tête ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.footer-brand .brand-logo { width: 52px; height: 52px; margin-bottom: 12px; }
.brand small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
}

.main-nav { margin-left: auto; }

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.submenu { list-style: none; margin: 0; }

.main-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--gray-100);
  color: var(--navy);
}

/* Sous-menu Services */
.has-submenu { position: relative; }

.submenu-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 0;
  background: none;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
}
.submenu-toggle:hover { background: var(--gray-100); }
.submenu-toggle::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.submenu[data-open="true"] { display: flex; }
.submenu a { font-size: 0.92rem; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  color: var(--navy);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Héros ---------- */

.hero {
  background:
    linear-gradient(135deg, rgba(13, 33, 55, 0.97) 0%, rgba(18, 49, 79, 0.94) 55%, rgba(20, 83, 45, 0.9) 100%),
    var(--navy);
  color: var(--white);
  padding: 76px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { color: var(--white); }
.hero .hero-sub {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Emplacement image (aucune fausse photo) */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 28px;
  min-height: 300px;
  border: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}
.image-placeholder strong { font-size: 1rem; color: var(--white); }

.image-placeholder--light {
  border-color: var(--gray-200);
  background: var(--gray-100);
  color: var(--gray-500);
  min-height: 220px;
}
.image-placeholder--light strong { color: var(--gray-700); }

.image-placeholder svg { opacity: 0.75; }

/* ---------- Barre de confiance ---------- */

.trustbar { background: var(--navy); color: var(--white); padding: 22px 0; }

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; color: var(--gold); }

.trustbar-capacity {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Statistiques ---------- */

.stats { padding: 48px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 18px;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
}

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---------- Cartes ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 16px;
}

.card p { color: var(--gray-700); font-size: 0.96rem; flex-grow: 1; }
.card .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- Étapes ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.steps li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 22px 22px 22px;
  box-shadow: var(--shadow);
}

.step-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.steps h3 { font-size: 1.02rem; margin-bottom: 6px; }
.steps p { font-size: 0.92rem; color: var(--gray-700); margin: 0; }

/* ---------- Pourquoi nous ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.97rem;
}
.why-grid svg { flex-shrink: 0; color: var(--green); margin-top: 3px; }

/* ---------- Preuves / galerie ---------- */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.proof-card figcaption { padding: 16px 18px; }

.proof-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--gray-100);
}

.content-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 8px 0 28px;
}

.hero-photo {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--green-soft);
  color: var(--green);
}
.tag--navy { background: #e3eaf2; color: var(--navy); }
.tag--muted { background: var(--gray-100); color: var(--gray-500); }

.proof-card p { font-size: 0.9rem; color: var(--gray-700); margin: 0; }

/* ---------- Témoignages ---------- */

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.testimonial-pending {
  font-style: italic;
  color: var(--gray-500);
}
.testimonial-card footer {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  padding: 18px 48px 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--navy);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--gold-dark);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--gray-700);
}

/* ---------- Bandeau CTA final ---------- */

.cta-final {
  background:
    linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 70%, var(--green) 130%);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}
.cta-final h2 { color: var(--white); }
.cta-final p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-final .btn-group { justify-content: center; }

/* ---------- Fil d'Ariane ---------- */

.breadcrumb {
  padding: 16px 0 0;
  font-size: 0.86rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--gray-500);
}
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--gray-500); }
.breadcrumb a { color: var(--gray-700); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 600; }

/* ---------- Pages internes ---------- */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 56px 0;
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  font-size: 1.08rem;
  margin-bottom: 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.aside-card {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.aside-card h3 { margin-bottom: 8px; }
.aside-card p { font-size: 0.92rem; color: var(--gray-700); }
.aside-card .btn { margin-bottom: 10px; }

.notice {
  border-left: 4px solid var(--gold);
  background: #fdf6e6;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.95rem;
  color: var(--gray-700);
  margin: 24px 0;
}
.notice strong { color: var(--navy); }

.check-list {
  list-style: none;
  margin: 0 0 1.2em;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 2px solid var(--green);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

/* ---------- Formulaire ---------- */

.form-wrap {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.field .hint { font-size: 0.82rem; color: var(--gray-500); }

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  color: var(--ink);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(217, 160, 33, 0.45);
  outline-offset: 0;
  border-color: var(--gold);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b91c1c;
}

.field-error {
  display: none;
  font-size: 0.82rem;
  color: #b91c1c;
  font-weight: 500;
}
.field-error[data-visible="true"] { display: block; }

fieldset.form-section {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin: 0;
  grid-column: 1 / -1;
}
fieldset.form-section legend {
  font-weight: 700;
  color: var(--navy);
  padding: 0 8px;
  font-size: 0.95rem;
}
fieldset.form-section .form-grid { margin-top: 4px; }

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.consent-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.form-alert {
  display: none;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.94rem;
  font-weight: 500;
}
.form-alert[data-visible="true"] { display: block; }
.form-alert--error { background: #fde8e8; color: #9b1c1c; border: 1px solid #f5b5b5; }

[hidden] { display: none !important; }

/* ---------- Pied de page ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 110px;
  font-size: 0.93rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-brand .brand-mark { margin-bottom: 12px; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal p { margin-bottom: 8px; }

/* ---------- Barre mobile fixe ---------- */

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 16px rgba(13, 33, 55, 0.1);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 7px 4px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .mb-call { background: var(--gray-100); }
.mobile-bar .mb-wa { background: var(--green); color: var(--white); }
.mobile-bar .mb-quote { background: var(--gold); color: var(--navy); }

/* ---------- Animations légères ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .header-actions .btn--primary { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 20px;
    overflow-y: auto;
    display: none;
  }
  .main-nav[data-open="true"] { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a, .submenu-toggle { font-size: 1.05rem; padding: 14px 12px; width: 100%; text-align: left; }
  .submenu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 16px;
    min-width: 0;
  }

  .header-actions .btn--whatsapp span { display: none; }
  .header-actions .btn--whatsapp { padding: 10px 12px; }
  .header-phone span { display: none; }

  .hero { padding: 52px 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .trustbar-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 24px 18px; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 74px; }
  .section { padding: 48px 0; }
}

@media (max-width: 520px) {
  .trustbar-grid { grid-template-columns: 1fr; gap: 10px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group .btn { width: 100%; }
}
