/* ============================================
   AdSense Approval Checker - Main Stylesheet
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #818cf8;
  --secondary: #ec4899;
  --secondary-dark: #be185d;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-3: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::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(--dark);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, textarea, select, button { font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-primary {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.2);
}
.section-header { margin-bottom: 50px; }
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 6px; }

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dark-3);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(79, 70, 229, 0.08);
}
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.8rem;
  transition: var(--transition);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--dark-3);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(79, 70, 229, 0.06);
  color: var(--primary);
  padding-left: 18px;
}
.nav-cta { margin-left: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero Section ---- */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #f0f4ff 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge { margin-bottom: 20px; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}
.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ---- Checker Tool ---- */
.checker-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border);
  position: relative;
}
.checker-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gradient-1);
  z-index: -1;
  opacity: 0.5;
}
.checker-label {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 1rem;
}
.checker-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.checker-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  color: var(--dark);
}
.checker-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.checker-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.checker-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray);
}
.checker-feature-item .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Results Section ---- */
#results-section {
  margin-top: 20px;
  display: none;
}
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.score-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  border: 4px solid;
  flex-shrink: 0;
}
.score-good { border-color: var(--success); color: var(--success); }
.score-warning { border-color: var(--warning); color: var(--warning); }
.score-bad { border-color: var(--danger); color: var(--danger); }
.result-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--bg);
}
.result-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.result-pass { background: rgba(16,185,129,0.1); color: var(--success); }
.result-fail { background: rgba(239,68,68,0.1); color: var(--danger); }
.result-warn { background: rgba(245,158,11,0.1); color: var(--warning); }
.result-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.result-text p { font-size: 0.82rem; color: var(--gray); }
.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-1);
  transition: width 1.5s ease;
  width: 0;
}

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(236,72,153,0.1));
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ---- Stats ---- */
.stats-section {
  background: var(--gradient-1);
  color: var(--white);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.stat-item p { font-size: 0.95rem; opacity: 0.85; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--white); }
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 340px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-3);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  background: var(--gradient-1);
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.author-info .role { font-size: 0.8rem; color: var(--gray); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--dark);
}
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ---- How it works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 30px 20px;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 20px rgba(79,70,229,0.3);
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ---- CTA Banner ---- */
.cta-section {
  background: var(--gradient-1);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 30px; }

