/* ========================================
   POLLUX INFORMATIQUE — Design System
   Bleu #1F2A44 · Or #F4C542 · Sauge #6FA6A1
   Anthracite #2E2E2E · Blanc cassé #FAFAF7
   Typo : Inter + Source Sans 3
   ======================================== */

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

:root {
  --blue: #1F2A44;
  --blue-light: #2B3A5C;
  --blue-dark: #141C2F;
  --blue-glow: rgba(31, 42, 68, 0.15);
  --sage: #6FA6A1;
  --sage-light: #8CBDB8;
  --sage-dark: #5A8A85;
  --sage-glow: rgba(111, 166, 161, 0.12);
  --gold: #F4C542;
  --gold-dark: #D4A830;
  --gold-light: #F8D76A;
  --gold-glow: rgba(244, 197, 66, 0.18);
  --anthracite: #2E2E2E;
  --offwhite: #FAFAF7;
  --text: #3A3A3A;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --border: #E5E7EB;
  --error: #ef4444;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(244, 197, 66, 0.3);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.7; font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--blue); line-height: 1.2; font-weight: 700;
}

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s var(--ease);
  border: 2px solid transparent; white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue); border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(244,197,66,0.2);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); filter: brightness(1.05); }
.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--border); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-glow); }
.btn--white { background: #fff; color: var(--blue); border-color: #fff; }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: all 0.35s var(--ease);
}
.header--solid {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__img { height: 42px; width: auto; transition: transform 0.3s var(--ease); }
.logo:hover .logo__img { transform: scale(1.05); }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--blue); }
.logo__suffix { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.68rem; color: var(--sage); text-transform: uppercase; letter-spacing: 0.1em; }

/* Header on dark bg */
.header--dark .logo__name { color: #fff; }
.header--dark .logo__suffix { color: var(--gold); }
.header--dark .nav__link { color: rgba(255,255,255,0.8); }
.header--dark .nav__link:hover { color: #fff; }
.header--dark .header__burger span { background: #fff; }

.header--solid .logo__name { color: var(--blue); }
.header--solid .logo__suffix { color: var(--sage); }
.header--solid .nav__link { color: var(--text); }

.nav__list { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav__link {
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500;
  color: var(--text); padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease); position: relative;
}
.nav__link:hover { color: var(--blue); background: rgba(31,42,68,0.04); }
.nav__link--active { color: var(--gold-dark); font-weight: 600; }
.nav__link--active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px;
  background: var(--gold); border-radius: 2px;
}

.header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 110; }
.header__burger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: all 0.3s var(--ease); }
.header__burger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger--active span:nth-child(2) { opacity: 0; }
.header__burger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--blue); position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}
.hero__orb--gold { width: 500px; height: 500px; background: rgba(244,197,66,0.08); top: -10%; right: -5%; animation-delay: 0s; }
.hero__orb--sage { width: 400px; height: 400px; background: rgba(111,166,161,0.06); bottom: -10%; left: -5%; animation-delay: 4s; }
.hero__orb--blue { width: 300px; height: 300px; background: rgba(43,58,92,0.15); top: 50%; left: 30%; animation-delay: 2s; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero__inner { display: flex; align-items: center; gap: 80px; position: relative; z-index: 1; width: 100%; }
.hero__content { flex: 1; }
.hero__visual { flex: 0 0 340px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: rgba(244,197,66,0.1); color: var(--gold);
  border-radius: 100px; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600;
  border: 1px solid rgba(244,197,66,0.2); margin-bottom: 24px;
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); color: #fff;
  margin-bottom: 24px; letter-spacing: -0.02em; line-height: 1.15;
}
.hero__title-gold { color: var(--gold); }
.hero__typed-cursor { display: inline-block; width: 3px; height: 1em; background: var(--gold); margin-left: 4px; animation: blink 1s step-end infinite; vertical-align: text-bottom; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 520px; line-height: 1.8; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.5); }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.hero__mascot-wrap { position: relative; }
.hero__mascot {
  width: 320px; height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.3));
  animation: mascot-bob 5s ease-in-out infinite;
}
@keyframes mascot-bob { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
.hero__mascot-glow {
  position: absolute; inset: -20%; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(244,197,66,0.12) 0%, transparent 70%);
}

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section--alt { background: var(--offwhite); }
.section--dark { background: var(--blue); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.7); }

