/* ============================================
   FUTUR DESIRE - Insuffle v2 Radical
   Design System: Dark Premium + Accent Jaune
   ============================================ */

/* Import Police Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Brand Colors */
  --brand-dark: #02040a;
  --brand-card: #0c1629;
  --brand-primary: #1f3a8b;
  --brand-primary-light: #3b82f6;
  --brand-accent: #ffde59;
  --brand-accent-hover: #fbbf24;

  /* Legacy variables - remapped for dark theme (used by inline HTML styles) */
  --insuffle-blue: #3b82f6;
  --insuffle-blue-dark: #1f3a8b;
  --insuffle-blue-light: #60a5fa;
  --insuffle-accent: #ffde59;

  /* Neutral palette - remapped for dark theme */
  --light: #F8FAFC;
  --grey-light: #0f172a;
  --grey: rgba(255,255,255,0.1);
  --grey-medium: #64748b;
  --grey-dark: #94a3b8;
  --dark: #e2e8f0;
  --black: #02040a;

  /* Semantic */
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #02040a 0%, #0c1629 50%, #1f3a8b 100%);
  --gradient-accent: linear-gradient(90deg, #ffde59, #fbbf24, #ffde59);
  --gradient-card-glow: linear-gradient(135deg, #ffde59 0%, #1f3a8b 50%, #06b6d4 100%);

  /* Spacing */
  --nav-height: 96px;
  --container-max: 1800px;

  /* Effects */
  --shadow-card: 0 10px 40px rgba(0,0,0,0.3);
  --shadow-card-hover: 0 20px 50px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(255,222,89,0.3);
  --shadow-glow-strong: 0 0 60px rgba(255,222,89,0.5);
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--light);
  background: var(--brand-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Grain Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

main {
  flex-grow: 1;
  padding-top: var(--nav-height);
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  color: var(--light);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 700;
}

h5 {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

h6 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--grey-dark);
}

strong, b {
  font-weight: 700;
  color: var(--light);
}

em, i {
  font-style: italic;
}

mark {
  background: rgba(255, 222, 89, 0.2);
  color: var(--brand-accent);
  padding: 0 4px;
  border-radius: 2px;
}

/* ============================================
   LINKS
   ============================================ */
a {
  color: var(--brand-primary-light);
  text-decoration: none;
  transition: all var(--transition-normal);
}

a:hover {
  color: var(--brand-accent);
}

/* ============================================
   LISTS
   ============================================ */
ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--grey-dark);
}

/* ============================================
   BLOCKQUOTES
   ============================================ */
blockquote {
  border-left: 4px solid var(--brand-accent);
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--grey-dark);
  background: rgba(255, 222, 89, 0.05);
  border-radius: 0 1rem 1rem 0;
}

/* ============================================
   TABLES
   ============================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--brand-card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

th {
  background: rgba(31, 58, 139, 0.3);
  font-weight: 700;
  color: var(--light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

td {
  color: var(--grey-dark);
}

/* ============================================
   BUTTONS & CTA
   ============================================ */
button, .button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.cta-primary {
  background: var(--brand-primary);
  color: var(--light);
  padding: 12px 32px;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--brand-primary);
  transition: all var(--transition-normal);
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.cta-primary:hover {
  background: transparent;
  color: var(--brand-accent);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: var(--light);
  padding: 12px 32px;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition-normal);
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--light);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.cta-accent {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 20px 40px;
  border-radius: 0.5rem;
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-glow);
}

.cta-accent:hover {
  background: var(--light);
  color: var(--brand-dark);
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.cta-white {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 16px 36px;
  border-radius: 0.5rem;
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-glow);
}

