/* =============================================================
   PERMIS EXPRESS BELGE — Feuille de styles principale
   Design tokens, composants partagés, et utilitaires
   ============================================================= */

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Couleurs */
  --navy: #0B1A33;
  --navy-2: #142847;
  --navy-deep: #07142A;
  --gold: #E0B252;
  --gold-light: #F1CE82;
  --cream: #FAF7F1;
  --bg: #FFFFFF;
  --text: #1A2238;
  --muted: #5C6A85;
  --border: #E6E8EE;
  --success: #0E8F5E;
  --error: #B23636;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(11, 26, 51, .06);
  --shadow-md: 0 8px 24px rgba(11, 26, 51, .08);
  --shadow-lg: 0 24px 60px rgba(11, 26, 51, .14);
  --shadow-gold: 0 6px 18px rgba(224, 178, 82, .35);

  /* Géométrie */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { width: 57px; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ============ LAYOUT ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.text-muted { color: var(--muted); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .98rem;
  transition: all .25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(224, 178, 82, .45); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border-color: rgba(255, 255, 255, .3); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-ghost { color: var(--navy); padding: 10px 16px; }
.btn-ghost:hover { color: var(--gold); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  background: var(--navy);
  color: #fff;
  font-size: .85rem;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: .02em;
}
.announce strong { color: var(--gold); }
.announce a { color: #fff; text-decoration: underline; margin-left: 6px; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.3rem;
  color: var(--navy);
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
}
.logo-img {
  height: 57px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .68rem; font-weight: 500;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 10px 14px; font-weight: 500; font-size: .95rem;
  border-radius: 8px; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy); font-size: .95rem;
}
.nav-phone svg { color: var(--gold); }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2px; background: var(--navy); position: relative; transition: .25s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; width: 22px; height: 2px;
  background: var(--navy); left: 0; transition: .25s;
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile { display: none; }

/* ============ HERO (homepage) ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 120px;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224, 178, 82, .18) 0%, transparent 65%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(224, 178, 82, .08) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-lead { font-size: 1.15rem; color: rgba(255, 255, 255, .8); margin: 24px 0 32px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255, 255, 255, .85); }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero-card {
  background: #fff; color: var(--text);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-tag {
  position: absolute; top: -16px; right: 32px;
  background: var(--gold); color: var(--navy);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.hero-card h3 { margin-bottom: 8px; }
.hero-card .price-row { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 24px; }
.hero-card .price { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--navy); }
.hero-card .price-unit { color: var(--muted); font-size: .95rem; }
.hero-card .features { list-style: none; margin: 0 0 28px; }
.hero-card .features li {
  padding: 10px 0; display: flex; align-items: center; gap: 12px;
  font-size: .95rem; border-bottom: 1px solid var(--border);
}
.hero-card .features li:last-child { border-bottom: none; }
.hero-card .features li::before {
  content: '';
  width: 22px; height: 22px;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E0B252' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.hero-card .btn { width: 100%; }

/* ============ STATS BAR ============ */
.stats {
  background: var(--cream);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: .9rem; color: var(--muted); margin-top: 8px; letter-spacing: .04em; }

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.5rem;
}
.service-card h3 { margin-bottom: 10px; }
.service-card .desc { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.service-card .meta { font-size: .85rem; color: var(--gold); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--navy);
  font-weight: 600; font-size: .9rem;
}
.service-link svg { transition: transform .2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ============ WHY US ============ */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: start; }
.why-list { display: grid; gap: 28px; margin-top: 32px; }
.why-item { display: flex; gap: 18px; }
.why-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--navy); color: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.2rem;
}
.why-item h4 { font-family: 'Inter', sans-serif; font-size: 1.08rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.why-item p { color: var(--muted); font-size: .95rem; }
.why-visual {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.why-visual h3 { margin-bottom: 24px; }
.why-badges { display: flex; flex-direction: column; gap: 14px; }
.why-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 12px;
  font-size: .92rem;
}
.why-badge strong { color: var(--navy); }
.why-badge .icon-circle {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold); color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ============ PROCESS ============ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute; top: 38px; left: 12%; right: 12%;
  height: 2px; background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-circle {
  width: 76px; height: 76px;
  background: #fff;
  border: 2px solid var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.6rem;
  box-shadow: 0 6px 18px rgba(224, 178, 82, .25);
}
.process-step h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: .9rem; color: var(--muted); padding: 0 8px; }