.section__badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
  border-radius: 100px; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 16px;
}
.section__badge--gold { color: var(--gold-dark); background: var(--gold-glow); border: 1px solid rgba(244,197,66,0.25); }
.section__badge--sage { color: var(--sage); background: var(--sage-glow); border: 1px solid rgba(111,166,161,0.2); }
.section__badge--white { color: var(--gold); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__title { font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 14px; letter-spacing: -0.01em; }
.section__subtitle { color: var(--text-light); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 32px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg); transition: all 0.35s var(--ease); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card__number {
  font-family: 'Inter', sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(244,197,66,0.12); line-height: 1; margin-bottom: 8px;
}
.service-card__icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; margin-bottom: 16px;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__icon--gold { background: var(--gold-glow); color: var(--gold-dark); }
.service-card__icon--sage { background: var(--sage-glow); color: var(--sage); }
.service-card__icon--blue { background: var(--blue-glow); color: var(--blue); }
.service-card__icon--teal { background: rgba(20,184,166,0.1); color: #0d9488; }
.service-card__icon--green { background: rgba(16,185,129,0.1); color: #059669; }

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; flex: 1; }

.service-card__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.service-card__tags li {
  padding: 4px 12px; background: var(--offwhite); border-radius: 100px;
  font-size: 0.75rem; font-weight: 500; color: var(--text-light); border: 1px solid var(--border);
}

.service-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.service-card__price { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--sage-dark); }
.service-card__link {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--gold-dark);
  display: flex; align-items: center; gap: 4px; transition: gap 0.3s var(--ease);
}
.service-card__link:hover { gap: 8px; color: var(--blue); }

/* ===== SERVICE TABS ===== */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.tab {
  padding: 10px 22px; border-radius: 100px; font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 500; cursor: pointer; border: 1px solid var(--border);
  background: var(--bg); color: var(--text-light); transition: all 0.25s var(--ease);
}
.tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.tab--active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue); border-color: var(--gold); font-weight: 600;
  box-shadow: 0 2px 12px rgba(244,197,66,0.2);
}
.tab-panel { display: none; }
.tab-panel--active { display: block; animation: fadeIn 0.4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.04); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s var(--ease);
}
.stat:hover { background: rgba(255,255,255,0.08); border-color: rgba(244,197,66,0.2); transform: translateY(-4px); }
.stat__number {
  font-family: 'Inter', sans-serif; font-size: 2.5rem; font-weight: 800;
  color: var(--gold); display: block; margin-bottom: 4px; line-height: 1;
}
.stat__label { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ===== HIGHLIGHTS ===== */
.highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.highlight-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: var(--bg); border-radius: 100px; font-size: 0.9rem; font-weight: 500;
  color: var(--blue); border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.highlight-pill:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.highlight-pill svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ===== BOOKING STRIP ===== */
.cta-strip {
  padding: 64px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--blue-light));
}
.cta-strip__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,197,66,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,197,66,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-strip__inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 40px; }
.cta-strip__content { flex: 1; }
.cta-strip__content h2 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.cta-strip__content p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.cta-strip__actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about__list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.about__list li { display: flex; align-items: start; gap: 12px; font-size: 0.95rem; font-weight: 500; }
.about__list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.info-card {
  padding: 24px; background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border); transition: all 0.3s var(--ease);
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; margin-bottom: 12px; }
.info-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.info-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--sage), var(--gold));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__number {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--gold); font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.2rem;
  border: 3px solid var(--gold); box-shadow: 0 4px 16px rgba(244,197,66,0.15);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; max-width: 220px; margin: 0 auto; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }

.contact-form { background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); padding: 36px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 20px; }
.form__label { display: block; margin-bottom: 6px; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--blue); }
.form__input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit; color: var(--text); background: var(--bg);
  transition: all 0.25s var(--ease); appearance: none;
}
.form__input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form__input::placeholder { color: #9CA3AF; }
.form__input--error { border-color: var(--error) !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; cursor: pointer;
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__success { display: none; padding: 16px; background: var(--sage-glow); border: 1px solid rgba(111,166,161,0.3); border-radius: var(--radius-sm); color: var(--sage-dark); font-size: 0.95rem; text-align: center; margin-top: 16px; }
.form__success--visible { display: block; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-card { padding: 28px; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); }
.contact-card h3 { font-size: 1rem; margin-bottom: 16px; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.contact-method:not(:last-child) { border-bottom: 1px solid var(--border); }
.contact-method svg { width: 22px; height: 22px; color: var(--sage); flex-shrink: 0; }
.contact-method__label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-method__value { font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--blue); transition: color 0.25s; }
.contact-method__value:hover { color: var(--gold-dark); }

.booking-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius); padding: 28px; text-align: center;
  position: relative; overflow: hidden;
}
.booking-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.booking-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; position: relative; }
.booking-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 16px; position: relative; }
.booking-card .btn { position: relative; }

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); color: rgba(255,255,255,0.6); padding-top: 60px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__brand .logo__name { color: #fff; }
.footer__brand .logo__suffix { color: var(--gold); }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer__col h4 { font-size: 0.78rem; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Inter', sans-serif; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.25s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 0.8rem; }
.footer__legal a { color: rgba(255,255,255,0.5); }
.footer__legal a:hover { color: #fff; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 140px 0 60px; background: var(--blue); position: relative; overflow: hidden;
  text-align: center;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-header__inner { position: relative; z-index: 1; }
.page-header h1 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ===== FAB ===== */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-gold); transition: all 0.3s var(--ease);
  text-decoration: none;
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.fab--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(244,197,66,0.4); }
.fab svg { flex-shrink: 0; }

/* ===== MOBILE OVERLAY ===== */
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 98; }
.overlay--visible { display: block; }

/* ===== LEGAL ===== */
.legal-content { padding: 40px 0 80px; }
.legal-content h2 { font-size: 1.15rem; margin: 32px 0 12px; color: var(--sage); }
.legal-content p { margin-bottom: 12px; line-height: 1.8; }
.legal-content a { color: var(--sage); text-decoration: underline; }
.legal-content a:hover { color: var(--blue); }