.cta-white:hover {
  background: var(--light);
  color: var(--brand-dark);
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.cta-outline-white {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 36px;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: var(--light);
  transform: translateY(-2px);
}

/* ============================================
   SELECTION & FOCUS
   ============================================ */
::selection {
  background-color: var(--brand-accent);
  color: var(--brand-dark);
}

*:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--brand-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-primary-light);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-md {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-lg {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.section-white {
  background: var(--brand-dark);
  color: var(--light);
}

.section-gray {
  background: var(--brand-card);
  color: var(--light);
  position: relative;
}

/* Subtle grid pattern on gray sections */
.section-gray::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: 60px 60px;
  pointer-events: none;
}

.section-blue {
  background: var(--gradient-hero);
  color: var(--light);
}

.section-hero-light {
  background: linear-gradient(135deg, var(--brand-card) 0%, var(--brand-primary) 100%);
  position: relative;
}

/* Section Padding */
.section-padding {
  padding: 4rem 0;
}

.section-padding-lg {
  padding: 6rem 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(2, 4, 10, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo a {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--light);
  letter-spacing: -0.01em;
  transition: all var(--transition-normal);
}

.nav-logo a:hover {
  color: var(--brand-accent);
}

.nav-logo-insuffle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-medium);
  font-size: 0.75rem;
}

.nav-logo-insuffle:hover {
  color: var(--grey-dark);
}

.nav-logo-insuffle img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--grey-medium);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  width: 280px;
  background: var(--brand-card);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-normal);
  z-index: 60;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 6px 0;
  font-size: 0.8125rem;
  color: var(--grey-dark);
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--brand-accent);
}

.nav-dropdown-menu a.dropdown-title {
  color: var(--light);
  font-weight: 600;
}

.nav-dropdown-menu a.dropdown-sub {
  padding-left: 1rem;
  color: var(--grey-medium);
}

.nav-dropdown-menu a.dropdown-sub:hover {
  color: var(--brand-accent);
}

/* Phone & Social links */
.nav-phone {
  color: var(--grey-medium);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
}

.nav-phone:hover {
  color: var(--light);
}

.nav-phone svg, .nav-social svg {
  width: 18px;
  height: 18px;
}

.nav-social {
  color: var(--grey-medium);
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.nav-social:hover {
  color: var(--brand-accent);
}

.nav-cta {
  font-size: 11px;
}

/* Mobile menu */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-mobile {
  display: none;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile.active {
  display: block;
}

.nav-mobile a {
  display: block;
  color: var(--grey-dark);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.75rem 0;
  transition: color 0.2s ease;
}

.nav-mobile a:hover {
  color: var(--brand-accent);
}

.nav-mobile .cta-primary {
  text-align: center;
  margin-top: 0.75rem;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  padding: 8rem 0 10rem;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 50%, rgba(31, 58, 139, 0.4), transparent),
    radial-gradient(ellipse 400px 300px at 70% 30%, rgba(255, 222, 89, 0.08), transparent);
  pointer-events: none;
}

/* Grid pattern on hero */
.hero::after {
  content: '';
  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;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  color: var(--light);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero p {
  color: var(--grey-dark);
  font-size: 1.125rem;
}

.hero .subtitle {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--grey-dark);
  max-width: 800px;
  margin: 1.5rem auto 2rem;
  line-height: 1.5;
  font-weight: 400;
}

.hero .subtitle strong {
  color: var(--brand-accent);
  font-weight: 700;
}

/* Stats in hero */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin: 2rem 0;
}

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

.hero-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--brand-accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-medium);
  margin-top: 0.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-top: 1rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 0.75rem 0;
  background: var(--brand-card);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumbs a {
  color: var(--grey-medium);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--brand-accent);
}

.breadcrumbs .separator {
  color: var(--grey-medium);
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--light);
  font-weight: 700;
}

/* ============================================
   CARD INSUFFLE
   ============================================ */
.card {
  background: var(--brand-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255, 222, 89, 0.2);
}

.card-border-left-red {
  border-left: 4px solid var(--danger);
}

.card-border-left-blue {
  border-left: 4px solid var(--brand-primary-light);
}

.card-border-left-green {
  border-left: 4px solid var(--success);
}