/* ---- Ad Slots ---- */
/* Ad slots are invisible until real AdSense code is placed inside */
.ad-slot {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  overflow: hidden;
  /* Hide the slot completely when empty */
  min-height: 0;
  height: auto;
}
/* Only show spacing when AdSense ins tag is present */
.ad-slot ins,
.ad-slot > [data-ad] {
  display: block;
  margin: 30px auto;
}
/* Empty ad slots take no space and are invisible */
.ad-slot:empty,
.ad-slot-banner:empty,
.ad-slot-rectangle:empty,
.ad-slot-leaderboard:empty {
  display: none !important;
}
.ad-slot-banner { height: auto; }
.ad-slot-rectangle { height: auto; max-width: 336px; margin: 0 auto; }
.ad-slot-leaderboard { height: auto; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(79,70,229,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ---- Footer ---- */
#footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: var(--white);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--primary-light); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #64748b; font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #64748b; font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark-2);
  color: var(--white);
  padding: 20px 0;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text p { font-size: 0.9rem; color: #cbd5e1; line-height: 1.6; }
.cookie-text a { color: var(--primary-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  padding: 10px 22px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: var(--primary-dark); }
.cookie-btn-decline {
  padding: 10px 22px;
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cookie-btn-decline:hover { border-color: white; color: white; }

/* ---- Page Hero ---- */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 100%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.page-hero p { font-size: 1rem; color: var(--gray); max-width: 550px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--gray-light); }

/* ---- Blog Card ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-image {
  height: 200px;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-image .img-icon { font-size: 3.5rem; opacity: 0.5; }
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.blog-card-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1.4;
}
.blog-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.read-more:hover { gap: 10px; }

/* ---- Blog Post ---- */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}
.post-header { margin-bottom: 40px; }
.post-meta { display: flex; align-items: center; gap: 16px; color: var(--gray); font-size: 0.88rem; margin: 14px 0; flex-wrap: wrap; }
.post-category {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(79,70,229,0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.post-content h2 { font-size: 1.6rem; font-weight: 700; margin: 35px 0 15px; color: var(--dark); line-height: 1.3; }
.post-content h3 { font-size: 1.2rem; font-weight: 700; margin: 25px 0 12px; color: var(--dark); }
.post-content p { font-size: 1rem; color: #374151; line-height: 1.85; margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 15px 0 20px 25px; }
.post-content li { font-size: 0.98rem; color: #374151; line-height: 1.8; margin-bottom: 6px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-tip {
  background: linear-gradient(135deg, rgba(79,70,229,0.06), rgba(236,72,153,0.06));
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 25px 0;
}
.post-tip h4 { font-weight: 700; margin-bottom: 6px; color: var(--primary); }
.post-tip p { margin: 0; font-size: 0.93rem; color: var(--dark-3); }

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-info h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 14px; }
.contact-info p { color: var(--gray); line-height: 1.7; margin-bottom: 30px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(79,70,229,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 3px; }
.contact-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; color: var(--dark); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  color: var(--dark);
  background: var(--bg);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--success);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

/* ---- Legal Pages ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.legal-content h2 { font-size: 1.5rem; font-weight: 700; margin: 35px 0 14px; color: var(--dark); }
.legal-content h3 { font-size: 1.15rem; font-weight: 700; margin: 25px 0 10px; color: var(--dark); }
.legal-content p { font-size: 0.95rem; color: #374151; line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 16px 24px; list-style: disc; }
.legal-content li { font-size: 0.93rem; color: #374151; line-height: 1.8; margin-bottom: 6px; }
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(79,70,229,0.07);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 28px;
  font-weight: 500;
}

/* ---- Sitemap ---- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}
.sitemap-group h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sitemap-links { display: flex; flex-direction: column; gap: 8px; }
.sitemap-link {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  padding: 4px 0;
}
.sitemap-link:hover { color: var(--primary); padding-left: 5px; }

/* ---- About Page ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.value-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.value-icon { font-size: 2.5rem; margin-bottom: 14px; }
.value-card h4 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 12px; box-shadow: var(--shadow-lg); }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 12px; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .hero { padding: 110px 0 60px; }
  .checker-input-group { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-content { padding: 30px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 280px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .checker-features { flex-direction: column; }
}

/* ============================================================
   GLOBAL ANIMATIONS
   ============================================================ */

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40%           { transform: translateY(-14px); }
  60%           { transform: translateY(-7px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,70,229,.25); }
  50%       { box-shadow: 0 0 0 12px rgba(79,70,229,0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Hero section entrance --- */
.hero-content h1 {
  animation: fadeInUp .7s ease both;
}
.hero-content p {
  animation: fadeInUp .7s .15s ease both;
}
.hero-content .btn,
.hero-content .hero-actions {
  animation: fadeInUp .7s .28s ease both;
}
.hero-badge, .hero-trust {
  animation: fadeInUp .6s .05s ease both;
}

/* --- Scroll-reveal base (used by main.js) --- */
.fade-in-up {
  animation: fadeInUp .6s ease forwards;
}

/* --- Feature cards --- */
.feature-card {
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 40px rgba(79,70,229,.14);
  border-color: var(--primary);
}
.feature-card .feature-icon {
  transition: transform .35s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.18) rotate(-4deg);
}

/* --- Step cards --- */
.step-card {
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(79,70,229,.13);
}

/* --- Blog cards (global) --- */
.blog-card {
  transition: transform .28s ease, box-shadow .28s ease;
}
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 36px rgba(79,70,229,.16);
}

/* --- Buttons: shimmer on hover --- */
.btn-primary {
  background-size: 200% auto;
  background-image: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #4f46e5 100%);
  transition: background-position .4s ease, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,.35);
}

/* --- Nav logo float --- */
.logo-icon {
  animation: floatY 3.5s ease-in-out infinite;
}

/* --- Score circle pulse when shown --- */
.score-circle {
  animation: scaleIn .5s ease;
}
.score-good {
  animation: scaleIn .5s ease, pulseGlow 2.5s ease-in-out 1s infinite;
}

/* --- Checker card entrance --- */
.checker-card {
  animation: fadeInUp .7s .1s ease both;
}

/* --- Stat numbers --- */
.stat-number {
  animation: fadeInUp .55s ease both;
}

/* --- Testimonial cards --- */
.testimonial-card {
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* --- FAQ items --- */
.faq-item {
  transition: box-shadow .25s, border-color .25s;
}
.faq-item:hover, .faq-item.open {
  box-shadow: 0 4px 18px rgba(79,70,229,.10);
  border-color: var(--primary);
}

/* --- Footer links --- */
.footer-link {
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-link:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

/* --- Cookie banner slide-up --- */
#cookie-banner {
  animation: slideUp .5s ease both;
}

/* --- Page hero badge --- */
.badge {
  animation: fadeInDown .5s ease both;
}

/* --- Floating CTA rocket emoji --- */
.cta-emoji-float {
  display: inline-block;
  animation: floatY 2.5s ease-in-out infinite;
}

/* --- Nav: smooth underline on hover --- */
.nav-link::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   MOBILE RESPONSIVE TWEAKS FOR NEW THEME
   ============================================================ */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; padding: 0 15px; }
  .trust-row { gap: 10px; margin-bottom: 30px; }
  .trust-badge { font-size: 0.7rem; padding: 4px 10px; }
  
  .glass-checker { padding: 20px 15px; border-radius: 16px; margin: 0 10px; }
  .glass-checker-label { font-size: 0.8rem; text-align: center; justify-content: center; }
  .input-wrap { flex-direction: column; }
  .btn-glow { width: 100%; text-align: center; }
  .check-tags { justify-content: center; }
  
  .stats-dark-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .stat-dark-item { padding: 20px 10px; }
  .stat-dark-number { font-size: 1.8rem; }
  
  .features-dark { padding: 60px 0; }
  
  .steps-dark-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-dark-grid::before { display: none; }
  
  .cta-btns { flex-direction: column; padding: 0 20px; }
  .cta-btns a { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 90px 0 40px; }
  
  .stats-dark-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; margin-top: 15px; }
  
  #cookie-banner .cookie-inner { flex-direction: column; text-align: center; }
  #cookie-banner .cookie-actions { width: 100%; justify-content: center; margin-top: 10px; }
}

.faq-dark .faq-question,
section.faq-dark .faq-question {
  background: transparent !important;
  color: #e2e8f0 !important;
}
.faq-dark .faq-question:hover {
  color: #818cf8 !important;
}
.faq-dark .faq-answer-inner {
  color: #94a3b8 !important;
}
.faq-dark .faq-item {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.1) !important;
}
.faq-dark .faq-item.open {
  border-color: rgba(99,102,241,.45) !important;
}
.faq-dark .faq-item:hover {
  border-color: rgba(99,102,241,.35) !important;
  box-shadow: 0 4px 20px rgba(99,102,241,.12) !important;
}

/* ============================================================
   NIGHT MODE TOGGLE BUTTON
   ============================================================ */
#theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #e2e8f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background .25s, border-color .25s, transform .25s;
  flex-shrink: 0;
  margin-right: 8px;
  backdrop-filter: blur(8px);
}
#theme-toggle:hover {
  background: rgba(99,102,241,.25);
  border-color: rgba(99,102,241,.5);
  transform: rotate(20deg) scale(1.1);
}

