/* ============================================================
   NATEXAN PILOT AI — CSS PRINCIPAL
   Design 2026 : Glassmorphism · Glow · Grille géométrique
   ============================================================ */

/* ─── VARIABLES ────────────────────────────────────────────── */
:root {
  --bg-primary:    #0A0A0F;
  --bg-secondary:  #12121A;
  --bg-card:       rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);

  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dark:     #8A6A20;
  --gold-glow:     rgba(201, 168, 76, 0.35);
  --gold-glow-lg:  rgba(201, 168, 76, 0.15);

  --white:         #FFFFFF;
  --text-secondary:#A0A0B0;
  --text-muted:    #606070;
  --border:        #2A2A3A;
  --border-gold:   rgba(201, 168, 76, 0.20);
  --border-gold-h: rgba(201, 168, 76, 0.45);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 25px var(--gold-glow);
  --shadow-gold-hover: 0 0 50px var(--gold-glow), 0 0 100px var(--gold-glow-lg);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --transition-slow: all 0.6s var(--ease);

  --section-pad: 110px 0;
  --max-w: 1200px;
  --px: clamp(20px, 5vw, 60px);
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-secondary); font-size: 1rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold) !important; }

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section { padding: var(--section-pad); }
.section-alt { background-color: var(--bg-secondary); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ─── BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0A0A0F;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--border-gold);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
}
.btn-ghost {
  color: var(--gold);
  padding: 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-ghost::after {
  content: ' →';
  transition: var(--transition);
  display: inline-block;
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* ─── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
  max-width: 680px;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ─── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-gold-h);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(201,168,76,0.08);
}
.card:hover::before { opacity: 1; }

.card-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.10);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
}
.card:hover .card-icon {
  background: rgba(201,168,76,0.20);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.card h3 { margin-bottom: 12px; color: var(--white); }
.card p  { font-size: 0.95rem; margin-bottom: 20px; }

/* ─── DIVIDER ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin: 0;
}
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ─── TAG ──────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  transition: var(--transition);
}
.tag:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.tags-wrap { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── CHECKLIST ────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 16px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checklist li .check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 1px;
}

/* ─── STAT ─────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ─── ALERT STRIP ──────────────────────────────────────────── */
.alert-strip {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.alert-strip .alert-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

/* Grille géométrique animée */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  animation: grid-drift 20s linear infinite;
}

/* Lueur centrale */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero h1 { margin-bottom: 24px; }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--border-gold);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse span {
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

/* ─── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-main span { color: var(--gold); }
.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
  text-align: center;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .btn { font-size: 1rem; margin-top: 16px; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  padding: 80px 0 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand .tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-brand a { color: var(--gold); transition: var(--transition); }
.footer-brand a:hover { color: var(--gold-light); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.footer-contact a { color: var(--gold); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-zone {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ─── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 640px;
  line-height: 1.7;
}

/* ─── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--border-gold-h), transparent, var(--border-gold));
  z-index: -1;
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { margin-bottom: 36px; font-size: 1.05rem; }
.cta-box .cta-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── PROBLEM SECTION ──────────────────────────────────────── */
.problem-section { padding: var(--section-pad); }
.problem-content { max-width: 780px; }
.problem-content h2 { margin-bottom: 28px; }
.problem-content .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.problem-risks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.risk-item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.risk-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}
.risk-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.risk-item h4 { color: var(--white); margin-bottom: 6px; font-size: 0.9rem; }
.risk-item p { font-size: 0.82rem; }

/* ─── CREDIBILITY SECTION ──────────────────────────────────── */
.credibility-section { padding: var(--section-pad); }
.credibility-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.credibility-text h2 { margin-bottom: 24px; }
.credibility-text p { font-size: 1.05rem; line-height: 1.8; }

/* ─── TARGET SECTION ───────────────────────────────────────── */
.target-section { padding: var(--section-pad); }
.target-section .grid-2 { gap: 80px; }
.target-text h2 { margin-bottom: 20px; }
.target-text .lead {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ─── URGENCY SECTION ──────────────────────────────────────── */
.urgency-section {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.urgency-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.urgency-inner h2 { margin-bottom: 24px; }
.urgency-inner .lead {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.urgency-inner .btn-primary { font-size: 1.05rem; padding: 16px 36px; }
.urgency-geo {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.booking-card h3 { margin-bottom: 12px; }
.booking-card p { margin-bottom: 28px; }
.booking-iframe {
  width: 100%;
  min-height: 480px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item {}
.contact-info-item h4 {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: block;
}
.contact-info-item a:hover { color: var(--gold-light); }
.process-steps { display: flex; flex-direction: column; gap: 16px; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.process-step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.10);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}
.process-step-text h5 { color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.process-step-text p { font-size: 0.82rem; }

/* ─── LEGAL / PRIVACY PAGES ────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 14px;
  color: var(--white);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--gold-light);
}
.legal-content p {
  margin-bottom: 14px;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content ul li {
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── ABOUT PAGE ───────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.3;
}
.timeline-item {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-dot {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.10);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  z-index: 1;
}
.timeline-content h4 { color: var(--white); margin-bottom: 4px; }
.timeline-content p { font-size: 0.9rem; }

/* ─── SERVICES PAGES ───────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}
.feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.10);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.feature-text h4 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.feature-text p { font-size: 0.85rem; }

.pricing-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--border-gold);
  background: rgba(201,168,76,0.04);
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.pricing-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.pricing-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.pricing-duration {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 600;
}
.pricing-card p { font-size: 0.82rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(25% - 12px);
  right: calc(25% - 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-gold), var(--border-gold), var(--border-gold));
  z-index: 0;
}
.process-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}
.process-card-num {
  width: 56px; height: 56px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
}
.process-card h4 { color: var(--white); margin-bottom: 8px; }
.process-card p { font-size: 0.85rem; }

/* ─── ANIMATIONS ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.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; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 20px; }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .problem-risks { grid-template-columns: 1fr; }
  .credibility-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .btn.btn-primary { font-size: 0.9rem; }
}
