/* ═══════════════════════════════════════════════════════════════
   ÉDUCATION FAMILIALE DE LAVAL — DESIGN SYSTEM
   Premium World-Class Design · 2026
═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Primary palette */
  --navy: #3D6B59;
  --navy-mid: #2C4F42;
  --navy-light: #5B8FA8;
  --blue: #5B8FA8;
  --blue-soft: #7AADC6;
  --blue-pale: #E6F0F5;

  /* Accent — warm */
  --gold: #E8916E;
  --gold-light: #F2AE94;
  --gold-pale: #FEECE5;
  --gold-dark: #C96B47;
  --coral: #E8916E;
  --coral-pale: #FEECE5;

  /* Accent — cool */
  --teal: #3D6B59;
  --teal-light: #E8F5F1;
  --green: #2C3E2D;
  --green-light: #DCEBE3;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --gray-50: #F5E6D3;
  --gray-100: #EFE0CC;
  --gray-200: #E0CDB5;
  --gray-300: #C2B6A6;
  --gray-400: #939C94;
  --gray-500: #6B7B6C;
  --gray-600: #5C6A5D;
  --gray-700: #3E4E3F;
  --gray-800: #2C3E2D;
  --gray-900: #1C281D;
  --text: #2C3E2D;
  --text-muted: #6B7B6C;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 25px 60px -15px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 15px 40px -10px rgba(232, 168, 56, 0.35);
  --shadow-blue: 0 15px 40px -10px rgba(37, 99, 235, 0.25);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.06);

  /* Radii */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Functional Accents */
  --accent-parent: #E8916E;
  --accent-edu: #5B8FA8;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.7;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

h3,
h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

button,
.section-badge {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 29, 58, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, box-shadow 0.3s, height 0.3s;
}

.navbar.scrolled {
  background: rgba(11, 29, 58, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}

.navbar.scrolled .nav-logo {
  height: 42px;
}

.nav-brand-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.6;
  max-width: 260px;
}

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

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-link-parent.active {
  background: rgba(245, 197, 99, 0.12) !important;
  border-color: rgba(245, 197, 99, 0.5);
}

.nav-link-edu.active {
  background: rgba(125, 211, 252, 0.1) !important;
  border-color: rgba(125, 211, 252, 0.45);
}

.nav-link-parent {
  color: var(--gold-light) !important;
  border: 1.5px solid rgba(245, 197, 99, 0.3);
}

.nav-link-parent:hover {
  background: rgba(245, 197, 99, 0.12) !important;
  border-color: rgba(245, 197, 99, 0.5);
}

.nav-link-parent::after {
  background: var(--gold-light) !important;
}

.nav-link-edu {
  color: #7DD3FC !important;
  border: 1.5px solid rgba(125, 211, 252, 0.25);
}

.nav-link-edu:hover {
  background: rgba(125, 211, 252, 0.1) !important;
  border-color: rgba(125, 211, 252, 0.45);
}

.nav-link-edu::after {
  background: #7DD3FC !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(61, 107, 89, 0.55) 0%, rgba(44, 62, 45, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
  font-weight: 700;
}

.hero-welcome {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--accent-parent);
  color: #fff;
  border: 2px solid var(--accent-parent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 145, 110, 0.3);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-edu {
  background: var(--accent-edu);
  color: #fff;
  border: 2px solid var(--accent-edu);
}

.btn-edu:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 143, 168, 0.3);
  filter: brightness(1.05);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SÉLECTEUR D'AUDIENCE
═══════════════════════════════════════════════════════════════ */
.audience-selector {
  background: var(--gray-50);
  padding: 40px 24px 80px;
}

.audience-selector h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 48px;
}