/* ============================================================
   LIGHT MODE — [data-theme="light"]
   Applied to <body> when user clicks toggle
   ============================================================ */
body[data-theme="light"] {
  background: #f8fafc !important;
}

/* Navbar light */
body[data-theme="light"] #navbar {
  background: rgba(255,255,255,.95) !important;
  border-bottom: 1px solid #e2e8f0 !important;
}
body[data-theme="light"] #navbar.scrolled {
  background: rgba(255,255,255,1) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.08) !important;
}
body[data-theme="light"] .nav-logo span,
body[data-theme="light"] .nav-link { color: #0f172a !important; }
body[data-theme="light"] .nav-link:hover { color: #4f46e5 !important; }
body[data-theme="light"] .dropdown-menu {
  background: white !important;
  border: 1px solid #e2e8f0 !important;
}
body[data-theme="light"] .dropdown-item { color: #334155 !important; }
body[data-theme="light"] .dropdown-item:hover { color: #4f46e5 !important; background: #eff0ff !important; }
body[data-theme="light"] #theme-toggle {
  border-color: #e2e8f0 !important;
  background: #f1f5f9 !important;
  color: #334155 !important;
}

/* Hero light */
body[data-theme="light"] .hero {
  background: linear-gradient(135deg, #eff0ff 0%, #f0f9ff 50%, #fdf4ff 100%) !important;
}
body[data-theme="light"] .hero h1 { color: #0f172a !important; }
body[data-theme="light"] .hero-sub { color: #475569 !important; }
body[data-theme="light"] .hero-pill {
  background: rgba(79,70,229,.1) !important;
  border-color: rgba(79,70,229,.3) !important;
  color: #4f46e5 !important;
}
body[data-theme="light"] .trust-badge {
  background: white !important;
  border-color: #e2e8f0 !important;
  color: #475569 !important;
}
body[data-theme="light"] .glass-checker {
  background: white !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.1) !important;
}
body[data-theme="light"] .glass-checker::before { display: none !important; }
body[data-theme="light"] .glass-input {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}
body[data-theme="light"] .glass-input::placeholder { color: #94a3b8 !important; }
body[data-theme="light"] .glass-checker-label { color: #64748b !important; }
body[data-theme="light"] .check-tag {
  background: #eff0ff !important;
  border-color: #c7d2fe !important;
  color: #4f46e5 !important;
}

/* Stats light */
body[data-theme="light"] .stats-dark { background: #f1f5f9 !important; }
body[data-theme="light"] .stat-dark-item {
  background: white !important;
  border-color: #e2e8f0 !important;
}
body[data-theme="light"] .stat-dark-label { color: #64748b !important; }

/* Features light */
body[data-theme="light"] .features-dark { background: #f8fafc !important; }
body[data-theme="light"] .features-dark .section-header h2 { color: #0f172a !important; }
body[data-theme="light"] .features-dark .section-header p  { color: #64748b !important; }
body[data-theme="light"] .feature-glass {
  background: white !important;
  border-color: #e2e8f0 !important;
}
body[data-theme="light"] .feature-glass h3 { color: #0f172a !important; }
body[data-theme="light"] .feature-glass p  { color: #64748b !important; }

/* Steps light */
body[data-theme="light"] .steps-dark { background: #f1f5f9 !important; }
body[data-theme="light"] .steps-dark .section-header h2 { color: #0f172a !important; }
body[data-theme="light"] .steps-dark .section-header p  { color: #64748b !important; }
body[data-theme="light"] .step-dark {
  background: white !important;
  border-color: #e2e8f0 !important;
}
body[data-theme="light"] .step-dark h3 { color: #0f172a !important; }
body[data-theme="light"] .step-dark p  { color: #64748b !important; }

/* Testimonials light */
body[data-theme="light"] .testimonials-dark { background: #f8fafc !important; }
body[data-theme="light"] .testimonials-dark .section-header h2 { color: #0f172a !important; }
body[data-theme="light"] .testimonials-dark .section-header p  { color: #64748b !important; }
body[data-theme="light"] .test-card {
  background: white !important;
  border-color: #e2e8f0 !important;
}
body[data-theme="light"] .test-text { color: #475569 !important; }
body[data-theme="light"] .test-name { color: #0f172a !important; }

/* FAQ light */
body[data-theme="light"] .faq-dark { background: #f1f5f9 !important; }
body[data-theme="light"] section.faq-dark .section-header h2 { color: #0f172a !important; }
body[data-theme="light"] section.faq-dark .section-header p  { color: #64748b !important; }
body[data-theme="light"] .faq-dark .faq-item {
  background: white !important;
  border-color: #e2e8f0 !important;
}
body[data-theme="light"] .faq-dark .faq-question { color: #0f172a !important; }
body[data-theme="light"] .faq-dark .faq-answer-inner { color: #475569 !important; }

/* CTA light */
body[data-theme="light"] .cta-dark {
  background: linear-gradient(135deg, #eff0ff 0%, #f0f9ff 100%) !important;
}
body[data-theme="light"] .cta-dark h2 { color: #0f172a !important; }
body[data-theme="light"] .cta-dark p  { color: #475569 !important; }
body[data-theme="light"] .cta-dark::before {
  background: radial-gradient(circle, rgba(79,70,229,.1) 0%, transparent 70%) !important;
}

/* Results light */
body[data-theme="light"] .result-item { background: #f1f5f9 !important; }
body[data-theme="light"] .result-text h4 { color: #0f172a !important; }

/* Cookie light */
body[data-theme="light"] #cookie-banner {
  background: rgba(255,255,255,.98) !important;
  border-top-color: #e2e8f0 !important;
}
body[data-theme="light"] #cookie-banner .cookie-text p { color: #475569 !important; }

/* Footer light */
body[data-theme="light"] #footer { background: #0f172a !important; }

/* Blog index light */
body[data-theme="light"] .blog-card { background: white; }
body[data-theme="light"] .blog-card-body h3 { color: #0f172a; }
body[data-theme="light"] .blog-card-body p { color: #64748b; }

/* Transition for smooth switch */
body, #navbar, .hero, .stats-dark, .features-dark, .steps-dark,
.testimonials-dark, .faq-dark, .cta-dark, .feature-glass, .step-dark,
.stat-dark-item, .test-card, .glass-checker, .glass-input {
  transition: background .35s ease, color .3s ease, border-color .3s ease !important;
}