.card-border-left-yellow {
  border-left: 4px solid var(--brand-accent);
}

.card-border-left-purple {
  border-left: 4px solid #a855f7;
}

.card-highlight {
  border: 2px solid var(--brand-accent);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.toc {
  position: fixed;
  left: 2rem;
  top: 8rem;
  width: 16rem;
  z-index: 40;
  display: none;
}

.toc-inner {
  background: var(--brand-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.toc h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-accent);
  margin-bottom: 1rem;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin-bottom: 0.5rem;
}

.toc button {
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  padding: 0.375rem 0;
  color: var(--grey-medium);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0.25rem;
}

.toc button:hover {
  color: var(--light);
  transform: translateX(4px);
}

.toc button.active {
  color: var(--brand-accent);
  font-weight: 700;
}

.toc .sub {
  padding-left: 1rem;
}

/* ============================================
   STATS DASHBOARD
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stats-card {
  background: var(--brand-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255,255,255,0.15);
}

.stats-card-large {
  padding: 2rem;
}

.stats-card .emoji-bg {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  opacity: 0.08;
}

.stats-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.stats-number-xl {
  font-size: 4.5rem;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 1rem;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 2s ease-out;
  background: linear-gradient(to right, #dc2626, var(--danger));
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

/* Pie chart container */
.pie-chart-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pie-chart-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
}

/* ============================================
   NEWS BANNER
   ============================================ */
