/*
 Theme Name:   GeneratePress Child — Actualités Assurance
 Theme URI:    https://actualites-assurance.com
 Description:  Thème enfant GeneratePress pour actualites-assurance.com (Groupe AED Assurance)
 Author:       Groupe AED Assurance
 Author URI:   https://www.assuranceendirect.com
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  generatepress-child
*/

/* ============================================================
   IMPORT DU THÈME PARENT
   ============================================================ */
@import url("../generatepress/style.css");

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --aed-primary:   #525fe1;
  --aed-primary-d: #3d4ab8;
  --aed-accent:    #f26b65;
  --aed-accent-d:  #d9534f;
  --aed-dark:      #0b104a;
  --aed-text:      #4a5355;
  --aed-muted:     #7a8a8d;
  --aed-light:     #f5f6ff;
  --aed-border:    #e3e5f0;
  --aed-white:     #ffffff;
  --aed-success:   #28a745;
  --aed-warn:      #ffc107;
  --aed-radius:    10px;
  --aed-shadow:    0 4px 24px rgba(82,95,225,.12);
  --aed-shadow-lg: 0 8px 40px rgba(82,95,225,.18);
  --aed-font-body: 'DM Sans', sans-serif;
  --aed-font-head: 'Jost', sans-serif;
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: var(--aed-font-body);
  color: var(--aed-text);
  font-size: 16px;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--aed-font-head);
  color: var(--aed-dark);
  font-weight: 700;
  line-height: 1.25;
}

a { color: var(--aed-primary); text-decoration: none; }
a:hover { color: var(--aed-primary-d); text-decoration: underline; }

/* ============================================================
   BUTTONS
   ============================================================ */
.aed-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--aed-font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.aed-btn-primary {
  background: var(--aed-primary);
  color: #fff !important;
  border-color: var(--aed-primary);
}
.aed-btn-primary:hover {
  background: var(--aed-primary-d);
  border-color: var(--aed-primary-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82,95,225,.35);
  text-decoration: none;
}
.aed-btn-accent {
  background: var(--aed-accent);
  color: #fff !important;
  border-color: var(--aed-accent);
}
.aed-btn-accent:hover {
  background: var(--aed-accent-d);
  border-color: var(--aed-accent-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,107,101,.35);
  text-decoration: none;
}
.aed-btn-outline {
  background: transparent;
  color: var(--aed-primary) !important;
  border-color: var(--aed-primary);
}
.aed-btn-outline:hover {
  background: var(--aed-primary);
  color: #fff !important;
  text-decoration: none;
}
.aed-btn-lg { padding: 16px 40px; font-size: 17px; }
.aed-btn-white {
  background: #fff;
  color: var(--aed-primary) !important;
  border-color: #fff;
}
.aed-btn-white:hover {
  background: var(--aed-light);
  text-decoration: none;
}

/* ============================================================
   HERO ACCUEIL
   ============================================================ */
.aed-hero {
  background: linear-gradient(135deg, var(--aed-dark) 0%, #1a236e 50%, var(--aed-primary) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.aed-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,95,225,.25) 0%, transparent 70%);
  border-radius: 50%;
}
.aed-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,107,101,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.aed-hero-title {
  font-family: var(--aed-font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.aed-hero-title span { color: var(--aed-accent); }
.aed-hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 560px;
}
.aed-hero-cta {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 32px 28px;
  color: #fff;
}
.aed-hero-cta h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}
.aed-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.aed-hero-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: #fff;
}
.aed-hero-badge i { margin-right: 6px; color: var(--aed-accent); }

/* ============================================================
   SECTION TOP (pages intérieures)
   ============================================================ */