/* ============ PRICING ============ */
.pricing { background: var(--navy); color: #fff; }
.pricing h2 { color: #fff; }
.pricing .section-header p { color: rgba(255, 255, 255, .7); }
.pricing .eyebrow { color: var(--gold); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: all .3s;
}
.price-card:hover { border-color: rgba(224, 178, 82, .4); transform: translateY(-6px); }
.price-card.featured {
  background: #fff; color: var(--text);
  position: relative; transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3 { color: var(--navy); }
.price-card .pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  padding: 6px 18px; border-radius: var(--radius-pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.price-card .pname { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem; margin-bottom: 6px; }
.price-card .pdesc { font-size: .9rem; opacity: .75; margin-bottom: 22px; }
.price-card.featured .pdesc { color: var(--muted); opacity: 1; }
.price-card .pprice { display: flex; align-items: baseline; gap: 4px; margin-bottom: 26px; }
.price-card .pamount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; }
.price-card .punit { opacity: .7; font-size: .9rem; }
.price-card.featured .punit { color: var(--muted); opacity: 1; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 28px; }
.price-card ul li { padding: 9px 0; font-size: .92rem; display: flex; align-items: center; gap: 10px; opacity: .9; }
.price-card.featured ul li { opacity: 1; }
.price-card ul li::before {
  content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0;
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
}
.price-card .btn { width: 100%; }
.pricing-note { text-align: center; margin-top: 36px; font-size: .88rem; color: rgba(255, 255, 255, .6); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 18px; font-size: 1.1rem; }
.testi-card blockquote { font-size: 1rem; line-height: 1.7; color: var(--text); flex: 1; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.testi-author .name { font-weight: 600; font-size: .95rem; color: var(--navy); }
.testi-author .role { font-size: .82rem; color: var(--muted); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 0; }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 1.05rem;
  color: var(--navy); text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: transform .25s, background .2s;
  color: var(--navy);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 0 24px; color: var(--muted); font-size: .98rem; line-height: 1.75; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; right: -150px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224, 178, 82, .15) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255, 255, 255, .8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-info h3 { color: #fff; margin-bottom: 16px; }
.contact-info > p { color: rgba(255, 255, 255, .75); margin-bottom: 32px; }
.contact-list { display: grid; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .icon {
  width: 44px; height: 44px;
  background: rgba(224, 178, 82, .15);
  color: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .label { font-size: .82rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item .value { font-size: 1rem; color: #fff; line-height: 1.5; }
.contact-item a.value:hover { color: var(--gold); }
.socials {
  display: flex; gap: 10px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.social {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .8);
  transition: all .2s;
}
.social:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.form h3 { margin-bottom: 8px; }
.form .form-sub { color: var(--muted); font-size: .95rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 178, 82, .18);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; font-size: .85rem; color: var(--muted); }
.form-check input { margin-top: 3px; flex-shrink: 0; }
.form-check a { color: var(--navy); text-decoration: underline; }
.form .btn { width: 100%; }
.form-msg { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: .9rem; display: none; }
.form-msg.success { background: #E7F6EE; color: var(--success); display: block; }
.form-msg.error { background: #FCEBEB; color: var(--error); display: block; }

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224, 178, 82, .18) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero h1 { color: #fff; }
.page-hero h1 .accent { color: var(--gold); font-style: italic; }
.page-hero .subtitle { color: rgba(255, 255, 255, .75); font-size: 1.05rem; margin-top: 14px; max-width: 640px; position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: rgba(255, 255, 255, .6);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255, 255, 255, .85); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg, .breadcrumb span:not(.current) { opacity: .5; }

.page-hero-grid {
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.page-hero-lead { font-size: 1.1rem; color: rgba(255, 255, 255, .78); margin: 20px 0 28px; max-width: 560px; }

.hero-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.meta-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-pill);
  font-size: .88rem;
}
.meta-pill svg { color: var(--gold); }

.hero-side-card {
  background: #fff; color: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-side-card .label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.hero-side-card .price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.hero-side-card .price-sub { font-size: .9rem; color: var(--muted); margin-bottom: 24px; }
.quick-list { list-style: none; margin-bottom: 24px; }
.quick-list li { padding: 9px 0; display: flex; align-items: center; gap: 10px; font-size: .92rem; border-bottom: 1px solid var(--border); }
.quick-list li:last-child { border-bottom: none; }
.quick-list li svg { color: var(--gold); flex-shrink: 0; }
.hero-side-card .btn { width: 100%; }

/* ============ BENTO / FEATURE LISTS ============ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s;
}
.bento-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-card .ico {
  width: 46px; height: 46px;
  background: var(--cream); color: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.bento-card h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.bento-card p { font-size: .92rem; color: var(--muted); margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split-text h2 { margin-bottom: 18px; }
.split-text p { color: var(--muted); margin-bottom: 14px; }
.feature-list { margin-top: 28px; display: grid; gap: 18px; }
.feature-list .item { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .item-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--cream); color: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-list h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.feature-list p { font-size: .92rem; color: var(--muted); margin: 0; }

.split-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.curriculum-list { list-style: none; display: grid; gap: 14px; margin-top: 18px; }
.curriculum-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: .94rem;
}
.curriculum-list li .num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
}

/* ============ TIMELINE ============ */
.timeline-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
}
.timeline { display: grid; gap: 0; position: relative; }
.timeline-step { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 18px 0; position: relative; }
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute; left: 39px; top: 62px; bottom: -6px;
  width: 2px; background: var(--border);
}
.timeline-circle {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.4rem;
  color: var(--navy);
  position: relative; z-index: 1;
}
.timeline-content h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; padding-top: 24px; }
.timeline-content p { color: var(--muted); font-size: .94rem; }

/* ============ LEGAL PAGES ============ */
.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224, 178, 82, .18) 0%, transparent 65%);
  border-radius: 50%;
}
.legal-hero h1 { color: #fff; position: relative; z-index: 1; }

.legal-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 64px; padding: 80px 0;
}
.legal-toc {
  position: sticky; top: 100px;
  align-self: start;
  border-left: 2px solid var(--border);
  padding-left: 20px;
}
.legal-toc h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
  color: var(--muted); margin-bottom: 14px;
}
.legal-toc ul { list-style: none; }
.legal-toc li { margin-bottom: 10px; }
.legal-toc a { font-size: .92rem; color: var(--muted); transition: color .2s; }
.legal-toc a:hover { color: var(--gold); }

.legal-content { max-width: 780px; line-height: 1.7; }
.legal-content h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-top: 48px; margin-bottom: 14px;
}
.legal-content h3 {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-top: 28px; margin-bottom: 10px;
  color: var(--navy);
}
.legal-content p { margin-bottom: 14px; }
.legal-content .lede { font-size: 1.05rem; color: var(--muted); margin-bottom: 8px; }
.legal-content ul { padding-left: 24px; margin: 8px 0 14px; }
.legal-content ul li { margin-bottom: 8px; }
.legal-content strong { color: var(--navy); }
.legal-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--gold); }