/* ===== DETAIL LIST (services page) ===== */
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.detail-item {
  display: flex; gap: 16px; padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg); transition: all 0.3s var(--ease);
}
.detail-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.detail-item__icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--gold-glow); color: var(--gold-dark); }
.detail-item__icon svg { width: 20px; height: 20px; }
.detail-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.detail-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.detail-item__price { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--sage-dark); margin-top: 6px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cta-strip__inner { flex-wrap: wrap; text-align: center; justify-content: center; }
  .cta-strip__actions { justify-content: center; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* --- MOBILE NAV DRAWER --- */
  .nav {
    position: fixed !important; top: 0 !important; right: -100% !important;
    width: 300px !important; height: 100dvh !important;
    background: #fff !important; box-shadow: -4px 0 20px rgba(0,0,0,0.15) !important;
    transition: right 0.35s var(--ease) !important;
    padding: 88px 24px 32px !important; z-index: 99 !important;
    overflow-y: auto !important;
  }
  .nav--open { right: 0 !important; }
  .nav__list { flex-direction: column !important; align-items: stretch !important; gap: 4px !important; }

  /* Force nav links to dark text inside the white mobile drawer */
  .nav__link,
  .header--dark .nav__link,
  .header--transparent .nav__link {
    display: block !important; padding: 12px 16px !important;
    font-size: 1.05rem !important; border-radius: var(--radius-sm) !important;
    color: var(--text) !important;
  }
  .nav__link:hover { background: var(--offwhite) !important; }
  .nav__link--active { color: var(--gold-dark) !important; }
  .nav__link--active::after { display: none !important; }

  /* CTA button in mobile nav */
  .nav__list li:last-child .btn,
  .nav__list .btn--gold {
    margin-top: 12px !important; text-align: center !important;
    justify-content: center !important; width: 100% !important;
    color: var(--blue) !important;
  }

  /* Hamburger always visible on mobile */
  .header__burger { display: flex !important; }

  /* When menu is open on dark header, burger lines become dark (they sit over white drawer) */
  .header--dark .header__burger--active span,
  .header--transparent .header__burger--active span {
    background: var(--blue) !important;
  }

  /* --- HERO --- */
  .hero { min-height: auto !important; padding: 110px 0 50px !important; }
  .hero__inner {
    flex-direction: column !important; text-align: center !important;
    gap: 32px !important;
  }
  .hero__visual {
    order: -1 !important; flex: none !important;
  }
  .hero__mascot { width: 180px !important; max-width: 180px !important; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__trust { justify-content: center; }

  /* Hero CTA buttons (inline-styled in HTML) */
  .hero__content > div[style*="display:flex"][style*="gap:16px"] {
    flex-direction: column !important; align-items: center !important;
  }
  .hero__content > div[style*="display:flex"][style*="gap:16px"] > a {
    width: 100% !important; max-width: 320px !important;
    justify-content: center !important; text-align: center !important;
    padding: 14px 24px !important; font-size: 0.95rem !important;
  }

  /* Hero trust items (inline-styled) */
  .hero__content > div[style*="display:flex"][style*="gap:28px"] {
    justify-content: center !important;
  }

  /* --- SERVICE CARDS (override inline minmax(320px)) --- */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* --- STATS GRID (inline styles use repeat(4,1fr)) --- */
  section > .container > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* --- PROCESS GRID (inline repeat(4,1fr)) --- */
  .process-grid,
  div[class*="process-grid"][style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important; gap: 32px !important;
  }
  .process-grid::before,
  div[style*="position:absolute"][style*="top:36px"][style*="height:2px"] {
    display: none !important;
  }

  /* --- FOOTER GRID (inline 1.5fr 1fr 1fr 1fr) --- */
  footer .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important; gap: 24px !important;
  }
  /* Footer bottom row */
  footer .container > div[style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction: column !important; gap: 10px !important; text-align: center !important;
  }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* --- CTA STRIP (inline flex layout) --- */
  section > .container[style*="display:flex"][style*="gap:40px"],
  div[style*="display:flex"][style*="gap:40px"][style*="flex-wrap:wrap"][style*="justify-content:center"] {
    flex-direction: column !important; text-align: center !important;
    align-items: center !important;
  }

  /* --- FORM --- */
  .contact-form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* --- SECTIONS --- */
  .section { padding: 64px 0; }

  /* --- FAB (smaller on mobile) --- */
  .fab { bottom: 16px !important; right: 16px !important; padding: 12px 18px !important; font-size: 0.85rem !important; }

  /* --- PAGE HEADER --- */
  .page-header { padding: 110px 0 40px !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__mascot { width: 160px !important; max-width: 160px !important; }

  /* Stats: 2-col stays fine at 480 */
  .stats { grid-template-columns: 1fr 1fr; }
  section > .container > div[style*="grid-template-columns:repeat(4"],
  section > .container > div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Process: single column */
  .process-grid,
  div[class*="process-grid"][style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .tabs { gap: 6px; }
  .tab { padding: 8px 16px; font-size: 0.82rem; }

  /* Service card padding */
  .service-card { padding: 24px !important; }

  /* Hero title: cap size */
  .hero h1,
  .hero__title { font-size: 1.75rem !important; }
}