.aed-section-top {
  background: linear-gradient(135deg, var(--aed-dark) 0%, #1a236e 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.aed-section-top::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(82,95,225,.3) 0%, transparent 70%);
  border-radius: 50%;
}
.aed-section-top h1 {
  font-family: var(--aed-font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.aed-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.aed-breadcrumb li { font-size: 14px; color: rgba(255,255,255,.7); }
.aed-breadcrumb li a { color: rgba(255,255,255,.85); }
.aed-breadcrumb li a:hover { color: #fff; }
.aed-breadcrumb li::after { content: '›'; margin-left: 6px; }
.aed-breadcrumb li:last-child::after { display: none; }
.aed-breadcrumb li:last-child { color: var(--aed-accent); }

/* ============================================================
   STATS
   ============================================================ */
.aed-stats {
  background: var(--aed-white);
  box-shadow: var(--aed-shadow-lg);
  border-radius: var(--aed-radius);
  padding: 40px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.aed-stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--aed-border);
}
.aed-stat-item:last-child { border-right: none; }
.aed-stat-number {
  font-family: var(--aed-font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--aed-primary);
  line-height: 1;
  display: block;
}
.aed-stat-label {
  font-size: 14px;
  color: var(--aed-muted);
  margin-top: 6px;
}

/* ============================================================
   SECTION UTILITY
   ============================================================ */
.aed-section { padding: 70px 0; }
.aed-section-sm { padding: 50px 0; }
.aed-section-light { background: var(--aed-light); }
.aed-section-dark { background: var(--aed-dark); }
.aed-section-title {
  font-family: var(--aed-font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--aed-dark);
  margin-bottom: 12px;
}
.aed-section-subtitle {
  color: var(--aed-muted);
  font-size: 16px;
  margin-bottom: 40px;
}
.aed-label {
  display: inline-block;
  background: rgba(82,95,225,.1);
  color: var(--aed-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.aed-feature-card {
  background: var(--aed-white);
  border: 1px solid var(--aed-border);
  border-radius: var(--aed-radius);
  padding: 28px;
  height: 100%;
  transition: all .3s ease;
  border-top: 3px solid transparent;
}
.aed-feature-card:hover {
  box-shadow: var(--aed-shadow);
  border-top-color: var(--aed-primary);
  transform: translateY(-4px);
}
.aed-feature-icon {
  width: 56px; height: 56px;
  background: rgba(82,95,225,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--aed-primary);
  margin-bottom: 16px;
}
.aed-feature-card h4 { font-size: 17px; margin-bottom: 8px; }
.aed-feature-card p { font-size: 14px; color: var(--aed-muted); margin: 0; }

/* ============================================================
   STEPS
   ============================================================ */
.aed-steps { counter-reset: aed-step; }
.aed-step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.aed-step-num {
  counter-increment: aed-step;
  min-width: 48px; height: 48px;
  background: var(--aed-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--aed-font-head);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.aed-step-item:hover .aed-step-num { background: var(--aed-accent); }
.aed-step-body h4 { font-size: 17px; margin-bottom: 6px; }
.aed-step-body p { font-size: 14px; color: var(--aed-muted); margin: 0; }

/* ============================================================
   CHECKLIST
   ============================================================ */
.aed-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aed-checklist li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid var(--aed-border);
}
.aed-checklist li:last-child { border-bottom: none; }
.aed-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--aed-success);
  font-weight: 700;
  font-size: 16px;
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.aed-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--aed-radius);
  overflow: hidden;
  box-shadow: var(--aed-shadow);
  font-size: 14px;
}
.aed-compare-table thead tr {
  background: var(--aed-dark);
  color: #fff;
}
.aed-compare-table thead th {
  padding: 14px 18px;
  font-family: var(--aed-font-head);
  font-weight: 600;
}
.aed-compare-table tbody tr:nth-child(even) { background: var(--aed-light); }
.aed-compare-table tbody td { padding: 12px 18px; border-bottom: 1px solid var(--aed-border); }
.aed-compare-table .highlight { background: rgba(82,95,225,.08) !important; font-weight: 600; }

/* ============================================================
   INFO BOXES
   ============================================================ */
.aed-info-box {
  border-left: 4px solid var(--aed-primary);
  background: rgba(82,95,225,.07);
  border-radius: 0 var(--aed-radius) var(--aed-radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 15px;
}
.aed-info-box.aed-warn {
  border-color: var(--aed-warn);
  background: rgba(255,193,7,.08);
}
.aed-info-box.aed-success {
  border-color: var(--aed-success);
  background: rgba(40,167,69,.08);
}
.aed-info-box.aed-accent {
  border-color: var(--aed-accent);
  background: rgba(242,107,101,.07);
}
.aed-info-box strong { display: block; margin-bottom: 4px; }

/* ============================================================
   FAQ ACCORDÉON
   ============================================================ */
.aed-faq-item {
  border: 1px solid var(--aed-border);
  border-radius: var(--aed-radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.aed-faq-question {
  padding: 16px 20px;
  font-family: var(--aed-font-head);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--aed-white);
  transition: background .2s;
  user-select: none;
}
.aed-faq-question:hover { background: var(--aed-light); }
.aed-faq-question.active { background: var(--aed-primary); color: #fff; }
.aed-faq-question .faq-icon {
  font-size: 20px;
  line-height: 1;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.aed-faq-question.active .faq-icon { transform: rotate(45deg); }
.aed-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: #fff;
  font-size: 14px;
  color: var(--aed-text);
}
.aed-faq-answer.open {
  max-height: 500px;
  padding: 16px 20px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.aed-trust-bar {
  background: var(--aed-white);
  border-bottom: 1px solid var(--aed-border);
  padding: 14px 0;
}
.aed-trust-bar .aed-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: center;
}
.aed-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--aed-dark);
}
.aed-trust-badge i { color: var(--aed-primary); font-size: 18px; }
.aed-trust-badge.accent i { color: var(--aed-accent); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.aed-cta-banner {
  background: linear-gradient(135deg, var(--aed-primary) 0%, #3d4ab8 100%);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aed-cta-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.aed-cta-banner h2 { color: #fff; font-size: clamp(20px, 3vw, 30px); margin-bottom: 12px; }
.aed-cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 24px; font-size: 16px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.aed-testimonial {
  background: var(--aed-white);
  border: 1px solid var(--aed-border);
  border-radius: var(--aed-radius);
  padding: 28px;
  height: 100%;
  position: relative;
}
.aed-testimonial::before {
  content: '"';
  font-size: 80px;
  line-height: .8;
  color: var(--aed-primary);
  opacity: .12;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: Georgia, serif;
}
.aed-testimonial-text { font-style: italic; margin-bottom: 20px; font-size: 15px; }
.aed-testimonial-author { display: flex; align-items: center; gap: 12px; }
.aed-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--aed-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.aed-testimonial-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.aed-testimonial-meta { font-size: 12px; color: var(--aed-muted); }
.aed-stars { color: #ffc107; font-size: 13px; margin-bottom: 12px; }

/* ============================================================
   PRICE CARDS
   ============================================================ */
.aed-price-card {
  background: var(--aed-white);
  border: 2px solid var(--aed-border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: all .3s ease;
}
.aed-price-card.featured {
  border-color: var(--aed-primary);
  box-shadow: var(--aed-shadow-lg);
  transform: scale(1.03);
}
.aed-price-card:hover { box-shadow: var(--aed-shadow-lg); }
.aed-price-badge {
  background: var(--aed-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}
.aed-price-amount {
  font-family: var(--aed-font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--aed-dark);
  line-height: 1;
}
.aed-price-period { font-size: 14px; color: var(--aed-muted); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.aed-sidebar-card {
  background: var(--aed-white);
  border: 1px solid var(--aed-border);
  border-radius: var(--aed-radius);
  padding: 24px;
  margin-bottom: 24px;
}
.aed-sidebar-card h4 {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--aed-primary);
  display: inline-block;
}
.aed-sidebar-links { list-style: none; padding: 0; margin: 0; }
.aed-sidebar-links li { border-bottom: 1px solid var(--aed-border); }
.aed-sidebar-links li:last-child { border-bottom: none; }
.aed-sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--aed-text);
  transition: color .2s;
}
.aed-sidebar-links a:hover { color: var(--aed-primary); text-decoration: none; }
.aed-sidebar-links a i { color: var(--aed-primary); font-size: 12px; flex-shrink: 0; }
.aed-sidebar-cta {
  background: linear-gradient(135deg, var(--aed-primary) 0%, #3d4ab8 100%);
  border-radius: var(--aed-radius);
  padding: 28px 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}
.aed-sidebar-cta h4 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.aed-sidebar-cta p { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 16px; }

/* ============================================================
   RELATED GRID
   ============================================================ */
.aed-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.aed-related-item {
  background: var(--aed-white);
  border: 1px solid var(--aed-border);
  border-radius: var(--aed-radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .25s ease;
  text-decoration: none;
  color: var(--aed-text);
}
.aed-related-item:hover {
  border-color: var(--aed-primary);
  box-shadow: var(--aed-shadow);
  color: var(--aed-text);
  text-decoration: none;
  transform: translateY(-2px);
}
.aed-related-icon {
  width: 42px; height: 42px;
  background: rgba(82,95,225,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aed-primary);
  font-size: 18px;
  flex-shrink: 0;
}
.aed-related-item h5 { font-size: 14px; margin-bottom: 4px; }
.aed-related-item p { font-size: 12px; color: var(--aed-muted); margin: 0; }

/* ============================================================
   TUNNEL PAGE
   ============================================================ */
.aed-tunnel-wrapper {
  background: var(--aed-light);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.aed-tunnel-iframe {
  width: 100%;
  min-height: 650px;
  border: none;
  border-radius: var(--aed-radius);
  display: block;
}

/* ============================================================
   ORIAS BADGE
   ============================================================ */
.aed-orias {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(40,167,69,.1);
  border: 1px solid rgba(40,167,69,.25);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: #155724;
  font-weight: 600;
}
.aed-orias i { color: var(--aed-success); }

/* ============================================================
   ARTICLE CONTENT
   ============================================================ */
.aed-article-body h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--aed-border);
}
.aed-article-body h3 { font-size: 18px; margin: 24px 0 10px; color: var(--aed-primary); }
.aed-article-body p { margin-bottom: 18px; }
.aed-article-body ul { padding-left: 20px; margin-bottom: 18px; }
.aed-article-body ul li { margin-bottom: 6px; }
.aed-article-body strong { color: var(--aed-dark); }

/* ============================================================
   FOOTER (styles du GP Element footer)
   ============================================================ */
.aed-footer-wrap {
  background: #0b104a;
  color: rgba(255,255,255,.72);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  padding: 56px 0 0;
  margin-top: 60px;
}
.aed-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: 48px;
}
.aed-footer-brand-name {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.aed-footer-brand-name span { color: #f26b65; }
.aed-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  max-width: 280px;
  line-height: 1.6;
}
.aed-footer-orias {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(40,167,69,.14);
  border: 1px solid rgba(40,167,69,.3);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  color: #7de89a;
  font-weight: 600;
  margin-bottom: 20px;
}
.aed-footer-orias i { color: #4cdb75; font-size: 13px; }
.aed-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.aed-footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: all .2s;
  text-decoration: none !important;
}
.aed-footer-social a:hover {
  background: #525fe1;
  border-color: #525fe1;
  color: #fff;
}
.aed-footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.aed-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aed-footer-links-list li { margin-bottom: 9px; }
.aed-footer-links-list a {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  text-decoration: none !important;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.aed-footer-links-list a:hover { color: #fff; }
.aed-footer-links-list a i {
  font-size: 11px;
  color: #525fe1;
  flex-shrink: 0;
}
.aed-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.aed-footer-bottom a {
  color: rgba(255,255,255,.55);
  text-decoration: none !important;
  transition: color .2s;
}
.aed-footer-bottom a:hover { color: #fff; }
.aed-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

/* ============================================================
   HEADER / NAV GeneratePress overrides
   ============================================================ */
.aed-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--aed-white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.aed-header .navbar-brand {
  font-family: var(--aed-font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--aed-dark) !important;
}
.aed-header .navbar-brand span { color: var(--aed-primary); }
.aed-header .nav-link {
  color: var(--aed-text) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px !important;
  transition: color .2s;
}
.aed-header .nav-link:hover { color: var(--aed-primary) !important; }
.aed-header .nav-link.active { color: var(--aed-primary) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .aed-hero { padding: 60px 0 50px; }
  .aed-stats { margin-top: 0; }
  .aed-stat-item { border-right: none; border-bottom: 1px solid var(--aed-border); }
  .aed-stat-item:last-child { border-bottom: none; }
  .aed-price-card.featured { transform: none; }
  .aed-cta-banner { padding: 36px 24px; }
  .aed-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .aed-footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .aed-section { padding: 50px 0; }
  .aed-hero-cta { margin-top: 32px; }
  .aed-related-grid { grid-template-columns: 1fr; }
  .aed-tunnel-wrapper { padding: 20px; }
}
@media (max-width: 575px) {
  .aed-footer-grid { grid-template-columns: 1fr; }
  .aed-footer-wrap { padding-top: 40px; }
  .aed-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-primary-aed { color: var(--aed-primary) !important; }
.text-accent-aed  { color: var(--aed-accent)  !important; }
.text-dark-aed    { color: var(--aed-dark)    !important; }
.bg-aed-light     { background: var(--aed-light) !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