.last-update {
  display: inline-block;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: .82rem; color: var(--muted);
  margin-bottom: 24px;
}

.callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 18px 0;
  font-size: .94rem;
}
.callout strong { display: block; color: var(--navy); margin-bottom: 6px; }

.info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 20px 0;
}
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.info-grid .label {
  font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 4px;
}
.info-grid .value { font-size: .96rem; color: var(--navy); font-weight: 500; }

.data-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0; font-size: .94rem;
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.data-table th {
  background: var(--cream);
  text-align: left; padding: 14px 18px;
  font-weight: 600; color: var(--navy);
  font-size: .88rem; letter-spacing: .04em;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }

.rights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 20px 0; }
.right-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.right-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.right-card p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.55; }

.contact-box {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
}
.contact-box h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.25rem;
  margin-bottom: 10px;
}
.contact-box p { color: rgba(255, 255, 255, .85); margin-bottom: 8px; }
.contact-box a { color: var(--gold); font-weight: 600; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .92rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-about p { font-size: .92rem; line-height: 1.7; margin: 16px 0 20px; }
.footer-about .logo { color: #fff; }
.footer-about .logo small { color: rgba(255, 255, 255, .5); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: .92rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: .82rem;
}
.footer-legal .legal-info { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal .legal-info span { color: rgba(255, 255, 255, .55); }
.footer-legal a { color: rgba(255, 255, 255, .7); }
.footer-legal a:hover { color: var(--gold); }

/* ============ FLOATING WHATSAPP ============ */
.whats-float {
  position: fixed; bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: transform .25s;
  animation: pulseRing 2s infinite;
}
.whats-float:hover { transform: scale(1.08); }
@keyframes pulseRing {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid, .why-grid, .contact-grid, .page-hero-grid, .split { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .price-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .price-card.featured { transform: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; border-left: none; border-top: 2px solid var(--border); padding: 24px 0 0; }
  .rights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .nav-mobile {
    display: block;
    position: fixed; top: 80px; left: 0; right: 0;
    background: #fff;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform .3s;
  }
  .nav-mobile.open { transform: translateY(0); }
  .nav-mobile a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 500; }
  .nav-mobile a:last-child { border-bottom: none; }
  .nav-mobile .btn { margin-top: 16px; width: 100%; }
  .hero { padding: 60px 0 80px; }
  .services-grid, .price-grid, .testi-grid, .footer-grid, .bento { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .form { padding: 32px 24px; }
  .hero-card { padding: 28px 24px; }
  h1 { font-size: 2.1rem; }
  .stat-num { font-size: 2rem; }
  .info-grid { grid-template-columns: 1fr; }
  .legal-layout { padding: 48px 0; }
  .timeline-step { grid-template-columns: 60px 1fr; gap: 18px; }
  .timeline-circle { width: 60px; height: 60px; font-size: 1.2rem; }
  .timeline-step:not(:last-child)::after { left: 29px; top: 50px; }
  .timeline-content h4 { padding-top: 16px; }
  .timeline-wrap, .split-card, .hero-side-card { padding: 28px 22px; }
  .data-table { font-size: .86rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
}
