/* ═══════════════════════════════════════════════
   BDRI.FR — FEUILLE DE STYLE PRINCIPALE
   ═══════════════════════════════════════════════ */

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

:root {
  --navy-900: #0a1220;
  --navy-800: #0f1b33;
  --navy-700: #162038;
  --navy-600: #1a2744;
  --navy-500: #1e3a5f;
  --navy-400: #2a4a7a;
  --cyan: #4fc3f7;
  --cyan-light: #80d8ff;
  --cyan-dark: #0288d1;
  --salmon: #e8828a;
  --salmon-light: #f0a5ab;
  --salmon-dark: #c0636b;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-15: rgba(255,255,255,0.15);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --cyan-10: rgba(79,195,247,0.1);
  --cyan-15: rgba(79,195,247,0.15);
  --cyan-20: rgba(79,195,247,0.2);
  --salmon-10: rgba(232,130,138,0.1);
  --salmon-15: rgba(232,130,138,0.15);
  --salmon-20: rgba(232,130,138,0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --shadow: 0 4px 24px rgba(0,0,0,0.2);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  background: var(--navy-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

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

/* ─── BOUTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: inherit;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-cyan { background: var(--cyan); color: var(--navy-900); }
.btn-cyan:hover { box-shadow: 0 6px 24px rgba(79,195,247,0.35); }
.btn-salmon { background: var(--salmon); color: var(--white); }
.btn-salmon:hover { box-shadow: 0 6px 24px rgba(232,130,138,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--white-30); }
.btn-outline:hover { border-color: var(--white-70); background: var(--white-05); }
.btn-outline-cyan { background: transparent; color: var(--cyan); border: 1.5px solid var(--cyan-20); }
.btn-outline-cyan:hover { background: var(--cyan-10); border-color: var(--cyan); }
.btn-outline-salmon { background: transparent; color: var(--salmon); border: 1.5px solid var(--salmon-20); }
.btn-outline-salmon:hover { background: var(--salmon-10); border-color: var(--salmon); }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(10,18,32,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--cyan-15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.logo-icon span {
  display: block;
  width: 7px;
  border-radius: 2px;
}

.logo-icon span:nth-child(1) { height: 16px; background: var(--cyan); }
.logo-icon span:nth-child(2) { height: 11px; background: var(--cyan); }
.logo-icon span:nth-child(3) { height: 20px; background: var(--salmon); }

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: var(--white-70);
  position: relative;
}

.nav-links a:hover { color: var(--white); }

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.nav-links a.highlight {
  color: var(--salmon);
  font-weight: 600;
}

.nav-links a.highlight:hover { color: var(--salmon-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-dark { background: var(--navy-800); }
.section-darker { background: var(--navy-900); }
.section-medium { background: var(--navy-600); }
.section-gradient { background: linear-gradient(160deg, var(--navy-600) 0%, var(--navy-800) 50%, var(--navy-500) 100%); }

.section-label {
  text-align: center;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label.salmon { color: var(--salmon); }

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--white-50);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ─── HERO ─── */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(79,195,247,0.06);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(232,130,138,0.04);
  pointer-events: none;
}

.hero-label {
  display: inline-block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight-cyan { color: var(--cyan); }
.hero h1 .highlight-salmon { color: var(--salmon); }

.hero .lead {
  font-size: 19px;
  color: var(--white-70);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BARRE DE STATS ─── */
.stats-bar {
  background: var(--navy-700);
  border-top: 1px solid var(--cyan-15);
  border-bottom: 1px solid var(--cyan-15);
  padding: 36px 0;
}

.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat { text-align: center; min-width: 140px; }

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.2;
}

.stat-value.salmon { color: var(--salmon); }

.stat-label {
  font-size: 14px;
  color: var(--white-50);
  margin-top: 4px;
}

/* ─── GRILLES ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── CARDS ─── */
.card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), background var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.card-cyan {
  background: var(--cyan-10);
  border-color: var(--cyan-20);
}

.card-salmon {
  background: var(--salmon-10);
  border-color: var(--salmon-20);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.card-icon.cyan { background: var(--cyan-15); color: var(--cyan); }
.card-icon.salmon { background: var(--salmon-15); color: var(--salmon); }

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

/* ─── OFFER CARDS ─── */
.offer-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

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

.offer-card.bdri { background: var(--cyan-10); border: 1px solid var(--cyan-20); }
.offer-card.mybdri { background: var(--salmon-10); border: 1px solid var(--salmon-20); }

.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--salmon);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 0 var(--radius-lg) 0 12px;
  letter-spacing: 1px;
}

.offer-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.offer-card.bdri .offer-icon { background: var(--cyan-15); color: var(--cyan); }
.offer-card.mybdri .offer-icon { background: var(--salmon-15); color: var(--salmon); }

.offer-name { font-size: 24px; font-weight: 700; }
.offer-card.bdri .offer-name { color: var(--cyan); }
.offer-card.mybdri .offer-name { color: var(--salmon); }

.offer-subtitle { font-size: 17px; font-weight: 500; margin-bottom: 12px; }

.offer-desc { font-size: 15px; color: var(--white-50); margin-bottom: 24px; line-height: 1.7; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--white-70);
}

