/* ============================================================
   planning-planeezy.com — Feuille de style principale
   Palette : Teal/Vert émeraude moderne
   ============================================================ */

/* ---- Variables globales ---- */
:root {
  --primary:       #00B894;
  --primary-dark:  #00917A;
  --primary-light: #E0F5F1;
  --secondary:     #00CEC9;
  --accent:        #FF6B35;
  --accent-dark:   #E55A25;
  --dark:          #0F2027;
  --dark-2:        #1E293B;
  --text:          #334155;
  --text-light:    #64748B;
  --border:        #D1FAF0;
  --bg-light:      #F0FAFB;
  --white:         #FFFFFF;
  --gold:          #F59E0B;
  --silver:        #94A3B8;
  --bronze:        #CD7C41;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(0,184,148,.12);
  --shadow-lg:     0 12px 40px rgba(0,184,148,.18);
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-2);
  line-height: 1.2;
  font-weight: 700;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ---- Utilitaires ---- */
.text-primary   { color: var(--primary) !important; }
.text-accent    { color: var(--accent) !important; }
.text-light-c   { color: var(--text-light) !important; }
.bg-primary-light { background: var(--primary-light); }
.bg-dark        { background: var(--dark) !important; }
.fw-600         { font-weight: 600; }
.fw-700         { font-weight: 700; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ---- Boutons ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  border: none;
  padding: .75rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 20px rgba(0,184,148,.35);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,184,148,.45);
  color: var(--white) !important;
}
.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent), #FF8C5A);
  color: var(--white) !important;
  border: none;
  padding: .75rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
  transition: var(--transition);
  cursor: pointer;
}
.btn-accent-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,.45);
  color: var(--white) !important;
}
.btn-outline-custom {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  padding: .7rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: var(--shadow);
}
.btn-white-custom {
  background: var(--white);
  color: var(--primary-dark) !important;
  border: none;
  padding: .75rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 20px rgba(255,255,255,.3);
  transition: var(--transition);
  cursor: pointer;
}
.btn-white-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,.4);
  color: var(--primary-dark) !important;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,184,148,.1);
  transition: var(--transition);
  padding: .75rem 0;
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark-2) !important;
}
.navbar-brand span { color: var(--primary); }
.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: .875rem;
  padding: .4rem .75rem !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}
.nav-cta {
  background: linear-gradient(135deg, var(--accent), #FF8C5A);
  color: var(--white) !important;
  padding: .45rem 1.2rem !important;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 3px 14px rgba(255,107,53,.3);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(255,107,53,.4);
}
/* Dropdown */
.navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  min-width: 200px;
}
.navbar .dropdown-item {
  border-radius: 8px;
  padding: .5rem .85rem;
  font-size: .875rem;
  color: var(--text);
  transition: var(--transition);
}
.navbar .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.rank-badge-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  color: white;
  margin-right: 6px;
}
.rank-1 { background: var(--gold); }
.rank-2 { background: var(--silver); }
.rank-3 { background: var(--bronze); }
.rank-4 { background: #A0AEC0; }
.rank-5 { background: #CBD5E0; }

/* Toggle mobile */
.navbar-toggler {
  border: 1.5px solid var(--primary);
  padding: .35rem .6rem;
  border-radius: 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300B894' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero-main {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
}
.hero-main::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,184,148,.25) 0%, transparent 70%);
  top: -100px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-main::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,206,201,.15) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-main .tag-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,184,148,.18);
  border: 1px solid rgba(0,184,148,.35);
  color: #5EFAD8;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-main h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-main h1 span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-main .lead {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-ranking-preview {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.hero-rank-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-rank-item:last-child { border-bottom: none; }