.audience-cards-simple {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.ac-image-card {
  flex: 1;
  max-width: 500px;
  background: #F7F9FC;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

.ac-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.ac-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #E2E8F0;
}

.ac-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ac-image-card:hover .ac-card-img {
  transform: scale(1.03);
}

.ac-card-content {
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.ac-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.subtitle-parent {
  color: #c48c34;
}

.subtitle-edu {
  color: #0d9488;
}

.ac-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1A365D;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ac-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ac-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.ac-image-card:hover .ac-link {
  opacity: 0.8;
}

.link-parent {
  color: #c48c34;
}

.link-edu {
  color: #3182CE;
}

@media (max-width: 768px) {
  .audience-cards-simple {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════════════════════ */
.section {
  padding: 50px 0 100px;
  position: relative;
}

.section-light {
  background: var(--off-white);
}

.section-warm {
  background: linear-gradient(180deg, #FFFBF0 0%, #FFF8E7 100%);
}

.section-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

/* Section header */
.section-header {
  margin-bottom: 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.badge-parent {
  background: rgba(232, 168, 56, 0.12);
  color: var(--gold-dark);
}

.badge-edu {
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal);
}

.badge-shared {
  background: var(--blue-pale);
  color: var(--blue);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 400;
}

.section-dark .section-title {
  color: #fff;
}

.section-divider {
  height: 4px;
  width: 60px;
  border-radius: 4px;
  margin: 0 0 20px;
}

.section-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

.divider-parent {
  background: linear-gradient(90deg, var(--gold), var(--coral));
}

.divider-edu {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
}

.section-desc.centered {
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ── AUDIENCE SEPARATOR ────────────────────────────────────── */
.audience-separator {
  padding: 24px;
  text-align: center;
}

.aud-sep-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 48px;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.aud-sep-parent {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  border: 2px solid rgba(232, 168, 56, 0.4);
  box-shadow: 0 8px 25px rgba(232, 168, 56, 0.2);
  color: var(--gold-dark);
}

.aud-sep-parent strong {
  color: var(--gold-dark);
}

.aud-sep-edu {
  background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
  border: 2px solid rgba(13, 148, 136, 0.4);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.2);
  color: var(--teal);
}

.aud-sep-edu strong {
  color: var(--teal);
}

/* ── URGENCY BANNER ───────────────────────────────────────── */
.urgency-banner {
  background: linear-gradient(90deg, #FEF2F2 0%, #FFF1F2 100%);
  border-bottom: 2px solid #FECDD3;
  padding: 16px 0;
  margin-bottom: -1px;
}

.urgency-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.urgency-icon {
  background: #FFE4E6;
  color: #E11D48;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.1);
}

.urgency-text {
  flex-grow: 1;
}

.urgency-text strong {
  display: block;
  color: #BE123C;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.urgency-text p {
  color: #881337;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* ── FORM ADDITIONS ───────────────────────────────────────── */
.form-trust-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-trust-banner svg {
  color: var(--green);
  flex-shrink: 0;
}

.form-submit-wrap {
  text-align: center;
}

.form-submit-wrap .submit-btn {
  width: 100%;
  margin-bottom: 12px;
}

.submit-assurance {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  margin: 0;
}

.form-section-edu .submit-assurance {
  color: rgba(255, 255, 255, 0.9);
}

.portail-reminder {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.portail-reminder strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.portail-reminder p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.portail-link-small {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}

.portail-link-small:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  transition: top var(--transition-fast);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════════════════════ */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.temoignage-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left;
}

.temoignage-card:hover {
  transform: translateY(-4px);
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--accent-edu);
  opacity: 0.15;
  position: absolute;
  top: 0px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.temoignage-card p {
  color: var(--text-sec);
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.temoignage-card .author strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

.temoignage-card .author span {
  font-size: 0.85rem;
  color: var(--accent-edu);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── NAVIGATION DOTS ───────────────────────────────────────── */
.nav-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 29, 58, 0.2);
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.nav-dot:hover,
.nav-dot.active {
  background: var(--blue);
  transform: scale(1.4);
}

/* ── FLOATING ELEMENTS ─────────────────────────────────────── */
.floating-elements {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
  pointer-events: none;
}

.floating-elements>* {
  pointer-events: auto;
}

.back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease-out);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.floating-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════
   ADVANTAGE CARDS
═══════════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid rgba(61, 107, 89, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.adv-card:hover {
  transform: translateY(-2px);
}

.adv-card-parent:hover {
  border-color: var(--accent-parent);
}

.adv-card-edu:hover {
  border-color: var(--accent-edu);
}

.adv-icon {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.adv-card-edu .adv-icon {
  color: var(--accent-edu);
}

.adv-icon svg,
.adv-icon img {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.adv-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.adv-card p {
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   RAISON CARDS
═══════════════════════════════════════════════════════════════ */
.raisons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.raison-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease-out);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.raison-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.raison-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.raison-card:hover::after {
  opacity: 1;
}

.raison-card.rc-parent {
  border-top-color: var(--gold);
}

.raison-card.rc-edu {
  border-top-color: var(--blue);
}

.raison-icon {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}

.raison-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.raison-card:hover .raison-icon {
  transform: scale(1.2);
}

.raison-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   BUREAUX COORDONNATEURS
═══════════════════════════════════════════════════════════════ */
.bureaux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bureau-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--bureau-color, var(--primary));
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bureau-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.bureau-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.bureau-card .secteur {
  color: var(--text-sec);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bureau-card .codes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.code-tag {
  background: #F1F5F9;
  color: var(--text-sec);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.bureau-card .tel {
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: auto;
}

.bureau-card .tel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  padding: 12px 16px;
  background: #F8FAFC;
  color: var(--bureau-color, var(--primary));
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.bureau-card .tel a:hover {
  background: var(--bureau-color, var(--primary));
  color: #FFFFFF;
}

/* ═══════════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════════ */
.form-section {
  padding: 50px 0 100px;
}

.form-section-parent {
  background: linear-gradient(180deg, #FDF5E6 0%, #FFF0D6 100%);
}

.form-section-edu {
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
}

.form-section-parent .section-title {
  color: var(--navy);
}

.form-section-parent .section-desc {
  color: var(--gray-700);
}

.form-section-edu .section-title {
  color: #fff;
}

.form-section-edu .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.form-section-edu .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.form-box {
  max-width: 640px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-section-edu .form-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-section-edu .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #EAECEF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text);
  font-family: inherit;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
  opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--accent-parent);
  box-shadow: 0 0 0 4px rgba(232, 145, 110, 0.1);
}

.form-section-edu .form-group input,
.form-section-edu .form-group select,
.form-section-edu .form-group textarea {
  background: #FFFFFF;
  border: 2px solid transparent;
  color: #1C281D;
  font-weight: 600;
}

.form-section-edu .form-group input:focus,
.form-section-edu .form-group select:focus,
.form-section-edu .form-group textarea:focus {
  background: #FFFFFF;
  border-color: var(--accent-edu);
  box-shadow: 0 0 0 4px rgba(91, 143, 168, 0.15);
}

.form-group select option {
  color: var(--text);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Postal detection */
.postal-wrap {
  position: relative;
}

.postal-wrap input {
  padding-right: 140px;
}

.postal-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.postal-btn:hover {
  background: var(--primary-light);
  transform: translateY(-50%) scale(1.02);
}

.bureau-result {
  background: #F0FDF4;
  border: 2px solid #86EFAC;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 12px;
  display: none;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  animation: fadeUp 0.3s var(--ease-out);
  color: var(--navy);
}

.bureau-result.show {
  display: flex;
}

.form-section-edu .bureau-result {
  color: #fff;
  background: rgba(22, 101, 52, 0.4);
  border-color: #4ADE80;
}

.bureau-result .br-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.bureau-result strong {
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-weight: 800;
}

.form-section-edu .bureau-result strong {
  color: #86EFAC;
}

.bureau-result span:not(.br-icon) {
  color: var(--navy);
  font-weight: 600;
}

.form-section-edu .bureau-result span:not(.br-icon) {
  color: rgba(255, 255, 255, 0.95);
}

/* Submit buttons */
.submit-btn {
  width: 100%;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 16px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.submit-btn:hover::after {
  opacity: 1;
}

.submit-parent {
  background: var(--accent-parent);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 145, 110, 0.25);
}

.submit-parent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 145, 110, 0.35);
}

.submit-edu {
  background: var(--accent-edu);
  color: white;
  box-shadow: 0 4px 15px rgba(91, 143, 168, 0.25);
}

.submit-edu:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 143, 168, 0.35);
}

/* Success message */
.success-msg {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-msg.show {
  display: block;
  animation: fadeUp 0.5s var(--ease-out);
}

.success-emoji {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.success-msg h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.form-section-edu .success-msg h3 {
  color: var(--gold-light);
}

.success-msg p {
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 450px;
  margin: 0 auto;
}

.form-section-edu .success-msg p {
  color: rgba(255, 255, 255, 0.75);
}

/* ═══════════════════════════════════════════════════════════════
   PORTAIL BAND
═══════════════════════════════════════════════════════════════ */
.portail-band {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFEDD5 100%);
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(232, 168, 56, 0.15);
  border-bottom: 1px solid rgba(232, 168, 56, 0.15);
  position: relative;
  overflow: hidden;
}

.portail-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(232, 168, 56, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.portail-band strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.portail-band p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.portail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 15px rgba(11, 29, 58, 0.2);
}

.portail-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.3);
  background: var(--navy-mid);
}

/* ═══════════════════════════════════════════════════════════════
   NOTICE
═══════════════════════════════════════════════════════════════ */
.notice-band {
  background: linear-gradient(135deg, #F0FDF4, #E0F2FE);
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  max-width: 900px;
  margin: 64px auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.notice-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: var(--accent-edu);
}

.notice-text h4 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.notice-text p {
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESSUS (STEPS)
═══════════════════════════════════════════════════════════════ */
.processus-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 48px;
  gap: 16px;
}

.processus-wrap::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--accent-edu);
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-out);
}

.process-step:hover {
  transform: translateY(-5px) scale(1.03);
}

.process-number {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--accent-edu);
  color: var(--accent-edu);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(91, 143, 168, 0.2);
  transition: all 0.3s var(--ease-out);
}

.process-step:hover .process-number {
  transform: scale(1.15);
  background: var(--accent-edu);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(91, 143, 168, 0.4);
}

.process-step h4 {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
  padding: 0 4px;
}

.process-step p {
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.faq-item summary {
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  /* Hide default arrow */
  position: relative;
  transition: background var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--gray-50);
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-edu);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-sec);
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  margin-top: 4px;
}



/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #2C3E2D;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--gold);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .raisons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bureaux-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .nav-dots {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE NAV (≤ 1150px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1150px) {
  .navbar {
    padding: 0 16px;
    justify-content: space-between;
  }

  .nav-brand {
    gap: 10px;
    flex-shrink: 1;
    min-width: 0;
    flex: 1;
  }

  .hamburger {
    display: flex !important;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .nav-brand-text {
    font-size: 0.6rem;
    max-width: 100%;
    line-height: 1.3;
  }

  .nav-logo {
    height: 38px;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(11, 29, 58, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
    animation: slideDown 0.3s var(--ease-out);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }

  .audience-cards-simple {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
  }

  .ac-image-card {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .raisons-grid {
    grid-template-columns: 1fr;
  }

  .bureaux-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-box {
    padding: 28px 20px;
  }

  .section {
    padding: 64px 0;
  }

  .form-section {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 100px 20px 48px;
    min-height: auto;
    min-height: 100dvh;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .ac-img {
    height: 170px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TIMELINE & CARDS (≤ 900px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .processus-wrap {
    flex-direction: column;
    gap: 32px;
  }
  
  .processus-wrap::before {
    top: 32px;
    bottom: 32px;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
  }
  
  .process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
    text-align: left;
    padding-right: 0;
  }
  
  .process-step:hover {
    transform: translateX(5px);
  }
  
  .process-number {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
  }
  
  .process-step h4 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 4px;
    align-self: end;
    padding: 0;
  }
  
  .process-step p {
    grid-column: 2;
    grid-row: 2;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL (≤ 480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .container,
  .container-sm {
    padding: 0 16px;
  }

  .hero {
    padding: 88px 16px 36px;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 8px 16px;
    letter-spacing: 1.5px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .adv-card,
  .raison-card,
  .bureau-card {
    padding: 24px 20px;
  }

  .nav-brand-text {
    font-size: 0.52rem;
    max-width: 150px;
  }

  .nav-logo {
    height: 36px;
  }

  .aud-sep-inner {
    font-size: 0.82rem;
    padding: 12px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════════════ */
@media print {

  .navbar,
  .hamburger,
  .floating-shapes,
  .hero-orbs {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 20px;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}