.feature-list li i { font-size: 18px; flex-shrink: 0; }
.offer-card.bdri .feature-list li i { color: var(--cyan); }
.offer-card.mybdri .feature-list li i { color: var(--salmon); }

/* ─── VIDEO EMBED ─── */
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-10);
  background: var(--navy-900);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
}

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

.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-card-body { padding: 20px 24px; }
.video-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.video-card-body p { font-size: 13px; color: var(--white-50); line-height: 1.6; }

/* ─── TÉMOIGNAGES ─── */
.testimonial {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--white-70);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--cyan);
}

.testimonial:nth-child(even) .testimonial-quote {
  border-left-color: var(--salmon);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.testimonial:nth-child(odd) .testimonial-avatar {
  background: var(--cyan-15);
  color: var(--cyan);
}

.testimonial:nth-child(even) .testimonial-avatar {
  background: var(--salmon-15);
  color: var(--salmon);
}

.testimonial-name { font-size: 14px; font-weight: 500; }
.testimonial-role { font-size: 13px; color: var(--white-50); }

/* ─── MEMBRES ─── */
.member-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--white-15);
  background: transparent;
  color: var(--white-70);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--cyan-10);
  border-color: var(--cyan);
  color: var(--cyan);
}

.search-box {
  max-width: 400px;
  margin: 0 auto 40px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 12px 20px 12px 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--white-15);
  background: var(--white-05);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--cyan);
  background: var(--cyan-10);
}

.search-box input::placeholder { color: var(--white-30); }

.search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-30);
  font-size: 18px;
}

.member-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), background var(--transition);
}

.member-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
}

.member-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.member-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cyan-15);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.member-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }

.member-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }

.member-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--white-10);
  font-size: 13px;
  color: var(--white-50);
}

.member-contact a {
  color: var(--white-70);
  text-decoration: none;
  transition: color var(--transition);
}

.member-contact a:hover { color: var(--cyan); }

.member-contact i { font-size: 14px; margin-right: 6px; color: var(--white-30); }

.member-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
}

.member-tag.expert { background: var(--cyan-15); color: var(--cyan); }
.member-tag.admin-bien { background: var(--salmon-15); color: var(--salmon); }

/* ─── TARIFS ─── */
.pricing-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform var(--transition);
}

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

.pricing-card.featured {
  border: 2px solid var(--cyan);
  background: var(--cyan-10);
}

.pricing-card.featured-salmon {
  border: 2px solid var(--salmon);
  background: var(--salmon-10);
}

.pricing-card .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--salmon);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--white-50);
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price { color: var(--cyan); }
.pricing-card.featured-salmon .pricing-price { color: var(--salmon); }

.pricing-period {
  font-size: 14px;
  color: var(--white-50);
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white-70);
}

.pricing-features li i { color: var(--cyan); font-size: 16px; flex-shrink: 0; }
.pricing-card.featured .pricing-features li i { color: var(--cyan); }
.pricing-card.featured-salmon .pricing-features li i { color: var(--salmon); }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
  border-top: 1px solid var(--cyan-15);
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 17px;
  color: var(--white-50);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-900);
  padding: 60px 0 32px;
  border-top: 1px solid var(--white-10);
}

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

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--white-50);
}

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

.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--white-30);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 100px 0 0;
  font-size: 13px;
  color: var(--white-50);
}

.breadcrumb a { color: var(--cyan); }
.breadcrumb a:hover { color: var(--cyan-light); }
.breadcrumb span { margin: 0 8px; color: var(--white-30); }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(160deg, var(--navy-600) 0%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(79,195,247,0.06);
  pointer-events: none;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-header .lead {
  font-size: 18px;
  color: var(--white-50);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FEATURE ROW (alternating) ─── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse .feature-media { order: -1; }

.feature-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 15px;
  color: var(--white-50);
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-10);
}

.feature-media video {
  width: 100%;
  display: block;
}

/* ─── VALEURS ─── */
.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-card .card-icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  font-size: 28px;
}

.value-card h3 { font-size: 20px; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--white-50); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  background: var(--white-05);
  transition: background var(--transition);
}

.faq-question:hover { background: var(--white-10); }

.faq-question i {
  font-size: 18px;
  color: var(--white-50);
  transition: transform var(--transition);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 300px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--cyan-15);
  }
  .hero h1 { font-size: 34px; }
  .hero { padding: 120px 0 60px; }
  .hero .lead { font-size: 16px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .page-header h1 { font-size: 30px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reverse .feature-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-bar .container { justify-content: center; }
  .stat { min-width: 120px; }
  .pricing-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-value { font-size: 28px; }
  .container { padding: 0 16px; }
}