.hero-rank-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.hero-rank-name { color: white; font-weight: 600; font-size: .9rem; flex: 1; }
.hero-rank-score {
  color: var(--primary);
  font-weight: 700;
  font-size: .85rem;
}
.hero-rank-item.top1 .hero-rank-name { color: #5EFAD8; }

/* Hero secondaire (pages internes) */
.hero-inner {
  padding: 7rem 0 3.5rem;
  background: linear-gradient(135deg, #0F2027 0%, #203A43 60%, #2C5364 100%);
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,184,148,.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.hero-inner .lead { color: rgba(255,255,255,.75); }
.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 1rem;
}
.breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .85rem; }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: rgba(255,255,255,.9); font-size: .85rem; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ============================================================
   SCORE / NOTE BADGE
   ============================================================ */
.score-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow);
}
.score-badge .score-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.score-badge .score-label {
  font-size: .65rem;
  font-weight: 600;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stars-row { display: flex; gap: 3px; margin: .35rem 0; }
.stars-row i { color: var(--gold); font-size: .85rem; }
.stars-row i.half { position: relative; }

/* ============================================================
   RANKING CARDS (homepage)
   ============================================================ */
.ranking-section { padding: 5rem 0; background: var(--bg-light); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: .5rem;
}
.section-subtitle { color: var(--text-light); font-size: 1rem; max-width: 600px; }

.rank-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  color: inherit;
}
.rank-card.rank-card-1 {
  background: linear-gradient(135deg, #E0F5F1 0%, #F0FAFB 100%);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.rank-card.rank-card-1::before {
  content: '⭐ N°1';
  position: absolute;
  top: .75rem; right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 100px;
}
.rank-position {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pos-1 { background: linear-gradient(135deg, #F59E0B, #FBBF24); color: white; box-shadow: 0 4px 14px rgba(245,158,11,.4); }
.pos-2 { background: linear-gradient(135deg, #94A3B8, #B0BEC5); color: white; box-shadow: 0 4px 14px rgba(148,163,184,.4); }
.pos-3 { background: linear-gradient(135deg, #CD7C41, #D4966A); color: white; box-shadow: 0 4px 14px rgba(205,124,65,.4); }
.pos-4 { background: linear-gradient(135deg, #A0AEC0, #B2C0CE); color: white; }
.pos-5 { background: linear-gradient(135deg, #CBD5E0, #D9E5EF); color: #64748B; }

.rank-card-body { flex: 1; min-width: 0; }
.rank-card-body h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.rank-card-body p { font-size: .875rem; color: var(--text-light); margin-bottom: .65rem; line-height: 1.5; }
.rank-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-pill {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 100px;
  background: var(--primary-light);
  color: var(--primary-dark);
}
.rank-card-score { text-align: center; flex-shrink: 0; }
.rank-card-score .big-score {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.rank-card-score .score-max {
  font-size: .75rem;
  color: var(--text-light);
}
.rank-card .arrow-icon {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  color: var(--primary);
  opacity: .5;
  transition: var(--transition);
}
.rank-card:hover .arrow-icon { opacity: 1; transform: translateX(4px); }

/* ============================================================
   APP PAGE — FICHE DÉTAIL
   ============================================================ */
.app-detail { padding: 4rem 0; }
.app-logo-block {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: white;
  flex-shrink: 0;
}
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.criteria-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.criteria-item .c-label {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.criteria-item .c-score {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}
.criteria-item .progress {
  height: 6px;
  border-radius: 100px;
  background: var(--primary-light);
  margin-top: .5rem;
}
.criteria-item .progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 100px;
}

/* Pros / Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media(max-width:640px){ .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-block, .cons-block {
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pros-block {
  background: linear-gradient(135deg, #E0F5F1, #F0FAFB);
  border: 1.5px solid #A7F3D0;
}
.cons-block {
  background: linear-gradient(135deg, #FFF5F0, #FFF8F5);
  border: 1.5px solid #FECACA;
}
.pros-block h4 { color: var(--primary-dark); margin-bottom: 1rem; }
.cons-block h4 { color: #EF4444; margin-bottom: 1rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--text);
  padding: .35rem 0;
}
.check-list li i.check { color: var(--primary); font-size: .85rem; margin-top: .2rem; flex-shrink: 0; }
.check-list li i.cross { color: #EF4444; font-size: .85rem; margin-top: .2rem; flex-shrink: 0; }

/* Tableau fonctionnalités */
.features-table { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.features-table table { width: 100%; border-collapse: collapse; }
.features-table thead tr { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.features-table thead th { color: white; padding: .85rem 1.1rem; font-size: .85rem; font-weight: 600; }
.features-table tbody tr:nth-child(even) { background: var(--bg-light); }
.features-table tbody tr:hover { background: var(--primary-light); }
.features-table tbody td { padding: .75rem 1.1rem; font-size: .875rem; border-top: 1px solid var(--border); }
.feat-yes { color: var(--primary); font-weight: 600; }
.feat-no  { color: #94A3B8; }
.feat-partial { color: var(--gold); font-weight: 600; }

/* ============================================================
   COMPARAISON SIDEBAR / STICKY CTA
   ============================================================ */
.sticky-cta-card {
  position: sticky;
  top: 90px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sticky-cta-card .cta-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: .75rem;
}
.sticky-nav-links li { padding: .3rem 0; border-bottom: 1px solid var(--primary-light); }
.sticky-nav-links li:last-child { border-bottom: none; }
.sticky-nav-links a {
  font-size: .85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.sticky-nav-links a:hover { color: var(--primary); }
.sticky-nav-links a i { font-size: .75rem; color: var(--primary); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,184,148,.2) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.cta-banner p { color: rgba(255,255,255,.75); max-width: 580px; }

/* ============================================================
   CONSEILS PAGE
   ============================================================ */
.article-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--primary-dark); }
.article-body h3 { font-size: 1.15rem; margin: 1.75rem 0 .6rem; }
.article-body p  { margin-bottom: 1rem; line-height: 1.8; }
.conseil-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.conseil-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-3px); }
.conseil-num {
  position: absolute;
  top: -18px; left: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,184,148,.4);
}
.conseil-card h3 { margin-top: .25rem; margin-bottom: .75rem; font-size: 1.1rem; }
.conseil-card p { font-size: .9rem; color: var(--text); line-height: 1.7; margin: 0; }

/* ============================================================
   FORMULAIRE D'AUDIT
   ============================================================ */
.audit-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-label { font-weight: 600; font-size: .875rem; color: var(--dark-2); margin-bottom: .35rem; }
.form-control, .form-select {
  border: 1.5px solid #D1D5DB;
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: var(--transition);
  color: var(--text);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,184,148,.15);
  outline: none;
}
.form-control::placeholder { color: #9CA3AF; }
.audit-include-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  border-radius: var(--radius);
  background: var(--primary-light);
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 500;
}
.audit-include-item i { color: var(--primary); flex-shrink: 0; }

/* Alert messages */
#form-success { display: none; }
#form-error   { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.7);
}
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer-logo span { color: var(--primary); }
footer h6 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
footer a { color: rgba(255,255,255,.6); font-size: .875rem; display: block; margin-bottom: .4rem; }
footer a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0,184,148,.15);
  border: 1px solid rgba(0,184,148,.25);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--text-light); font-weight: 500; margin-top: .3rem; }

/* ============================================================
   TESTIMONIAL / QUOTE BLOCK
   ============================================================ */
.quote-block {
  background: linear-gradient(135deg, var(--primary-light), #F0FAFB);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
  position: relative;
}
.quote-block::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary);
  opacity: .15;
  position: absolute;
  top: -.5rem; left: 1rem;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-main { min-height: auto; padding: 6rem 0 4rem; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .rank-card { flex-wrap: wrap; }
  .rank-card.rank-card-1::before { display: none; }
  .features-table { overflow-x: auto; display: block; }
  .audit-form-wrap { padding: 1.5rem; }
  .sticky-cta-card { position: static; }
}
@media (max-width: 575px) {
  .hero-main h1 { font-size: 1.9rem; }
  .cta-banner { padding: 3.5rem 0; }
}

/* ============================================================
   ANIMATIONS / AOS CUSTOM
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width .1s linear;
}