.news-banner {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(12, 22, 41, 0.95);
  border-top: 1px solid rgba(255, 222, 89, 0.2);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.news-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-banner-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.news-banner-label {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-banner-carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
}

.news-banner-article {
  color: var(--grey-dark);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  flex: 1;
  max-width: 40rem;
  transition: color 0.2s ease;
}

.news-banner-article:hover {
  color: var(--brand-accent);
}

.news-banner-btn {
  background: none;
  border: none;
  color: var(--grey-medium);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.news-banner-btn:hover {
  color: var(--brand-accent);
}

.news-banner-btn svg {
  width: 18px;
  height: 18px;
}

.news-banner-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-banner-counter {
  color: var(--grey-medium);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.news-banner-close {
  background: none;
  border: none;
  color: var(--grey-medium);
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.news-banner-close:hover {
  color: var(--light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brand-card);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--light);
  margin-bottom: 1.25rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer li a {
  font-size: 0.8125rem;
  color: var(--grey-medium);
  transition: color 0.2s ease;
}

.footer li a:hover {
  color: var(--brand-accent);
}

.footer li a.sub-link {
  padding-left: 1rem;
  color: var(--grey-medium);
  opacity: 0.7;
}

.footer li a.sub-link:hover {
  opacity: 1;
  color: var(--brand-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--grey-dark);
  font-size: 0.875rem;
}

.footer-bottom strong {
  color: var(--light);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--grey-medium);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--brand-accent);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--grey-medium);
  padding-top: 1rem;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.prose {
  color: var(--grey-dark);
  max-width: none;
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.prose h2, .prose h3, .prose h4 {
  color: var(--light);
}

.prose a {
  color: var(--brand-primary-light);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.prose a:hover {
  color: var(--brand-accent);
  border-bottom-color: var(--brand-accent);
}

.prose strong {
  color: var(--light);
}

.prose ul, .prose ol {
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

/* Inline list items with icons */
.list-check li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.list-check .icon-yes {
  color: var(--brand-accent);
  flex-shrink: 0;
}

.list-check .icon-no {
  color: var(--danger);
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonial-image {
  position: relative;
}

.testimonial-image img {
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-glow);
  display: none;
}

.testimonial-badge p:first-child {
  font-weight: 900;
  font-size: 1rem;
  color: var(--brand-dark);
  margin-bottom: 0;
}

.testimonial-badge p:last-child {
  font-size: 0.8125rem;
  color: rgba(2, 4, 10, 0.7);
  margin-bottom: 0;
}

/* ============================================
   SVG DIAGRAMS
   ============================================ */
.svg-container {
  max-width: 40rem;
  margin: 3rem auto;
}

.svg-container-sm {
  max-width: 28rem;
  margin: 2rem auto;
}

/* ============================================
   COMPARISON GRID
   ============================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* 4C Grid */
.grid-4c {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.card-4c {
  background: rgba(255,255,255,0.03);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card-4c-blue {
  border-top: 4px solid var(--brand-primary-light);
}

.card-4c-orange {
  border-top: 4px solid var(--warning);
}

.card-4c-green {
  border-top: 4px solid var(--success);
}

.card-4c-purple {
  border-top: 4px solid #a855f7;
}

/* ============================================
   INFO BOXES
   ============================================ */
.info-box {
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
}

.info-box-blue {
  background: rgba(31, 58, 139, 0.15);
  border-left: 4px solid var(--brand-primary-light);
}

.info-box-green {
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid var(--success);
}

.info-box-red {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--danger);
}

.info-box-yellow {
  background: rgba(255, 222, 89, 0.1);
  border-left: 4px solid var(--brand-accent);
}

.info-box-white {
  background: rgba(255,255,255,0.03);
  border-left: 4px solid var(--brand-primary-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--brand-primary-light);
}

/* ============================================
   TABLE RESPONSIVE WRAPPER
   ============================================ */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1rem;
}

.comparison-table {
  min-width: 600px;
}

.comparison-table tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}

.comparison-table .summary-row {
  background: rgba(255, 222, 89, 0.08);
  border-top: 2px solid rgba(255, 222, 89, 0.2);
  font-weight: 700;
}

/* ============================================
   MANIFESTO PRINCIPLES
   ============================================ */
.principle {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.principle-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-accent);
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,222,89,0.2); }
  50% { box-shadow: 0 0 40px rgba(255,222,89,0.4); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--light); }
.text-blue { color: var(--brand-primary-light); }
.text-dark { color: var(--light); }
.text-grey { color: var(--grey-dark); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.text-warning { color: var(--brand-accent); }
.text-purple { color: #a855f7; }
.text-accent { color: var(--brand-accent); }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-black { font-weight: 900; }

/* Label style from design system */
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.rounded { border-radius: 0.75rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-xl { border-radius: 1.5rem; }
.rounded-2xl { border-radius: 2rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow-card); }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.shadow-xl { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }

.w-full { width: 100%; }
.max-w-4xl { max-width: 896px; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* Background color utilities for stats cards - dark theme */
.bg-red-light { background: rgba(239, 68, 68, 0.12); }
.bg-orange-light { background: rgba(249, 115, 22, 0.12); }
.bg-purple-light { background: rgba(168, 85, 247, 0.12); }
.bg-blue-light { background: rgba(59, 130, 246, 0.12); }
.bg-green-light { background: rgba(34, 197, 94, 0.1); }
.bg-yellow-light { background: rgba(255, 222, 89, 0.1); }

/* Glass effect utility */
.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Badge utilities */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.badge-default {
  background: rgba(255,255,255,0.1);
  color: var(--light);
}

.badge-accent {
  background: rgba(255, 222, 89, 0.1);
  color: var(--brand-accent);
  border: 1px solid rgba(255, 222, 89, 0.3);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .container-sm, .container-md, .container-lg {
    padding: 0 2rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .section-padding-lg {
    padding: 6rem 0;
  }

  .hero {
    padding: 8rem 0 10rem;
  }

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

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

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

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

  .grid-4c {
    grid-template-columns: 1fr 1fr;
  }

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

  .stats-card-span2 {
    grid-column: span 2;
  }

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

  .testimonial-badge {
    display: block;
  }

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

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

  .news-banner-counter {
    display: block;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .section-padding-lg {
    padding: 6rem 0;
  }

  .hero {
    padding: 10rem 0 12rem;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-2-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

/* XL Desktop (1280px+) */
@media (min-width: 1280px) {
  .toc {
    display: block;
  }
}

/* Mobile-only adjustments */
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .nav-inner {
    padding: 0 1rem;
  }

  .hero {
    padding: 5rem 0 6rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 0.95;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .section-padding-lg {
    padding: 4rem 0;
  }

  .cta-primary, .cta-secondary {
    padding: 10px 24px;
    font-size: 10px;
  }

  .cta-white, .cta-outline-white {
    padding: 12px 24px;
    font-size: 12px;
  }

  .card {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .news-banner-counter {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   SCROLLBAR HIDE UTILITY
   ============================================ */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background: var(--brand-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255, 222, 89, 0.2);
}

.blog-card .blog-category {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(255, 222, 89, 0.1);
  color: var(--brand-accent);
  border: 1px solid rgba(255, 222, 89, 0.3);
  width: fit-content;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-card h3 a {
  color: var(--light);
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: var(--brand-accent);
}

.blog-card .blog-excerpt {
  color: var(--grey-dark);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-card .blog-date {
  font-size: 0.8125rem;
  color: var(--grey-medium);
}

.blog-card .blog-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card .blog-link:hover {
  color: var(--light);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--brand-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.pricing-featured {
  border: 2px solid var(--brand-accent);
  box-shadow: var(--shadow-glow);
}

.pricing-card .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pricing-card .pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.pricing-card .pricing-duration {
  font-size: 0.8125rem;
  color: var(--grey-medium);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-card .pricing-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-accent);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.pricing-card .pricing-price-note {
  font-size: 0.8125rem;
  color: var(--grey-medium);
  margin-bottom: 1.5rem;
}

.pricing-card .pricing-description {
  color: var(--grey-dark);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-card .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--grey-dark);
  font-size: 0.9375rem;
}

.pricing-card .pricing-features li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .pricing-cta {
  margin-top: auto;
}

/* ============================================
   LOCAL PAGES - HERO SMALL
   ============================================ */
.hero-sm {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.hero-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 50%, rgba(31, 58, 139, 0.4), transparent),
    radial-gradient(ellipse 400px 300px at 70% 30%, rgba(255, 222, 89, 0.08), transparent);
  pointer-events: none;
}

.hero-sm::after {
  content: '';
  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;
  pointer-events: none;
}

.hero-sm .hero-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-sm h1 {
  color: var(--light);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-sm .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--grey-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   MAILLAGE LINKS (cross-linking section)
   ============================================ */
.maillage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.maillage-card {
  background: var(--brand-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.maillage-card:hover {
  border-color: rgba(255, 222, 89, 0.2);
  transform: translateY(-2px);
}

.maillage-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.maillage-card h4 a {
  color: var(--brand-accent);
}

.maillage-card p {
  font-size: 0.875rem;
  color: var(--grey-medium);
  margin-bottom: 0;
}

/* Local pages links */
.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.local-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey-dark);
  transition: all 0.2s ease;
}

.local-link:hover {
  background: rgba(255, 222, 89, 0.1);
  border-color: rgba(255, 222, 89, 0.3);
  color: var(--brand-accent);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand-card) 0%, rgba(31, 58, 139, 0.3) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* FAQ Accordion styles */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--brand-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--light);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--brand-accent);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--grey-dark);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE - NEW COMPONENTS
   ============================================ */
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .maillage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .maillage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .nav, .news-banner, .toc {
    display: none;
  }

  body::after {
    display: none;
  }

  main {
    padding-top: 0;
  }

  body {
    background: white;
    color: #1a1a1a;
  }

  .hero {
    background: #f3f4f6 !important;
    color: #1a1a1a !important;
  }

  .hero h1, .hero p, h1, h2, h3, h4, h5, h6 {
    color: #1a1a1a !important;
  }

  p, li, td {
    color: #374151 !important;
  }

  .card, .stats-card {
    background: white !important;
    border-color: #e5e7eb !important;
    box-shadow: none !important;
  }
}
