/* ============================================================
   MarrakechLocationVoitures.com — TUI Design System
   Navy #002244 | Coral #D40E14 | Sky #009DD9
   ============================================================ */

/* ── VARIABLES & RESET ── */
:root {
  --navy:       #002244;
  --navy-dk:    #001530;
  --sky:        #009DD9;
  --coral:      #D40E14;
  --coral-dk:   #B00B11;
  --white:      #ffffff;
  --gray-light: #f5f7fa;
  --sky-pale:   #E3F5FD;
  --border:     #e8eef4;
  --text:       #1a1a2e;
  --text-mid:   #666;
  --green:      #25d366;
  --gold:       #FFD166;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --radius:     8px;
  --font:       'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max:        1200px;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── TOP BAR ── */
.topbar { background: var(--navy); padding: 8px 0; }
.topbar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
}
.topbar-inner a { color: rgba(255,255,255,0.75); text-decoration: none; }
.topbar-inner a:hover { color: #fff; text-decoration: underline; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-phone { font-weight: 700; color: #fff !important; }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 68px; gap: 32px;
}
.logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.logo-mlv {
  display: block; font-size: 1.65rem; font-weight: 900;
  color: var(--navy); letter-spacing: -0.06em; line-height: 1;
}
.logo-mlv em { font-style: normal; color: var(--coral); }
.logo-sub {
  display: block; font-size: 0.54rem; font-weight: 600;
  color: #999; text-transform: uppercase; letter-spacing: 0.13em; margin-top: 3px;
}
.nav-links { list-style: none; display: flex; gap: 0; flex: 1; justify-content: center; }
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 0.875rem; font-weight: 500; color: #333;
  text-decoration: none; position: relative; transition: color 0.2s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -1px; left: 14px; right: 14px; height: 2px;
  background: var(--navy);
  transform: scaleX(0); transform-origin: center; transition: transform 0.22s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta-btn {
  margin-left: auto; flex-shrink: 0;
  display: inline-block; padding: 10px 22px;
  background: var(--coral); color: white; text-decoration: none;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; border-radius: 4px; transition: background 0.2s;
}
.nav-cta-btn:hover { background: var(--coral-dk); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── PAGE HERO (compact inner pages) ── */
.page-hero {
  background: var(--navy); padding: 36px 0 32px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,157,217,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb svg { opacity: 0.4; flex-shrink: 0; }
.page-hero h1 {
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 10px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: 0.97rem; color: rgba(255,255,255,0.65); max-width: 580px; line-height: 1.6; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ── USP STRIP ── */
.usp-strip { background: var(--sky-pale); border-bottom: 1px solid #c8e8f5; }
.usp-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid #c8e8f5;
}
.usp-item {
  padding: 18px 22px; display: flex; align-items: center; gap: 12px;
  border-right: 1px solid #c8e8f5;
  border-top: 1px solid #c8e8f5;
  border-bottom: 1px solid #c8e8f5;
}
.usp-icon-wrap {
  width: 38px; height: 38px; background: rgba(212,14,20,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.usp-icon-wrap svg { color: var(--coral); }
.usp-label { font-size: 0.88rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.usp-sub { font-size: 0.72rem; color: var(--text-mid); margin-top: 2px; }

/* ── SECTION SHELL ── */
.section { padding: 56px 0; }
.section-gray { background: var(--gray-light); }
.section-sky  { background: var(--sky-pale); }
.section-navy { background: var(--navy); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--coral); margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 900;
  color: var(--navy); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 10px;
}
.section-sub {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.65; max-width: 600px;
}
.section-hd { margin-bottom: 36px; }
.section-title-white { color: white; }
.section-sub-white { color: rgba(255,255,255,0.65); }

/* ── VEHICLE CARDS ── */
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cars-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.car-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.car-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.car-visual {
  height: 175px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #f2f4f8;
}
.car-visual img { width: 100%; height: 175px; object-fit: contain; padding: 16px 20px; }
.car-pill {
  position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 4px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--navy); color: white;
}
.car-pill-hot   { background: var(--coral); }
.car-pill-green { background: #16a34a; }
.car-body { padding: 18px 20px 20px; }
.car-name { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.car-desc { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.5; }
.car-specs {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.spec { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; color: var(--text-mid); }
.spec svg { color: var(--sky); flex-shrink: 0; }
.car-bottom { display: flex; align-items: center; justify-content: space-between; }
.car-price { font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.car-price small { font-size: 0.72rem; font-weight: 400; color: var(--text-mid); }
.car-btns { display: flex; gap: 7px; }

/* ── BUTTONS ── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 5px; padding: 8px 13px;
  border: 1.5px solid var(--green); color: var(--green);
  background: transparent; border-radius: 4px;
  font-size: 0.78rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.btn-wa:hover { background: var(--green); color: white; }
.btn-rsv {
  display: inline-flex; align-items: center; padding: 8px 14px;
  background: var(--coral); color: white; border: none; border-radius: 4px;
  font-size: 0.78rem; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.03em;
  transition: background 0.2s; cursor: pointer; white-space: nowrap;
}
.btn-rsv:hover { background: var(--coral-dk); }
.btn-coral {
  display: inline-block; padding: 14px 40px;
  background: var(--coral); color: white; text-decoration: none;
  border-radius: 4px; font-size: 0.92rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  transition: background 0.2s, transform 0.15s;
}
.btn-coral:hover { background: var(--coral-dk); transform: translateY(-2px); }
.btn-coral-sm {
  display: inline-block; padding: 11px 28px;
  background: var(--coral); color: white; text-decoration: none;
  border-radius: 4px; font-size: 0.84rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; transition: background 0.2s;
}
.btn-coral-sm:hover { background: var(--coral-dk); }
.btn-navy {
  display: inline-block; padding: 13px 36px;
  border: 2px solid var(--navy); color: var(--navy); text-decoration: none;
  border-radius: 4px; font-size: 0.88rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.2s;
}
.btn-navy:hover { background: var(--navy); color: white; }
.btn-white-outline {
  display: inline-block; padding: 11px 28px;
  border: 2px solid rgba(255,255,255,0.45); color: rgba(255,255,255,0.85);
  text-decoration: none; border-radius: 4px;
  font-size: 0.84rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.2s;
}
.btn-white-outline:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); }
.btn-wa-lg {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  background: var(--green); color: white; text-decoration: none;
  border-radius: 4px; font-size: 0.92rem; font-weight: 700; transition: opacity 0.2s;
}
.btn-wa-lg:hover { opacity: 0.88; }

/* ── FEATURE CARDS ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon {
  width: 50px; height: 50px; background: rgba(212,14,20,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feat-icon svg { color: var(--coral); }
.feat-title { font-size: 0.97rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.feat-text { font-size: 0.86rem; color: var(--text-mid); line-height: 1.68; }
.feat-text a { color: var(--sky); font-weight: 600; text-decoration: none; }
.feat-text a:hover { text-decoration: underline; }

/* ── INFO CARDS (generic) ── */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--sky);
}
.info-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.info-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
.info-icon {
  width: 40px; height: 40px; background: var(--sky-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.info-icon svg { color: var(--sky); }

/* ── STEP LIST ── */
.steps-list { display: flex; flex-direction: column; gap: 18px; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 32px; height: 32px; background: var(--coral); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; flex-shrink: 0;
}
.step-body h4 { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.step-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.6;
}
.check-list li::before {
  content: ''; width: 18px; height: 18px; background: rgba(212,14,20,0.1);
  border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23D40E14' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.check-list li strong { color: var(--navy); }

/* ── TARIFS TABLE ── */
.tarifs-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.tarifs-table {
  width: 100%; border-collapse: collapse; min-width: 560px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.tarifs-table thead { background: var(--navy); color: white; }
.tarifs-table thead th {
  padding: 14px 18px; text-align: left;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.tarifs-table tbody tr { border-bottom: 1px solid var(--border); }
.tarifs-table tbody tr:last-child { border-bottom: none; }
.tarifs-table tbody tr:nth-child(even) { background: var(--sky-pale); }
.tarifs-table tbody tr:nth-child(odd) { background: white; }
.tarifs-table td { padding: 14px 18px; font-size: 0.88rem; color: var(--text); }
.tarifs-table td:first-child { font-weight: 700; color: var(--navy); }
.tarifs-table .price { font-weight: 900; color: var(--coral); font-size: 1rem; }
.tarifs-table .check { color: #22c55e; font-weight: 700; }
.tarifs-table .badge-tbl {
  display: inline-block; padding: 2px 8px; background: var(--coral); color: white;
  border-radius: 3px; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; vertical-align: middle; margin-left: 6px;
}

/* ── FAQ ── */
.faq-wrap { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 19px 0;
  font-family: var(--font); font-size: 0.94rem; font-weight: 700; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--coral); }
.faq-toggle {
  width: 22px; height: 22px; border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s, background 0.25s, border-color 0.25s, color 0.25s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--coral); border-color: var(--coral); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 0 20px; font-size: 0.88rem; color: var(--text-mid); line-height: 1.72; }
.faq-a-inner a { color: var(--sky); font-weight: 600; text-decoration: none; }
.faq-a-inner a:hover { text-decoration: underline; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy); padding: 56px 0; text-align: center; }
.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 900; color: white;
  letter-spacing: -0.025em; margin-bottom: 10px;
}
.cta-band p { font-size: 0.97rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── TWO-COL CONTENT ── */
.content-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.content-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 900; color: var(--navy);
  letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.25;
}
.content-text p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.content-text p strong { color: var(--navy); }
.content-text a { color: var(--sky); font-weight: 600; text-decoration: none; }
.content-text a:hover { text-decoration: underline; }
.content-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ── VIEW ALL LINK ── */
.view-all { text-align: center; margin-top: 36px; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 56px 0 0; }
.footer-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 24px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand-name {
  font-size: 1.05rem; font-weight: 900; color: white;
  letter-spacing: -0.02em; display: block; margin-bottom: 14px;
}
.footer-brand-name em { font-style: normal; color: var(--gold); }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-desc a { color: var(--gold); font-weight: 600; text-decoration: none; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.f-contact-line { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.f-contact-line svg { flex-shrink: 0; opacity: 0.6; }
.f-contact-line a { color: rgba(255,255,255,0.85); text-decoration: none; }
.f-contact-line a:hover { color: white; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--max); margin: 0 auto; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { color: white; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: #888; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #dde4ed; border-radius: 4px;
  font-size: 0.9rem; font-family: var(--font); color: var(--text);
  background: white; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0,157,217,0.13);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--coral); color: white;
  border: none; border-radius: 4px; font-family: var(--font);
  font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--coral-dk); }

/* ── LEGAL (mentions, politique) ── */
.legal-body { max-width: 860px; margin: 0 auto; padding: 56px 24px 72px; }
.legal-body h1 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--navy);
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 3px solid var(--coral);
  letter-spacing: -0.025em;
}
.legal-body h2 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin: 2rem 0 0.75rem; }
.legal-body p, .legal-body li { color: #444; line-height: 1.8; margin-bottom: 0.6rem; font-size: 0.92rem; }
.legal-body ul { padding-left: 1.5rem; }
.legal-body a { color: var(--coral); font-weight: 600; text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-badge {
  display: inline-block; background: var(--coral); color: #fff;
  padding: 0.25rem 0.75rem; border-radius: 4px; font-size: 0.78rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2rem;
}
.rights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.right-card {
  background: var(--gray-light); border-radius: 10px; padding: 1.25rem; border-top: 3px solid var(--coral);
}
.right-card strong { display: block; color: var(--navy); margin-bottom: 0.4rem; font-size: 0.95rem; }
.right-card p { font-size: 0.85rem; margin: 0; }

/* ── MERCI PAGE ── */
.merci-wrap {
  min-height: 72vh; display: flex; align-items: center; justify-content: center;
  padding: 60px 24px; background: var(--gray-light);
}
.merci-card {
  background: white; border-radius: var(--radius); padding: 48px 40px;
  max-width: 540px; width: 100%; text-align: center;
  box-shadow: var(--shadow-md); border-top: 4px solid var(--coral);
}
.merci-icon {
  width: 72px; height: 72px; background: var(--coral); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.merci-card h1 { font-size: 1.75rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.merci-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.merci-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.merci-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-mid); }
.merci-note a { color: var(--coral); font-weight: 600; text-decoration: none; }

/* ── STAT CARDS ── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  background: var(--sky-pale); border-radius: var(--radius); padding: 22px 18px;
  border-top: 3px solid var(--sky); text-align: center;
}
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-lbl { font-size: 0.78rem; color: var(--text-mid); margin-top: 6px; }

/* ── CONTACT CHANNELS ── */
.channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.channel-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm); text-align: center;
  border-top: 3px solid var(--coral); transition: transform 0.25s, box-shadow 0.25s;
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.channel-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,14,20,0.08);
}
.channel-icon svg { color: var(--coral); }
.channel-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.channel-info { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 18px; }
.channel-info strong { color: var(--navy); display: block; font-size: 0.95rem; margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .cars-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .content-cols { gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Topbar */
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; font-size: 0.74rem; }

  /* Nav */
  .navbar { position: relative; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: white; border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--border); padding: 4px 0 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12); z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid #f0f3f7; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { padding: 13px 20px; font-size: 0.92rem; color: var(--navy); font-weight: 600; }
  .nav-links a::after { display: none; }
  .nav-cta-btn { display: none; }

  /* Page hero */
  .page-hero { padding: 28px 0 24px; }
  .page-hero h1 { font-size: 1.5rem; }

  /* Section */
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .section-hd { margin-bottom: 28px; }

  /* Grids */
  .cars-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cars-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .feat-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .info-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .content-cols { grid-template-columns: 1fr; gap: 28px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  /* CTA */
  .cta-band { padding: 44px 0; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-coral, .btn-wa-lg, .btn-navy { width: 100%; max-width: 340px; text-align: center; justify-content: center; padding: 14px 20px; }

  /* Footer */
  .footer { padding: 44px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 14px 16px; }

  /* Car bottom */
  .car-bottom { flex-wrap: wrap; gap: 10px; }
  .car-btns { width: 100%; }
  .btn-wa, .btn-rsv { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .logo-mlv { font-size: 1.45rem; }
  .logo-sub { font-size: 0.46rem; letter-spacing: 0.1em; }
  .cars-grid { max-width: 100%; }
  .cars-grid-4 { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .usp-grid { grid-template-columns: 1fr; border-left: none; }
  .usp-item { border-top: none; border-left: 1px solid #c8e8f5; }
  .usp-item:first-child { border-top: 1px solid #c8e8f5; }
  .merci-card { padding: 32px 20px; }
  .legal-body { padding: 40px 16px 56px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
  .nav-inner { padding: 0 14px; }
  .section { padding: 28px 0; }
  .container { padding: 0 12px; }
}

/* ── MOBILE MENU (slide-down panel used by inner pages) ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute; top: 68px; left: 0; right: 0; z-index: 199;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 4px 0 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 13px 20px;
  font-size: 0.92rem; font-weight: 600; color: var(--navy);
  text-decoration: none; border-bottom: 1px solid #f0f3f7;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--gray-light); }
.mobile-menu a.nav-cta-btn {
  background: var(--coral); color: white; border-radius: 4px;
  margin: 8px 16px; text-align: center; display: block;
  font-size: 0.84rem; letter-spacing: 0.04em;
}
.mobile-menu a.nav-cta-btn:hover { background: var(--coral-dk); }

/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform 0.25s, opacity 0.2s; }
