/* ═══════════════════════════════════════════════════════════
   TAXI CHARLEROI AIRPORT — Feuille de style partagée
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:      #1A2744;
  --navy-deep: #111B33;
  --gold:      #B8943F;
  --gold-lt:   #D4AC57;
  --white:     #FFFFFF;
  --off-white: #F7F6F2;
  --light:     #EEECEA;
  --border:    #E2DDD8;
  --text:      #252525;
  --muted:     #6B7280;
  --radius:    4px;
  --shadow:    0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.serif { font-family: 'Playfair Display', serif; }

/* ─── HELPERS ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-heading.on-dark { color: var(--white); }

.section-sub {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.22s;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,148,63,0.35); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

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

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-menu li a {
  display: block;
  padding: 8px 13px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--navy);
  background: var(--off-white);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

.nav-phone {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy) !important;
  border: 1px solid var(--border) !important;
}
.nav-phone:hover { border-color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
  border-radius: 2px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  margin-top: 74px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 27, 51, 0.88) 0%,
    rgba(17, 27, 51, 0.60) 55%,
    rgba(17, 27, 51, 0.30) 100%
  );
}

.hero-content {
  position: relative;
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 660px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── HERO FORM CARD ─── */
.hero-form-card {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-card-header {
  background: var(--navy);
  padding: 20px 28px;
}

.form-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.form-card-header p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.form-card-body {
  padding: 24px 28px;
}

/* ─── BOOKING FORM ─── */
.booking-form .form-group {
  margin-bottom: 14px;
}

.booking-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,63,0.12);
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
  cursor: pointer;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-form textarea { resize: none; min-height: 80px; }

.booking-form .btn { width: 100%; justify-content: center; padding: 14px; margin-top: 4px; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--navy);
  padding: 22px 0;
}

.trust-items {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.trust-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.step-item {
  padding: 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-item:last-child { border-right: none; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
}

.step-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── TABLE ─── */
.tarif-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.tarif-table thead { background: var(--navy); color: var(--white); }

.tarif-table th {
  padding: 15px 20px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tarif-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.tarif-table tr:last-child td { border-bottom: none; }
.tarif-table tbody tr:nth-child(even) { background: var(--off-white); }
.tarif-table tbody tr:hover { background: rgba(184,148,63,0.06); }

.price-cell {
  font-weight: 700;
  color: var(--navy);
}

/* ─── FEATURE ROW ─── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.feature-img {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}

.feature-content {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-row.reverse .feature-img { order: 1; }
.feature-row.reverse .feature-content { order: 0; }

.feature-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(184,148,63,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-btn .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-btn .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-body { max-height: 400px; }

.faq-body-inner {
  padding: 0 0 22px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── PAGE HERO (intérieur) ─── */
.page-hero {
  position: relative;
  margin-top: 74px;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,27,51,0.92) 0%, rgba(17,27,51,0.50) 60%, rgba(17,27,51,0.2) 100%);
}

.page-hero-content {
  position: relative;
  padding: 60px 5%;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,0.85); }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }

.page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── AIRPORT CARDS ─── */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.airport-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color 0.25s, transform 0.25s;
}
.airport-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.airport-iata {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 8px;
}

.airport-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.airport-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.airport-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testimonial blockquote {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-from {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── ZONES ─── */
.zones-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.zone-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
}

.zone-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zone-item h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.zone-item p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--navy);
  padding: 70px 0;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── FORM SECTION ─── */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-aside {
  background: var(--navy);
  padding: 56px 44px;
}

.form-aside h3 {
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
}

.form-aside p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 22px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 3px;
}

.contact-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.form-main {
  background: var(--white);
  padding: 56px 48px;
}

.form-main h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 30px;
}

.full-form .form-group { margin-bottom: 18px; }

.full-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.full-form input,
.full-form select,
.full-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.full-form input:focus,
.full-form select:focus,
.full-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,63,0.12);
}

.full-form textarea { resize: vertical; min-height: 100px; }

.full-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.full-form .btn { width: 100%; justify-content: center; padding: 15px; font-size: 0.9rem; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand .tagline {
  font-size: 0.72rem;
  color: var(--gold-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-lt); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .hero-form-card { display: none; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-img { order: 0; }
  .feature-row.reverse .feature-content { order: 1; }
  .feature-content { padding: 50px 40px; }
  .feature-img { min-height: 320px; }
  .form-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-menu.open li a { padding: 11px 12px; }
  .hamburger { display: flex; }
  .section { padding: 65px 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid var(--border); }
  .step-item:last-child { border-bottom: none; }
  .feature-content { padding: 40px 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form-aside { padding: 40px 28px; }
  .form-main { padding: 40px 28px; }
  .full-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 540px) {
  .hero-title { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 12px; }
}
