/* ==========================================================
   Genspark AI Affiliate Site - Main Stylesheet
   ========================================================== */

/* Google Fonts & Variables */
:root {
  /* ── Brand Palette ── */
  --primary: #f43f5e;
  --primary-dark: #cb1c3a;
  --primary-light: #f74d6a;
  --secondary: #ff5757;
  --accent: #4caf50;
  --accent2: #f7c948;
  --badge: #f43f5e;
  --badge-dark: #e02a4a;
  --icon-bg: #2e2f30;
  --icon-color: #ffffff;

  /* ── Backgrounds ── */
  --bg-dark: #1a1b1c;
  --bg-light: #f0f1f2;
  --bg-card: #232425;
  --bg-card-light: #ffffff;
  --bg-card2: #2a2b2c;
  --bg-section2: #333333;

  /* ── Text ── */
  --text-primary: #ffffff;
  --text-primary-light: #1a1b1c;
  --text-secondary: #d4d5d6;
  --text-secondary-light: #333333;
  --text-muted: #8a8b8e;
  --text-muted-light: #555558;

  /* ── Borders & Shadows ── */
  --border: rgba(255,255,255,0.1);
  --border-light: rgba(26,27,28,0.12);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-light: 0 4px 20px rgba(0,0,0,0.08);

  /* ── Shape & Motion ── */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

/* ==========================================================
   IMAGE QUALITY & DISPLAY IMPROVEMENTS
   ========================================================== */
/* Smooth image rendering across browsers */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Skeleton loading animation for images */
@keyframes img-shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}

/* Wrapper that maintains aspect ratio & shows skeleton while loading */
.img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #2a2b2c 25%, #333435 50%, #2a2b2c 75%);
  background-size: 800px 100%;
  animation: img-shimmer 1.6s infinite linear;
  border-radius: var(--radius);
}
.img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.img-wrap img.loaded { opacity: 1; }
.img-wrap img:not(.loaded) { opacity: 0; }

/* Article hero image — 16:9 aspect ratio wrapper */
.article-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 1.5rem 0;
  background: linear-gradient(90deg, #2a2b2c 25%, #333435 50%, #2a2b2c 75%);
  background-size: 800px 100%;
  animation: img-shimmer 1.6s infinite linear;
}
.article-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}
.article-img-wrap.loaded { animation: none; background: none; }

/* Guide / blog card image containers — fixed 200px height, cover crop */
.guide-card img,
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: linear-gradient(90deg, #2a2b2c 25%, #333435 50%, #2a2b2c 75%);
  background-size: 800px 100%;
}

/* Feature/hero images in grid sections */
.hero-img,
.feature-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
}

/* Broken image fallback — show a placeholder box */
img:not([src]),
img[src=""] {
  display: block;
  min-height: 120px;
  width: 100%;
  background: #232425;
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
}

/* Light section image adjustments */
.section-light .article-img-wrap {
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: linear-gradient(90deg, #e8e9ea 25%, #f0f1f2 50%, #e8e9ea 75%);
  background-size: 800px 100%;
}
.section-light .guide-card img,
.section-light .blog-card img {
  background: linear-gradient(90deg, #e8e9ea 25%, #f0f1f2 50%, #e8e9ea 75%);
  background-size: 800px 100%;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.hero h1 { font-size: clamp(2rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: #d4d5d6; margin-bottom: 1rem; }
.text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent { color: var(--primary-light); }
.text-primary-color { color: var(--primary-light); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.05rem; color: #c0c1c4; margin-bottom: 2rem; max-width: 650px; }

/* ==========================================================
   LAYOUT UTILITIES
   ========================================================== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; width: 100%; box-sizing: border-box; }
.container-lg { max-width: 1560px; margin: 0 auto; padding: 0 2rem; width: 100%; box-sizing: border-box; }
.section { padding: 80px 0; background: #1a1b1c; }
.section-alt { background: #202122; }

/* ==========================================================
   ALTERNATING SECTION BACKGROUNDS
   Dark  → .section         background: #000000
   Light → .section-light   background: #E5E5E5
   ========================================================== */

/* ── Light section base ── */
.section-light {
  padding: 80px 0;
  background: #f0f1f2;
}

/* ── Headings ── */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
  color: #1a1b1c;
}

/* ── Body copy ── */
.section-light p { color: #2a2b2c; }
.section-light li { color: #2a2b2c; }

/* ── Gradient text ── */
.section-light .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section label pill ── */
.section-light .section-label {
  color: #1a1b1c;
  background: rgba(26,27,28,0.08);
  border-color: rgba(26,27,28,0.2);
}
.section-light .section-subtitle { color: #444444; }

/* ── Cards ── */
.section-light .feature-card,
.section-light .stat-card,
.section-light .step-card,
.section-light .review-card,
.section-light .pricing-card,
.section-light .coupon-card,
.section-light .blog-card,
.section-light .highlight-item,
.section-light .faq-item,
.section-light .countdown-unit,
.section-light .cta-pill,
.section-light .savings-widget {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-light .feature-card:hover,
.section-light .stat-card:hover,
.section-light .step-card:hover,
.section-light .review-card:hover,
.section-light .blog-card:hover,
.section-light .highlight-item:hover {
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* ── Card inner text ── */
.section-light .feature-card h3,
.section-light .step-card h3,
.section-light .stat-card .stat-number,
.section-light .review-card .name,
.section-light .blog-card h3,
.section-light .faq-question,
.section-light .pricing-card .price,
.section-light .highlight-item .hi-val,
.section-light .countdown-unit .unit-num { color: #111213; }

/* Light section: all inner text dark */
.section-light .feature-card p,
.section-light .feature-card li,
.section-light .step-card p,
.section-light .review-card p,
.section-light .stat-card p,
.section-light .blog-card p,
.section-light .pricing-card p,
.section-light .pricing-card li { color: #444444; }

.section-light .feature-card p,
.section-light .step-card p,
.section-light .review-text,
.section-light .blog-card p,
.section-light .coupon-desc,
.section-light .plan-name,
.section-light .price-period,
.section-light .price-original,
.section-light .highlight-item .hi-label,
.section-light .stat-card .stat-label,
.section-light .blog-card-meta,
.section-light .review-source,
.section-light .faq-answer-inner,
.section-light .trust-item,
.section-light .savings-row .tool-name,
.section-light .savings-note,
.section-light .countdown-unit .unit-label { color: #555555; }

.section-light .savings-row .tool-price,
.section-light .savings-total { color: #111111; }
.section-light .savings-total span { color: #111111; }
.section-light .progress-header span { color: #111111; }
.section-light .progress-header .prog-pct { color: #111111; }
.section-light .progress-bar-bg { background: rgba(0,0,0,0.08); }

/* ── Dividers & borders ── */
.section-light .divider,
.section-light .savings-row,
.section-light .blog-card-meta,
.section-light .review-source,
.section-light .faq-answer-inner { border-color: rgba(0,0,0,0.1); }

/* ── Pricing toggle ── */
.section-light .pricing-toggle {
  background: #ffffff;
  border-color: rgba(0,0,0,0.12);
}
.section-light .pricing-toggle button { color: #777777; }
.section-light .pricing-toggle button.active { background: #1a1b1c; color: #ffffff; }

/* ── Featured pricing card ── */
.section-light .pricing-card.featured {
  background: #ffffff;
  border-color: #1a1b1c;
  box-shadow: 0 0 40px rgba(0,0,0,0.15);
}
.section-light .pricing-features li { color: #333333; }
.section-light .pricing-badge {
  background: rgba(244,63,94,0.12);
  color: #f43f5e;
  border-color: rgba(244,63,94,0.3);
}

/* ── Buttons on light sections ── */
.section-light .btn-primary {
  background: #1a1b1c;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.section-light .btn-primary:hover {
  background: #333333;
  color: #ffffff !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.section-light .btn-secondary {
  color: #1a1b1c;
  border-color: rgba(0,0,0,0.3);
  background: transparent;
}
.section-light .btn-secondary:hover {
  background: #1a1b1c;
  border-color: #1a1b1c;
  color: #ffffff;
}

/* ── Comparison table ── */
.section-light .comparison-table th,
.section-light .comparison-table td { border-color: rgba(0,0,0,0.08); color: #111111; }
.section-light .comparison-table th:first-child,
.section-light .comparison-table td:first-child { background: #f5f5f5; color: #111111; }
.section-light .comparison-table thead th { background: #ebebeb; color: #111111; }
.section-light .comparison-table thead th:not(:first-child) { background: #f2f2f2; }
.section-light .comparison-table thead th.highlight { background: #1a1b1c; color: #ffffff; }
.section-light .comparison-table tbody tr { background: #ffffff; }
.section-light .comparison-table tbody tr:hover { background: #f8f8f8; }
.section-light .comparison-table .highlight-col { background: rgba(26,27,28,0.04) !important; color: #111111 !important; font-weight:600; }
.section-light .table-wrap { box-shadow: 0 2px 12px rgba(0,0,0,0.06); display:flex; flex-direction:column; }
.section-light .table-wrap .comparison-table { flex:1; }

/* ── Model pills ── */
.section-light .model-pill {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.12);
  color: #1a1b1c;
}
.section-light .model-pill:hover { background: #1a1b1c; color: #ffffff; border-color: #1a1b1c; }

/* ── FAQ ── */
.section-light .faq-item { border-color: rgba(0,0,0,0.1); }
.section-light .faq-item:hover { border-color: rgba(0,0,0,0.3); }
.section-light .faq-question { color: #1a1b1c; }
.section-light .faq-question:hover { color: #333333; }
.section-light .faq-question .faq-icon { color: #333333 !important; }

/* ── Blog tags ── */
.section-light .blog-tag { color: #333333; font-weight: 700; }
.section-light .blog-card:hover { border-color: rgba(0,0,0,0.25); }

/* ── CTA inside light section ── */
.section-light .cta-section {
  background: #1a1b1c;
  border-color: transparent;
}
.section-light .cta-section h2 { color: #ffffff; }
.section-light .cta-section p { color: #c0c1c4; }
.section-light .cta-pill { color: #cccccc; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.section-light .cta-pill span { color: #ffffff; }

/* ── Seasonal table ── */
.section-light .seasonal-table th { background: #ebebeb; color: #111111; border-color: rgba(0,0,0,0.1); }
.section-light .seasonal-table td { background: #ffffff; color: #222222; border-color: rgba(0,0,0,0.06); }
.section-light .seasonal-table tbody tr:hover td { background: #f8f8f8; }

/* ── Tabs ── */
.section-light .tab-nav { border-color: rgba(0,0,0,0.12); }
.section-light .tab-btn { color: #777777; }
.section-light .tab-btn.active { color: #111111; border-bottom-color: #111111; }
.section-light .tab-btn:hover { color: #000000; }

/* ── Misc ── */
.section-light .breadcrumb a,
.section-light .breadcrumb { color: #555555; }
.section-light .breadcrumb a:hover { color: #111111; }
.section-light .trust-bar { border-color: rgba(0,0,0,0.08); }
.section-light .countdown-text { color: #1a1b1c; }
.section-light .countdown-text span { color: #1a1b1c; }
.section-light .countdown-sep { color: #333333; }
.section-light .review-stars { color: #f5c518; }

/* ── Icons on light sections ── */
.section-light .feature-icon {
  background: #f0f1f2;
  border-color: rgba(0,0,0,0.12);
  color: #111111;
}
.section-light .step-num {
  background: #1a1b1c;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.section-light .stat-card .stat-number { color: #111111; -webkit-text-fill-color: #111111; }
.section-light .highlight-item .hi-val { color: #111111; -webkit-text-fill-color: #111111; }
.section-light .pricing-features li .check { color: #1a7f37; }

/* ==========================================================
   ARTICLE / LONG-FORM PAGE ALTERNATING BLOCKS
   Used inside single-section long-form pages
   .article-block-dark  → black bg  #000000
   .article-block-light → grey bg   #E5E5E5
   ========================================================== */
.article-block-dark {
  background: #1a1b1c;
  padding: 64px 0;
}
.article-block-light {
  background: #f0f1f2;
  padding: 64px 0;
}

/* Light block text overrides */
.article-block-light,
.article-block-light p,
.article-block-light li { color: #333333; }
.article-block-light h1,
.article-block-light h2,
.article-block-light h3,
.article-block-light h4,
.article-block-light h5,
.article-block-light h6 { color: #1a1b1c; }
.article-block-light .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.article-block-light .section-label {
  color: #1a1b1c;
  background: rgba(26,27,28,0.08);
  border-color: rgba(26,27,28,0.2);
}
.article-block-light a { color: #333333; }
.article-block-light a:hover { color: #000000; }

/* Cards inside light blocks */
.article-block-light .feature-card,
.article-block-light .review-card,
.article-block-light .pricing-card,
.article-block-light .step-card,
.article-block-light .stat-card,
.article-block-light .faq-item,
.article-block-light .score-card,
.article-block-light .key-facts-table,
.article-block-light .verdict-box,
.article-block-light .pros-cons,
.article-block-light .info-box,
.article-block-light .warning-box,
.article-block-light .article-toc,
.article-block-light .highlight-box,
.article-block-light .vs-card,
.article-block-light .alt-card,
.article-block-light .comparison-block {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: #333333;
}
.article-block-light .feature-card h3,
.article-block-light .review-card .name,
.article-block-light .score-card .score-title,
.article-block-light .verdict-box h3,
.article-block-light .pros-cons h3 { color: #000000; }
.article-block-light .feature-card p,
.article-block-light .review-text,
.article-block-light .faq-answer-inner { color: #555555; }
.article-block-light .faq-question { color: #000000; }
.article-block-light .faq-question:hover { color: #333333; }
.article-block-light .review-stars { color: #f43f5e; }

/* Tables inside light blocks */
.article-block-light table th,
.article-block-light table td {
  border-color: rgba(0,0,0,0.1);
  color: #333333;
}
.article-block-light table thead th {
  background: #ebebeb;
  color: #1a1b1c;
}
.article-block-light table tbody tr { background: #ffffff; }
.article-block-light table tbody tr:hover { background: #f5f5f5; }

/* Score bars inside light blocks */
.article-block-light .score-bar-wrap { background: rgba(0,0,0,0.1); }
.article-block-light .score-label { color: #333333; }
.article-block-light .score-pct { color: var(--primary-dark); }

/* Sidebar TOC in light blocks */
.article-block-light .toc-sidebar,
.article-block-light .sidebar-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
.article-block-light .toc-link { color: #444444; }
.article-block-light .toc-link:hover,
.article-block-light .toc-link.active { color: var(--primary-dark); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
/* Primary button: white bg, black text on dark sections */
.btn-primary {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  background: #f0f1f2;
  color: #111111;
}
/* Secondary button: white border, white text on dark */
.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #ffffff;
}
.btn-accent {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  color: #111111;
}
.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}
.btn-gift {
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-gift:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  color: #111111;
}
.btn-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================
   HEADER / NAVBAR
   ========================================================== */
#header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: rgba(26,27,28,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.nav-logo span { color: #ffffff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-gift-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  color: #111111;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.nav-gift-btn:hover {
  background: #f0f1f2;
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.03);
}
.nav-gift-btn .gift-pulse {
  width: 8px; height: 8px;
  background: #f43f5e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,27,28,0.99);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  transition: var(--transition);
}
.mobile-nav a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.5rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
  background: #1a1b1c;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: #f43f5e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { display: block; }
.hero-desc {
  font-size: 1.08rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.hero-stat .stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.hero-floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-floating-card.card1 { top: 10%; right: -5%; animation-delay: 0s; }
.hero-floating-card.card2 { bottom: 15%; left: -5%; animation-delay: 1.5s; }
.hero-floating-card .card-icon { font-size: 1.2rem; margin-bottom: 2px; }
.hero-floating-card .card-val { color: #ffffff; font-size: 1rem; }

/* ==========================================================
   DEAL BANNER (Top bar)
   ========================================================== */
.deal-topbar {
  background: #ffffff;
  border-bottom: 2px solid #e0e0e0;
  padding: 10px 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #111111;
  z-index: 1001;
  position: relative;
  width: 100%;
}
.deal-topbar a {
  color: #111111;
  font-weight: 700;
  text-decoration: underline;
}
.deal-topbar .topbar-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
}

/* ==========================================================
   COUPON / DEAL WIDGET
   ========================================================== */
.coupon-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
}
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.coupon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.coupon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.coupon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.coupon-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.coupon-badge.verified { background: rgba(255,255,255,0.1); color: #ffffff; border: 1px solid rgba(255,255,255,0.25); }
.coupon-badge.hot { background: rgba(244,63,94,0.12); color: #f43f5e; border: 1px solid rgba(244,63,94,0.3); }
.coupon-badge.free { background: rgba(255,255,255,0.1); color: #ffffff; border: 1px solid rgba(255,255,255,0.25); }
.coupon-deal-amount {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.coupon-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1rem; }
.coupon-code-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.coupon-code-box:hover { background: rgba(255,255,255,0.12); }
.coupon-code-box .code { font-family: monospace; font-size: 1rem; font-weight: 700; color: #ffffff; letter-spacing: 0.05em; flex: 1; }
.coupon-code-box .copy-icon { font-size: 0.85rem; color: var(--text-muted); }
.coupon-code-box .code-auto { font-size: 0.78rem; color: var(--text-muted); font-style: italic; flex: 1; }
.coupon-expiry { font-size: 0.75rem; color: var(--text-muted); }

/* ==========================================================
   FEATURES SECTION
   ========================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: var(--shadow);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  background: #313131;
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text-primary); }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

/* ==========================================================
   PRICING SECTION
   ========================================================== */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 50px;
  margin-bottom: 2.5rem;
}
.pricing-toggle button {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.pricing-toggle button.active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.pricing-badge {
  font-size: 0.7rem;
  background: rgba(244,63,94,0.12);
  color: #f43f5e;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid rgba(244,63,94,0.3);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(255,255,255,0.3);
  background: linear-gradient(135deg, rgba(255,255,255,0.05), var(--bg-card));
  box-shadow: 0 0 40px rgba(255,255,255,0.08);
  transform: scale(1.03);
}
.pricing-card:hover:not(.featured) { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,255,255,0.18); }
.pricing-card .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f43f5e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card .plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card .price sup { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.pricing-card .price-period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.pricing-card .price-original { font-size: 0.88rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 0.25rem; }
.pricing-card .price-save {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}
.pricing-card .divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.pricing-features { margin-bottom: 1.5rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #FFFFFF;
  padding: 5px 0;
}
.pricing-features li .check { color: #4caf50; font-size: 0.9rem; flex-shrink: 0; }
.pricing-features li .cross { color: var(--text-muted); font-size: 0.9rem; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ==========================================================
   COMPARISON TABLE
   ========================================================== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison-table th, .comparison-table td {
  padding: 15px 18px;
  text-align: center;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card2);
  width: 28%;
}
.comparison-table thead th {
  background: var(--bg-card2);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  padding: 16px 18px;
}
.comparison-table thead th:not(:first-child) { background: rgba(255,255,255,0.04); }
.comparison-table thead th.highlight { background: rgba(255,255,255,0.1); color: #ffffff; }
.comparison-table tbody tr { background: var(--bg-card); transition: var(--transition); }
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table td .check-icon { color: #4caf50; font-size: 1rem; }
.comparison-table td .cross-icon { color: var(--text-muted); }
.comparison-table .highlight-col { background: rgba(255,255,255,0.05) !important; color: #ffffff !important; font-weight: 600; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); }

/* ==========================================================
   REVIEWS / TESTIMONIALS
   ========================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-stars { color: #f5c518; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: #FFFFFF; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author .author-info .name { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.review-author .author-info .role { font-size: 0.78rem; color: var(--text-muted); }
.review-source { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

/* ==========================================================
   STICKY GIFT / PROMO WIDGET
   ========================================================== */
.sticky-gift {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.sticky-gift-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #ffffff;
  color: #111111;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  animation: bounce-subtle 2s ease-in-out infinite;
}
@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.sticky-gift-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: none;
}
.sticky-popup {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 300px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  display: none;
  position: relative;
}
.sticky-popup.open { display: block; animation: popup-in 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes popup-in {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.sticky-popup .close-popup {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.sticky-popup h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.sticky-popup .deal-amount {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.sticky-popup p { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 1rem; }
.sticky-popup .code-pill {
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.sticky-popup .code-pill:hover { background: rgba(255,255,255,0.14); }
.sticky-popup .btn { width: 100%; justify-content: center; font-size: 0.85rem; }




/* ==========================================================
   COUNTDOWN TIMER
   ========================================================== */
/* Countdown bar — hidden by default (timer removed) */
.countdown-bar { display: none !important; }

/* ==========================================================
   FAQ SECTION
   ========================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(255,255,255,0.2); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  transition: var(--transition);
}
.faq-question:hover { color: #ffffff; }
.faq-question .faq-icon { font-size: 1rem; color: var(--text-muted); flex-shrink: 0; transition: var(--transition); }
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: #FFFFFF;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ==========================================================
   BREADCRUMB
   ========================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: #ffffff; }
.breadcrumb .sep { color: var(--text-muted); font-size: 0.75rem; }

/* ==========================================================
   TRUST BADGES / LOGOS
   ========================================================== */
.trust-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.trust-item .trust-icon { font-size: 1.1rem; }
.media-logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center; opacity: 0.5; filter: grayscale(1); transition: var(--transition); }
.media-logos:hover { opacity: 0.7; }
.media-logo { font-size: 1rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }

/* ==========================================================
   BLOG / POST CARDS
   ========================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(255,255,255,0.18); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.blog-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,255,255,0.2); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.86rem; color: var(--text-secondary); margin: 0; }

/* ==========================================================
   STATS SECTION
   ========================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,255,255,0.2); }
.stat-card .stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-card .stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-secondary); }

/* ==========================================================
   SAVINGS CALCULATOR WIDGET
   ========================================================== */
.savings-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}
.savings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.savings-row:last-of-type { border-bottom: none; }
.savings-row .tool-name { color: var(--text-secondary); }
.savings-row .tool-price { font-weight: 600; color: var(--text-primary); }
.savings-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0;
  border-top: 2px solid rgba(255,255,255,0.2);
  font-size: 1.05rem;
  font-weight: 700;
}
.savings-total .vs { font-size: 1.15rem; color: #ffffff; font-weight: 800; }
.savings-note { font-size: 0.92rem; color: var(--text-muted); margin-top: 0.75rem; margin-bottom: 0; text-align: center; }

/* ==========================================================
   CTA SECTION
   ========================================================== */
.cta-section {
  background: #232425;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,255,255,0.03), transparent);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.cta-section p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-discount-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}
.cta-pill span { color: #ffffff; }

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: #1a1b1c;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3.5rem 0 0;
  width: 100%;
  box-sizing: border-box;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
.footer-brand .logo { font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 280px; }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: #ffffff; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: #ffffff; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,0.14); color: #ffffff; border-color: rgba(255,255,255,0.3); }
.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  line-height: 1.6;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}
.disclaimer a { color: #ffffff; }

/* ==========================================================
   NOTIFICATION TOAST
   ========================================================== */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: var(--shadow);
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(150%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateX(0); }

/* ==========================================================
   SCROLL TO TOP
   ========================================================== */
#scrollTop {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 42px; height: 42px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1b1c;
  font-size: 1rem;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: #e8e9ea; transform: translateY(-2px); }

/* ==========================================================
   HIGHLIGHTS / BADGE GRID
   ========================================================== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.highlight-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.highlight-item:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.highlight-item .hi-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.highlight-item .hi-val { font-size: 1.5rem; font-weight: 800; color: #ffffff; margin-bottom: 0.25rem; }
.highlight-item .hi-label { font-size: 0.82rem; color: var(--text-muted); }

/* ==========================================================
   AI MODELS GRID
   ========================================================== */
.models-wrap { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.model-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.model-pill:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); border-color: rgba(255,255,255,0.25); }
.model-pill .model-dot { width: 6px; height: 6px; border-radius: 50%; background: #aaaaaa; }

/* ==========================================================
   PROGRESS BARS
   ========================================================== */
.progress-item { margin-bottom: 1.25rem; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.97rem; font-weight: 600; }
.progress-header .prog-pct { color: #ffffff; }
.progress-bar-bg {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #888888, #ffffff);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

/* ==========================================================
   VIDEO SECTION
   ========================================================== */
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16/9;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.video-play-overlay:hover { background: rgba(0,0,0,0.4); }
.play-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #f43f5e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 40px rgba(244,63,94,0.5);
  transition: var(--transition);
}
.video-play-overlay:hover .play-circle { transform: scale(1.1); }

/* ==========================================================
   DEAL SEASONAL TABLE
   ========================================================== */
.seasonal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.seasonal-table th {
  background: rgba(255,255,255,0.04);
  padding: 13px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.seasonal-table td {
  padding: 13px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
  background: var(--bg-card);
}
.seasonal-table tbody tr:last-child td { border-bottom: none; }
.seasonal-table tbody tr:hover td { background: #2e2f30; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.status-badge.active { background: rgba(255,255,255,0.1); color: #ffffff; border: 1px solid rgba(255,255,255,0.25); }
.status-badge.upcoming { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.12); }

/* ==========================================================
   ACCORDION TABS
   ========================================================== */
.tab-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  overflow-x: auto;
}
.tab-btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: var(--transition);
}
.tab-btn.active { color: #ffffff; border-bottom-color: #ffffff; }
.tab-btn:hover { color: var(--text-primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================
   GLOBAL RESPONSIVE BREAKPOINTS
   ========================================================== */

/* ─ 1200px: start tightening padding ─ */
@media (max-width: 1200px) {
  .container,
  .container-lg { padding: 0 1.5rem; }
}

/* ─ 1100px: single-col pricing, 2-col footer ─ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ─ 960px: article layouts collapse ─ */
@media (max-width: 960px) {
  .review-layout,
  .pg-layout,
  .article-grid {
    grid-template-columns: 1fr !important;
  }
  .review-sidebar,
  .pg-sidebar {
    order: -1;
  }
}

/* ─ 900px: hero stacks, nav collapses ─ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 1.5rem; }
  .btn-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrap { order: -1; }
  .hero-floating-card.card1, .hero-floating-card.card2 { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ─ 768px: reduce section padding, stack grids ─ */
@media (max-width: 768px) {
  .container,
  .container-lg { padding: 0 1rem; }
  .section,
  .section-light { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .coupon-section { padding: 1.5rem; }
  .cta-section { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; padding: 0 1rem; }
  .footer-bottom { padding-left: 1rem; padding-right: 1rem; }
  .disclaimer { padding-left: 1rem; padding-right: 1rem; }
  .countdown-bar { flex-direction: column; text-align: center; }
  .savings-widget { padding: 1.25rem; }
  .sticky-gift { bottom: 16px; right: 16px; }
  .sticky-popup { width: 260px; }
  /* ensure tables scroll */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ─ 480px: single-col grids, smaller hero ─ */
@media (max-width: 480px) {
  .container,
  .container-lg { padding: 0 0.875rem; }
  .footer-grid { padding: 0 0.875rem; }
  .footer-bottom { padding-left: 0.875rem; padding-right: 0.875rem; }
  .disclaimer { padding-left: 0.875rem; padding-right: 0.875rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .countdown-timer { flex-wrap: wrap; justify-content: center; }
}

/* ==========================================================
   ARTICLE LAYOUT — RESPONSIVE FIXES
   ========================================================== */
/* Ensure article images never overflow — quality display */
.article-img,
.article-body img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 1.5rem 0;
  object-fit: cover;
  /* Force aspect ratio for images with width/height attributes */
  aspect-ratio: auto;
}
/* Give article images a natural 16:9 aspect ratio appearance */
.article-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(90deg, #2a2b2c 25%, #333435 50%, #2a2b2c 75%);
  background-size: 800px 100%;
}
.article-img.loaded,
.article-img[src] { animation: none; }

/* Responsive video embeds */
.yt-embed,
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
  background: #000;
}
.yt-embed iframe,
.video-wrap iframe,
.yt-embed video,
.video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Article grid layout — collapse on mobile */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 960px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
  .review-sidebar,
  .pg-sidebar {
    position: static;
    order: -1;
  }
}

/* Ensure tables scroll horizontally on mobile */
.table-wrap,
.ft,
.pg-table,
.comparison-table,
.seasonal-table,
.comp-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrap { border-radius: var(--radius); }

/* Section spacing fine-tune */
@media (max-width: 600px) {
  .section,
  .section-light { padding: 48px 0; }
  .article-body h2 { font-size: 1.35rem; }
  .article-body h3 { font-size: 1.05rem; }
  .pros-cons-grid,
  .before-after,
  .use-case-grid,
  .plan-cards-grid,
  .credit-pack-grid,
  .stats-grid,
  .comp-vs {
    grid-template-columns: 1fr !important;
  }
  .vs-grid { grid-template-columns: 1fr !important; }
  .vs-divider { display: none !important; }
  .round-card { flex-direction: column; }
  .hero h1 { font-size: 1.75rem; }
  /* prevent any element from exceeding viewport */
  * { max-width: 100%; }
  img, video, iframe, table, embed, object { max-width: 100% !important; }
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================
   MISCELLANEOUS
   ========================================================== */
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
}
.green-text { color: var(--accent); }
.gold-text { color: var(--accent2); }
.red-text { color: #ff5757; }
.warning-box {
  background: rgba(244,63,94,0.08);
  border: 1px solid rgba(244,63,94,0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.section .warning-box,
.hero .warning-box { color: #ffffff; }
.section .warning-box strong,
.hero .warning-box strong { color: #f43f5e; }
.info-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #d4d5d6;
}
.info-box strong { color: #ffffff; }

/* Info-box inside light sections */
.section-light .info-box {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.15);
  color: #222222;
}
.section-light .info-box strong { color: #111111; }
.section-light .warning-box { color: #1a1b1c; background: rgba(244,63,94,0.06); border-color: rgba(244,63,94,0.25); }
.section-light .warning-box strong { color: #e02a4a; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }

/* ==========================================================
   COMPREHENSIVE DESIGN FIXES v5
   ========================================================== */

/* ── Hero: fixed font size & no min-height ── */
.hero { min-height: auto !important; }
.hero h1 { font-size: 45px !important; line-height: 1.15; }
@media (max-width: 768px) {
  .hero h1 { font-size: 32px !important; }
  .hero { padding: 80px 0 40px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px !important; }
}

/* ── Deal Topbar: always white bg + black text ── */
.deal-topbar {
  background: #ffffff !important;
  color: #111111 !important;
  border-bottom: 2px solid #e0e0e0 !important;
  position: relative !important;
  z-index: 1001 !important;
}
.deal-topbar a { color: #cb1c3a !important; font-weight: 700; text-decoration: underline; }
.deal-topbar strong { color: #111111 !important; }

/* ── Article Hero Padding ── */
.article-hero-section { padding: 48px 0 48px !important; }

/* ── Text gradient everywhere ── */
.text-gradient,
.section-light .text-gradient,
.article-block-light .text-gradient,
.article-block-dark .text-gradient,
[class*="section"] .text-gradient,
[style] .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ── Buttons: keep original red on dark, dark on light ── */
/* (Handled by later override blocks — no change here) */

/* ── No blue anywhere in icons or links ── */
a { color: inherit; }
a:hover { color: inherit; }
.section-light a { color: #1a1b1c; }
.section-light a:hover { color: #000000; }
.article-body a { color: var(--text-secondary); }
.article-body a:hover { color: #ffffff; }

/* ── Table of Contents: improved design ── */
.toc-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--radius) !important;
  padding: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.toc-card h4 {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--text-muted) !important;
  margin-bottom: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.toc-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.toc-list li {
  display: block !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.toc-list li:last-child { border-bottom: none !important; }
.toc-list li a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 6px !important;
  font-size: 0.83rem !important;
  color: var(--text-secondary) !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
  border-radius: 6px !important;
}
.toc-list li a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.06) !important;
  padding-left: 10px !important;
}
.toc-list li a::before {
  content: '›' !important;
  color: #f43f5e !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
}
.toc-list li a.active {
  color: #f74d6a !important;
  font-weight: 600 !important;
  background: rgba(244,63,94,0.06) !important;
}

/* TOC in light section */
.section-light .toc-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .toc-card h4 {
  color: #666666 !important;
  border-bottom-color: rgba(0,0,0,0.08) !important;
}
.section-light .toc-list li { border-bottom-color: rgba(0,0,0,0.06) !important; }
.section-light .toc-list li a { color: #555555 !important; }
.section-light .toc-list li a::before { color: #f43f5e !important; }
.section-light .toc-list li a:hover {
  color: #111111 !important;
  background: rgba(0,0,0,0.04) !important;
}
.section-light .toc-list li a.active {
  color: #cb1c3a !important;
  background: rgba(244,63,94,0.05) !important;
}

/* ── Blog card: fix white-on-white in section-light ── */
.section-light .blog-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
.section-light .blog-card h3 { color: #111111 !important; }
.section-light .blog-card p { color: #444444 !important; }
.section-light .blog-card-meta { color: #666666 !important; border-top-color: rgba(0,0,0,0.1) !important; }
.section-light .blog-tag { color: #555555 !important; }
/* Blog cards on dark bg keep white text */
.section .blog-card h3,
.section-alt .blog-card h3 { color: #ffffff !important; }
.section .blog-card p,
.section-alt .blog-card p { color: var(--text-secondary) !important; }

/* ── Featured article card on blog page (light section) ── */
.section-light .feature-card .hero-img { border-radius: var(--radius); }
.section-light .feature-card h2 { color: #111111 !important; }
.section-light .feature-card p { color: #444444 !important; }
.section-light .feature-card .blog-tag { color: #555555 !important; }
.section-light .feature-card .blog-card-meta { color: #666666 !important; }

/* ── Sidebar styling improvements ── */
.sidebar-deal-card {
  background: #2a2b2c !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
  margin-bottom: 1.25rem !important;
}
.sidebar-deal-card h3,
.sidebar-deal-card .big-saving { color: #ffffff !important; }
.sidebar-deal-card p { color: var(--text-secondary) !important; }

/* ── Score bars: red gradient ── */
.score-bar {
  background: linear-gradient(90deg, #f43f5e, #cb1c3a) !important;
}

/* ── Verdict box: red accent ── */
.verdict-box {
  border-left: 4px solid #f43f5e !important;
}

/* ── Pull quote: red left border ── */
.pull-quote {
  border-left: 3px solid #f43f5e !important;
  background: rgba(244,63,94,0.04) !important;
}

/* ── Inline CTA: dark background ── */
.inline-cta {
  background: #2a2b2c !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--radius) !important;
  padding: 2rem !important;
  text-align: center !important;
}
.inline-cta h3 { color: #ffffff !important; }
.inline-cta p { color: var(--text-secondary) !important; }
.section-light .inline-cta {
  background: #f0f1f2 !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .inline-cta h3 { color: #111111 !important; }
.section-light .inline-cta p { color: #444444 !important; }

/* ── Section spacing consistency ── */
.section,
.section-light { padding: 72px 0; }
@media (max-width: 768px) {
  .section,
  .section-light { padding: 48px 0; }
  .container { padding: 0 1rem; }
  .hero-content { grid-template-columns: 1fr !important; gap: 2rem; }
  .hero-img-wrap { display: none; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .review-layout { grid-template-columns: 1fr !important; }
  .review-sidebar { order: -1; }
  .feature-card[style*="grid"] { display: block !important; }
  footer { padding: 3rem 1rem 1.5rem !important; }
}
@media (max-width: 480px) {
  .section,
  .section-light { padding: 40px 0; }
  .article-block-dark,
  .article-block-light { padding: 40px 0; }
  .key-facts-table td { font-size: 0.8rem; padding: 8px 10px; }
  .score-label { width: 100px; font-size: 0.78rem; }
  .toc-card { display: block !important; }
  .review-layout { gap: 1.5rem; }
}

/* ── Article block spacing ── */
.article-block-dark,
.article-block-light { padding: 56px 0; }
@media (max-width: 768px) {
  .article-block-dark,
  .article-block-light { padding: 40px 0; }
}

/* ── White-on-white text fix ── */
/* Ensure text in any dark card is always visible */
.bg-card p, .bg-card2 p { color: var(--text-secondary) !important; }
/* blog.html dark bg header section */
section[style*="var(--bg-dark)"] p { color: var(--text-secondary); }
section[style*="var(--bg-dark)"] h1 { color: #ffffff; }

/* ── Fix blog page hero section text ── */
body .blog-hero-title { color: #ffffff; }
body .blog-hero-desc { color: var(--text-secondary); }

/* ── Nav: ensure logo-icon has no blue ── */
.logo-icon { background: #ffffff; color: #111111; }
.nav-logo span { color: #ffffff; }

/* ── Mobile: responsive fixes for article pages ── */
@media (max-width: 960px) {
  .review-layout { grid-template-columns: 1fr !important; }
  .review-sidebar { order: -1 !important; position: static !important; }
}
@media (max-width: 768px) {
  .pros-cons-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.85rem; }
  h1 { font-size: clamp(1.6rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.3rem, 4vw, 1.8rem); }
  h3 { font-size: 1.1rem; }
}

/* ── Favicon: no blue ── */
/* Override any inline favicon to use red */

/* ── Blog tag on dark bg ── */
.blog-tag { color: var(--text-muted); }
section.section .blog-tag { color: rgba(255,255,255,0.7); }

/* ── Remove any remaining blue text from icon colors ── */
.fas, .far, .fab { color: inherit; }
.feature-icon i { color: inherit; }

/* ── Guides page card icon colors ── */
.guides-card-icon,
.guide-icon { color: #f43f5e !important; }

/* ── About page & misc page text visibility ── */
.section-light p { color: #333333 !important; }
.section-light li { color: #333333 !important; }
.section-light h2 { color: #1a1b1c !important; }
.section-light h3 { color: #1a1b1c !important; }
.section-light .section-subtitle { color: #555555 !important; }
.section-light .section-label { color: #1a1b1c !important; background: rgba(26,27,28,0.08) !important; border-color: rgba(26,27,28,0.2) !important; }

/* ── Review stars consistent color ── */
.review-stars, .sr-stars { color: #f5c518 !important; }

/* ── Feature card fixes ── */
.section-light .feature-card { color: #333333; }
.section-light .feature-card h3 { color: #111111 !important; }
.section-light .feature-icon { background: #f0f1f2 !important; border-color: rgba(0,0,0,0.12) !important; color: #1a1b1c !important; }

/* ── Pricing card on light section ── */
.section-light .pricing-card { background: #ffffff; }
.section-light .pricing-card .plan-name { color: #111111; }
.section-light .pricing-card .price { color: #111111; }
.section-light .pricing-features li { color: #333333 !important; }

/* ── CTA section on light ── */
.section-light .cta-section {
  background: #1a1b1c !important;
  border-radius: var(--radius-lg) !important;
}
.section-light .cta-section h2 { color: #ffffff !important; }
.section-light .cta-section p { color: #c0c1c4 !important; }

/* ── Image loading fallback ── */
img[src=""], img:not([src]) { background: #333; min-height: 100px; }
img { max-width: 100%; height: auto; }

/* ── Video responsive ── */
.yt-embed, .video-wrap {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 56.25% !important;
  height: 0 !important;
  overflow: hidden !important;
  border-radius: var(--radius) !important;
  background: #000 !important;
}
.yt-embed iframe, .video-wrap iframe {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

/* ── Smooth scrolling ── */
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

/* ── Footer text contrast ── */
footer p, footer li, footer a { color: var(--text-secondary); }
footer h4 { color: #ffffff; }

/* ==========================================================
   COMPREHENSIVE FIXES v6 — All page issues
   ========================================================== */

/* ── FOOTER: proper layout on ALL pages ── */
footer {
  background: #1e1f20 !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  padding: 3.5rem 0 1.5rem !important;
  width: 100% !important;
}
footer .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
footer .footer-brand { grid-column: 1; }
footer .footer-brand .logo { font-size: 1.2rem; font-weight: 800; color: #ffffff; margin-bottom: 0.75rem; }
footer .footer-brand p { font-size: 0.85rem; color: #8a8b8e; max-width: 260px; line-height: 1.65; }
footer .footer-col h4 {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #8a8b8e !important;
  margin-bottom: 1rem !important;
}
footer .footer-col ul li { margin-bottom: 0.5rem; }
footer .footer-col ul li a {
  font-size: 0.87rem !important;
  color: #a0a1a4 !important;
  transition: color 0.2s;
  text-decoration: none;
}
footer .footer-col ul li a:hover { color: #ffffff !important; }
footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-bottom p { font-size: 0.8rem !important; color: #666 !important; margin: 0 !important; }
footer .footer-links a { font-size: 0.8rem !important; color: #666 !important; }
footer .footer-links a:hover { color: #ffffff !important; }
footer .disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  font-size: 0.73rem !important;
  color: #555 !important;
  line-height: 1.6;
}
footer .disclaimer a { color: #aaaaaa !important; }
footer .social-btn {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #8a8b8e !important;
}
footer .social-btn:hover { background: rgba(255,255,255,0.16) !important; color: #ffffff !important; }
@media (max-width: 768px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }
  footer .footer-brand { grid-column: 1 / -1; }
  footer .footer-bottom { padding: 1.25rem 1rem 0; }
  footer .disclaimer { padding: 1rem 1rem 0; }
}
@media (max-width: 480px) {
  footer .footer-grid { grid-template-columns: 1fr !important; }
}

/* ── GUIDE CARDS: Fix invisible title text ── */
/* Guide cards are on section-light — white bg, need dark text */
.guide-card h3 { color: #000000 !important; }
.guide-card p { color: #555555 !important; }
.guide-card-meta { color: #777777 !important; }
.guide-tag { color: #444444 !important; }

/* ── REVIEW CARDS: Fix text on section-light ── */
.section-light .review-card { background: #ffffff !important; border-color: rgba(0,0,0,0.1) !important; }
.section-light .review-card .review-text { color: #333333 !important; font-style: italic; }
.section-light .review-card .name { color: #111111 !important; font-weight: 700; }
.section-light .review-card .role { color: #666666 !important; font-size: 0.8rem; }
.section-light .review-source { color: #888888 !important; font-size: 0.78rem; }
.section-light .review-avatar { background: #1a1b1c !important; color: #ffffff !important; }

/* ── REVIEWS PAGE: Rating box center + proper ── */
.rating-box-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 0;
}

/* ── FAQ PAGE: Button text fix in CTA ── */
/* CTA section is dark bg — btn-primary = white bg, black text */
.cta-section .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  font-weight: 700;
}
.cta-section .btn-primary:hover { background: #f0f1f2 !important; color: #111111 !important; }
.cta-section .btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
}
.cta-section .btn-secondary:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
}
/* If the CTA section is on a light bg, invert */
.section-light .cta-section .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
}
.section-light .cta-section .btn-secondary {
  background: transparent !important;
  color: #e0e0e0 !important;
  border-color: rgba(255,255,255,0.4) !important;
}

/* ── GUIDES CTA section (dark bg on light page) ── */
.guides-cta-dark {
  background: #232425 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--radius-lg) !important;
}
.guides-cta-dark h2 { color: #ffffff !important; }
.guides-cta-dark p { color: #c0c1c4 !important; }
.guides-cta-dark .section-label { color: #ffffff !important; background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.2) !important; }

/* ── PROS/CONS BOX: Fix text visibility ── */
.pros-box, .cons-box {
  background: var(--bg-card) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
}
.pros-box { border-left: 4px solid #4caf50 !important; }
.cons-box { border-left: 4px solid #f43f5e !important; }
.pros-box h4 { color: #4caf50 !important; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.cons-box h4 { color: #f43f5e !important; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.pros-box ul li, .cons-box ul li { color: var(--text-secondary) !important; font-size: 0.9rem; padding: 4px 0; }
/* On light bg (article section-light) */
.section-light .pros-box, .section-light .cons-box { background: #ffffff !important; }
.section-light .pros-box ul li, .section-light .cons-box ul li { color: #444444 !important; }

/* ── INLINE CTA on light bg: black text buttons ── */
.section-light .inline-cta .btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
}
.section-light .inline-cta .btn-primary:hover { background: #333 !important; }

/* ── COMPARISON TABLE: visible text ── */
.comp-table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.comp-table th { background: #2a2b2c; color: #ffffff; padding: 12px 16px; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: left; }
.comp-table th.gs-col { background: #1a1b1c; color: #ffffff; }
.comp-table td { background: var(--bg-card); color: var(--text-secondary); padding: 11px 16px; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.comp-table td:first-child { background: #2a2b2c; color: var(--text-primary); font-weight: 600; }
.comp-table td.gs-col { background: rgba(244,63,94,0.06); color: var(--text-primary); font-weight: 500; }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.comp-table tbody tr:hover td.gs-col { background: rgba(244,63,94,0.09); }

/* ── SCORE CARD: visible text in light context ── */
.section-light .score-card { background: #ffffff !important; border-color: rgba(0,0,0,0.1) !important; }
.section-light .score-label { color: #555555 !important; }
.section-light .score-pct { color: #f43f5e !important; }
.section-light .score-bar-wrap { background: rgba(0,0,0,0.1) !important; }

/* ── ARTICLE BODY TEXT: Fix on white/light bg ── */
.section-light .article-body h2 { color: #111111 !important; border-top-color: rgba(0,0,0,0.1) !important; }
.section-light .article-body h3 { color: #111111 !important; }
.section-light .article-body p { color: #333333 !important; }
.section-light .article-body ul li { color: #444444 !important; }
.section-light .article-body strong { color: #111111 !important; }
.section-light .article-body a { color: #cb1c3a !important; }
.section-light .article-body a:hover { color: #f43f5e !important; }

/* ── VERDICT BOX on light ── */
.section-light .verdict-box { background: #ffffff !important; border-color: rgba(0,0,0,0.1) !important; }
.section-light .verdict-box h3 { color: #111111 !important; }
.section-light .verdict-box p { color: #333333 !important; }

/* ── PULL QUOTE on light ── */
.section-light .pull-quote { background: rgba(244,63,94,0.04) !important; border-left-color: #f43f5e !important; color: #333333 !important; }
.section-light .pull-quote cite { color: #666666 !important; }

/* ── WARNING/INFO BOX on light ── */
.section-light .warning-box { background: rgba(244,63,94,0.06) !important; border-color: rgba(244,63,94,0.25) !important; color: #1a1b1c !important; }
.section-light .warning-box strong { color: #cb1c3a !important; }

/* ── REVIEW LAYOUT / SIDEBAR on light section ── */
.section-light .sidebar-deal-card { background: #1e1f20 !important; border-color: rgba(255,255,255,0.12) !important; }
.section-light .sidebar-deal-card p { color: #c0c1c4 !important; }
.section-light .sidebar-deal-card h3 { color: #ffffff !important; }
.section-light .sidebar-deal-card .big-saving { color: #ffffff !important; }

/* ── KEY FACTS TABLE on light ── */
.section-light .key-facts-table td { background: #ffffff !important; color: #333333 !important; border-bottom-color: rgba(0,0,0,0.07) !important; }
.section-light .key-facts-table td:first-child { background: #f5f5f5 !important; color: #000000 !important; font-weight: 700; }

/* ── BREADCRUMB on dark hero ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: #ffffff; }
.breadcrumb .sep { color: var(--text-muted); }

/* ── SECTION-LIGHT BREADCRUMB ── */
.section-light .breadcrumb,
.section-light .breadcrumb a { color: #666666 !important; }
.section-light .breadcrumb a:hover { color: #111111 !important; }

/* ── PAGE HERO SECTIONS (dark bg) proper text ── */
section[style*="var(--bg-dark)"] h1 { color: #ffffff !important; }
section[style*="var(--bg-dark)"] p { color: var(--text-secondary) !important; }
section[style*="background:var(--bg-dark)"] h1 { color: #ffffff !important; }
section[style*="background:var(--bg-dark)"] p { color: var(--text-secondary) !important; }

/* ── GUIDES MID-PAGE CTA (dark card on light section) ── */
.section-light .guides-cta-inner {
  background: #232425 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem !important;
  text-align: center !important;
}
.section-light .guides-cta-inner h2 { color: #ffffff !important; }
.section-light .guides-cta-inner p { color: #c0c1c4 !important; }
.section-light div[style*="background:#232425"] h2 { color: #ffffff !important; }
.section-light div[style*="background:#232425"] p { color: #c0c1c4 !important; }

/* ── BLOG PAGE: dark bg section on hero ── */
.blog-hero { background: var(--bg-dark) !important; }
.blog-hero h1 { color: #ffffff !important; }
.blog-hero p { color: var(--text-secondary) !important; }

/* ==========================================================
   COMPREHENSIVE FIX v7 — All User-Reported Issues
   Date: 2026-03-02
   ========================================================== */

/* ──────────────────────────────────────────────────────
   1. OFFER CARD: Make highlighted/featured fully visible
   ────────────────────────────────────────────────────── */
.pricing-card.featured {
  transform: none !important;
  border: 2px solid #f43f5e !important;
  background: var(--bg-card) !important;
  box-shadow: 0 0 40px rgba(244,63,94,0.15) !important;
  overflow: visible !important;
  z-index: 2 !important;
  position: relative !important;
}
.section-light .pricing-card.featured {
  background: #ffffff !important;
  border: 2px solid #f43f5e !important;
  box-shadow: 0 0 40px rgba(244,63,94,0.15) !important;
}
.pricing-card.featured .popular-tag {
  top: -14px !important;
  background: #f43f5e !important;
  color: #ffffff !important;
}

/* ──────────────────────────────────────────────────────
   2. REMOVE CAPSULE / PILL DESIGN from section labels
   ────────────────────────────────────────────────────── */
.section-label {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #f43f5e !important;
  margin-bottom: 0.75rem !important;
}
.section-light .section-label {
  color: #f43f5e !important;
  background: none !important;
  border: none !important;
}

/* ──────────────────────────────────────────────────────
   3. SCROLL TO TOP ARROW — Ensure it works on click
   ────────────────────────────────────────────────────── */
#scrollTop {
  position: fixed !important;
  bottom: 88px !important;
  right: 24px !important;
  width: 46px !important;
  height: 46px !important;
  background: #f43f5e !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  z-index: 900 !important;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(244,63,94,0.4) !important;
  pointer-events: auto !important;
}
#scrollTop.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
#scrollTop:hover {
  background: #e11d48 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(244,63,94,0.5) !important;
}

/* ──────────────────────────────────────────────────────
   4. TABLE HEADERS — Visible white text on dark bg
   ────────────────────────────────────────────────────── */
.comparison-table thead th,
.seasonal-table th,
.comp-table th,
table thead th {
  background: #1a1b1c !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}
.section-light .comparison-table thead th,
.section-light .seasonal-table th,
.section-light table thead th,
.article-block-light table thead th {
  background: #1a1b1c !important;
  color: #ffffff !important;
}
/* Table body text visible */
.comparison-table td,
.seasonal-table td,
.comp-table td,
table tbody td {
  color: #ffffff !important;
}
.section-light .comparison-table td,
.section-light .seasonal-table td,
.section-light table tbody td,
.article-block-light table td {
  color: #333333 !important;
  background: #ffffff !important;
}

/* ──────────────────────────────────────────────────────
   5. TABLE — Remove extra white space on right
   ────────────────────────────────────────────────────── */
.table-wrap,
.comparison-table,
.seasonal-table,
.comp-table {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  display: block;
}
.comparison-table,
.seasonal-table,
.comp-table {
  display: table !important;
  table-layout: fixed !important;
  width: 100% !important;
}
.table-wrap {
  display: block !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
}

/* ──────────────────────────────────────────────────────
   6. TABLE HOVER — Dark text on hover for light sections
   ────────────────────────────────────────────────────── */
.section-light .comparison-table tbody tr:hover td,
.section-light .seasonal-table tbody tr:hover td,
.section-light table tbody tr:hover td,
.article-block-light table tbody tr:hover td {
  background: #f0f1f2 !important;
  color: #111111 !important;
}
/* Dark section: hover keeps white text */
.comparison-table tbody tr:hover td,
.seasonal-table tbody tr:hover td {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
}

/* ──────────────────────────────────────────────────────
   7. CARDS — Equal size, centered text and logos
   ────────────────────────────────────────────────────── */
.feature-card,
.stat-card,
.step-card,
.review-card,
.pricing-card,
.blog-card,
.guide-card {
  display: flex !important;
  flex-direction: column !important;
}
.feature-card {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}
.feature-card .feature-icon {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 1rem !important;
}
.feature-card h3 {
  text-align: center !important;
}
.feature-card p {
  text-align: center !important;
}
/* Pricing cards equal height */
.pricing-grid {
  align-items: stretch !important;
}
.pricing-card {
  height: auto !important;
}
/* Features grid equal height */
.features-grid {
  align-items: stretch !important;
}
.features-grid .feature-card {
  min-height: 0 !important;
}
/* Guide cards equal structure */
.guides-grid-all {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}
.guide-card {
  height: 100% !important;
}
.guide-card-body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.guide-card-actions {
  margin-top: auto !important;
  padding-top: 1rem !important;
}

/* Stats grid equal cards */
.stats-grid {
  align-items: stretch !important;
}
.stat-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ──────────────────────────────────────────────────────
   8. CARD TEXT + BUTTON SPACING
   ────────────────────────────────────────────────────── */
.pricing-card .btn,
.guide-card .btn,
.feature-card .btn {
  margin-top: 1rem !important;
}
.pricing-features {
  margin-bottom: 1.5rem !important;
}
.guide-card-body p {
  margin-bottom: 1rem !important;
}

/* ──────────────────────────────────────────────────────
   9. FAQ — Proper spacing, centered text in card
   ────────────────────────────────────────────────────── */
.faq-item {
  margin-bottom: 1rem !important;
  border-radius: var(--radius) !important;
}
.faq-question {
  padding: 1.25rem 1.5rem !important;
  text-align: left !important;
}
.faq-answer-inner {
  padding: 0.5rem 1.5rem 1.5rem !important;
  text-align: left !important;
  line-height: 1.7 !important;
  color: var(--text-secondary) !important;
}
.section-light .faq-answer-inner {
  color: #444444 !important;
}
.faq-list {
  max-width: 800px !important;
  margin: 0 auto !important;
}

/* ──────────────────────────────────────────────────────
   10. REMOVE VERTICAL LINE (scroll progress bar)
   ────────────────────────────────────────────────────── */
#scrollProgress {
  display: none !important;
}

/* ──────────────────────────────────────────────────────
   11. REMOVE GRADIENT BACKGROUNDS → Solid colors
   ────────────────────────────────────────────────────── */
.hero::before {
  display: none !important;
}
.cta-section::before {
  display: none !important;
}
.pricing-card.featured {
  background: var(--bg-card) !important;
}
.section-light .pricing-card.featured {
  background: #ffffff !important;
}
/* Solid body bg */
body {
  background: #111213 !important;
}
.section {
  background: #111213 !important;
}
.section-alt {
  background: #1a1b1c !important;
}
.hero {
  background: #111213 !important;
}

/* ──────────────────────────────────────────────────────
   12. PRICING PAGE — Match homepage pricing style
       Move category below hero section
   ────────────────────────────────────────────────────── */
/* Pricing page toggle in hero → ensure visible */
.pricing-toggle {
  background: #1a1b1c !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}
.pricing-toggle button {
  color: #888888 !important;
}
.pricing-toggle button.active {
  background: #f43f5e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 12px rgba(244,63,94,0.3) !important;
}
.section-light .pricing-toggle {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.12) !important;
}
.section-light .pricing-toggle button { color: #888888 !important; }
.section-light .pricing-toggle button.active {
  background: #f43f5e !important;
  color: #ffffff !important;
}

/* ──────────────────────────────────────────────────────
   13. REVIEW PAGE — Remove scroll reveal animation
   ────────────────────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ──────────────────────────────────────────────────────
   14. GUIDES PAGE — Button & card text visibility
   ────────────────────────────────────────────────────── */
/* Guide card buttons on light section */
.section-light .guide-card .btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
}
.section-light .guide-card .btn-primary:hover {
  background: #e11d48 !important;
  color: #ffffff !important;
}
.section-light .guide-card .btn-secondary {
  background: transparent !important;
  color: #f43f5e !important;
  border: 1.5px solid #f43f5e !important;
}
.section-light .guide-card .btn-secondary:hover {
  background: #f43f5e !important;
  color: #ffffff !important;
}
/* Guide card text */
.section-light .guide-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .guide-card h3 {
  color: #111111 !important;
}
.section-light .guide-card p {
  color: #555555 !important;
}
.section-light .guide-card-meta {
  color: #777777 !important;
}
.section-light .guide-card-meta span {
  color: #777777 !important;
}

/* ──────────────────────────────────────────────────────
   15. SECTION-LIGHT: All text visibility fixes
   ────────────────────────────────────────────────────── */
/* Cards on light */
.section-light .feature-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .feature-card h3 { color: #111111 !important; }
.section-light .feature-card p { color: #555555 !important; }
.section-light .stat-card {
  background: #ffffff !important;
}
.section-light .stat-card .stat-number {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .stat-card .stat-label { color: #666666 !important; }

/* ──────────────────────────────────────────────────────
   16. GUIDES PAGE — Stats section text visibility
   ────────────────────────────────────────────────────── */
.guides-stats {
  display: flex !important;
  justify-content: center !important;
  gap: 2rem !important;
  flex-wrap: wrap !important;
  margin-bottom: 2rem !important;
}
.section-light .gs-stat .stat-val {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .gs-stat .stat-lbl {
  color: #666666 !important;
}

/* ──────────────────────────────────────────────────────
   17. ALL BUTTONS — Ensure text is visible
   ────────────────────────────────────────────────────── */
/* Primary button on dark bg */
.btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(244,63,94,0.3) !important;
}
.btn-primary:hover {
  background: #e11d48 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 30px rgba(244,63,94,0.4) !important;
}
/* Secondary button on dark */
.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}
/* Button on light sections */
.section-light .btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
}
.section-light .btn-primary:hover {
  background: #e11d48 !important;
  color: #ffffff !important;
}
.section-light .btn-secondary {
  color: #f43f5e !important;
  border-color: #f43f5e !important;
  background: transparent !important;
}
.section-light .btn-secondary:hover {
  background: #f43f5e !important;
  color: #ffffff !important;
}
/* Accent/Gift buttons */
.btn-accent,
.btn-gift {
  background: #ffffff !important;
  color: #111111 !important;
}
.btn-accent:hover,
.btn-gift:hover {
  background: #f0f1f2 !important;
  color: #111111 !important;
}
/* CTA section buttons (dark bg) */
.cta-section .btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
}
.cta-section .btn-secondary {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.4) !important;
}

/* ──────────────────────────────────────────────────────
   18. GUIDES PAGE TABLE TEXT + HOVER FIX
   ────────────────────────────────────────────────────── */
.section-light table {
  width: 100% !important;
  table-layout: fixed !important;
}
.section-light table th {
  background: #1a1b1c !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}
.section-light table td {
  color: #333333 !important;
  background: #ffffff !important;
}
.section-light table tbody tr:hover td {
  background: #f0f1f2 !important;
  color: #111111 !important;
}

/* ──────────────────────────────────────────────────────
   19. ARTICLE BLOCK TABLE FIXES
   ────────────────────────────────────────────────────── */
.article-block-dark table thead th {
  background: #2a2b2c !important;
  color: #ffffff !important;
}
.article-block-dark table td {
  color: #d4d5d6 !important;
}
.article-block-dark table tbody tr:hover td {
  background: rgba(255,255,255,0.06) !important;
  color: #ffffff !important;
}
.article-block-light table thead th {
  background: #1a1b1c !important;
  color: #ffffff !important;
}
.article-block-light table td {
  color: #333333 !important;
  background: #ffffff !important;
}
.article-block-light table tbody tr:hover td {
  background: #f0f1f2 !important;
  color: #111111 !important;
}

/* ──────────────────────────────────────────────────────
   20. NAV GIFT BUTTON — Keep original white
   ────────────────────────────────────────────────────── */
.nav-gift-btn {
  background: #ffffff !important;
  color: #111111 !important;
}
.nav-gift-btn:hover {
  background: #f0f1f2 !important;
}

/* ──────────────────────────────────────────────────────
   21. STICKY GIFT BUTTON — Keep original white
   ────────────────────────────────────────────────────── */
.sticky-gift-btn {
  background: #ffffff !important;
  color: #111111 !important;
}

/* ──────────────────────────────────────────────────────
   22. CUSTOM SCROLLBAR — Thinner, less visible
   ────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}
::-webkit-scrollbar-track {
  background: transparent !important;
}
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1) !important;
  border-radius: 4px !important;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2) !important;
}
/* Firefox */
html {
  scrollbar-width: thin !important;
  scrollbar-color: rgba(255,255,255,0.1) transparent !important;
}

/* ──────────────────────────────────────────────────────
   23. GUIDE SEARCH & FILTER BUTTONS ON DARK BG
   ────────────────────────────────────────────────────── */
.guides-search input {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
}
.filter-btn {
  background: rgba(255,255,255,0.08) !important;
  color: #d4d5d6 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}
.filter-btn.active {
  background: #f43f5e !important;
  color: #ffffff !important;
  border-color: #f43f5e !important;
}
.filter-btn:hover:not(.active) {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
}

/* ──────────────────────────────────────────────────────
   24. PRICING PAGE PRICING CARDS ON LIGHT SECTION
   ────────────────────────────────────────────────────── */
.section-light .pricing-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
}
.section-light .pricing-card .plan-name {
  color: #888888 !important;
}
.section-light .pricing-card .price {
  color: #111111 !important;
}
.section-light .pricing-card .price sup {
  color: #111111 !important;
}
.section-light .pricing-card .price-period {
  color: #666666 !important;
}
.section-light .pricing-card .price-original {
  color: #999999 !important;
}
.section-light .pricing-card .price-save {
  background: rgba(244,63,94,0.1) !important;
  color: #f43f5e !important;
  border-color: rgba(244,63,94,0.3) !important;
}
.section-light .pricing-card .divider {
  background: rgba(0,0,0,0.08) !important;
}
.section-light .pricing-features li {
  color: #333333 !important;
}
.section-light .pricing-features li .check { color: #16a34a !important; }
.section-light .pricing-features li .cross { color: #999999 !important; }
.section-light .pricing-card.featured {
  background: #ffffff !important;
  border: 2px solid #f43f5e !important;
}

/* ──────────────────────────────────────────────────────
   25. COMPARISON TABLE FIRST COLUMN
   ────────────────────────────────────────────────────── */
.comparison-table th:first-child,
.comparison-table td:first-child {
  width: auto !important;
}

/* ──────────────────────────────────────────────────────
   26. REVIEW CARD IMPROVEMENTS
   ────────────────────────────────────────────────────── */
.review-card {
  height: 100% !important;
}
.reviews-grid {
  align-items: stretch !important;
}

/* ──────────────────────────────────────────────────────
   27. HERO SECTION TEXT — Consistent visibility
   ────────────────────────────────────────────────────── */
.hero h1 {
  color: #ffffff !important;
}
.hero .hero-desc,
.hero p {
  color: #d4d5d6 !important;
}

/* ──────────────────────────────────────────────────────
   28. CTA SECTION — Solid bg, no gradient
   ────────────────────────────────────────────────────── */
.cta-section {
  background: #1a1b1c !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.cta-section h2 {
  color: #ffffff !important;
}
.cta-section p {
  color: #d4d5d6 !important;
}

/* ── BUTTON GROUP: proper flex layout ── */
.btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── NAV: ensure no blue on active links ── */
.nav-links a.active { color: #ffffff !important; background: rgba(255,255,255,0.1) !important; }

/* ── CHIP on dark section ── */
.chip { color: #ffffff !important; background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.15) !important; }

/* ==========================================================
   COMPREHENSIVE DESIGN FIXES v7 — User-reported issues
   ========================================================== */

/* ── 1. GUIDE CARD TITLES: Force dark text (white card, light section) ── */
.guide-card h3,
.section-light .guide-card h3,
.guides-grid .guide-card h3,
.guide-featured .guide-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.guide-card p,
.section-light .guide-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.guide-card-meta,
.section-light .guide-card-meta { color: #777777 !important; }
.guide-tag { color: #444444 !important; font-weight: 700; }

/* ── 2. REVIEW RATING BOX: Properly centred ── */
.rating-summary-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}
.rating-summary-inner {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
/* Inline rating box centering fix (reviews.html uses inline style wrapper) */
section > .container > div[style*="display:flex"][style*="justify-content:center"] {
  display: flex !important;
  justify-content: center !important;
}

/* ── 3. FAQ BUTTON TEXT: Visible on dark CTA section ── */
.cta-section .btn-primary,
.faq-cta .btn-primary,
section .cta-section .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  font-weight: 700 !important;
  -webkit-text-fill-color: #111111 !important;
}
.cta-section .btn-secondary,
.faq-cta .btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* Button text gradient override — ensure no transparent text on buttons */
.btn { -webkit-text-fill-color: inherit; }
.btn-primary { -webkit-text-fill-color: #111111 !important; }
.section-light .btn-primary { -webkit-text-fill-color: #ffffff !important; }

/* ── 4. GUIDES ARCHIVE: Third section (Pricing category) text visibility ── */
.category-header h2 { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
.category-header p { color: #666666 !important; -webkit-text-fill-color: #666666 !important; }
.section-light .category-header h2 { color: #111111 !important; }
.section-light .category-header p { color: #666666 !important; }

/* ── 5. GLOBAL FOOTER: Perfectly consistent on ALL pages ── */
footer {
  background: #1a1b1c !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  padding: 4rem 0 2rem !important;
  width: 100% !important;
  display: block !important;
}
footer > .footer-grid,
footer .footer-grid {
  max-width: 1320px !important;
  margin: 0 auto 2.5rem !important;
  padding: 0 2rem !important;
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 2.5rem !important;
}
footer .footer-brand { grid-column: 1; }
footer .footer-brand .logo {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 0.75rem !important;
  display: block;
}
footer .footer-brand > p {
  font-size: 0.85rem !important;
  color: #8a8b8e !important;
  max-width: 260px !important;
  line-height: 1.65 !important;
}
footer .footer-col > h4 {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #8a8b8e !important;
  margin-bottom: 1rem !important;
  padding-bottom: 0 !important;
  border: none !important;
}
footer .footer-col ul { list-style: none !important; margin: 0 !important; padding: 0 !important; }
footer .footer-col ul li { margin-bottom: 0.5rem !important; }
footer .footer-col ul li a {
  font-size: 0.87rem !important;
  color: #a0a1a4 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  font-weight: 400 !important;
}
footer .footer-col ul li a:hover { color: #ffffff !important; }
footer .footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
footer .social-btn {
  width: 36px !important; height: 36px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.9rem !important;
  color: #8a8b8e !important;
}
footer .social-btn:hover { background: rgba(255,255,255,0.16) !important; color: #ffffff !important; }
footer > .footer-bottom,
footer .footer-bottom {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 1.5rem 2rem 0 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}
footer .footer-bottom p,
footer .footer-bottom > p {
  font-size: 0.8rem !important;
  color: #666666 !important;
  margin: 0 !important;
}
footer .footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
footer .footer-links a {
  font-size: 0.8rem !important;
  color: #666666 !important;
  text-decoration: none !important;
}
footer .footer-links a:hover { color: #ffffff !important; }
footer > .disclaimer,
footer .disclaimer {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 1.25rem 2rem 0 !important;
  font-size: 0.73rem !important;
  color: #555555 !important;
  line-height: 1.65 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  margin-top: 1.25rem !important;
}
footer .disclaimer a { color: #aaaaaa !important; }
footer .disclaimer strong { color: #888888 !important; }
/* Footer responsive */
@media (max-width: 960px) {
  footer > .footer-grid,
  footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.75rem !important;
  }
  footer .footer-brand { grid-column: 1 / -1 !important; }
}
@media (max-width: 640px) {
  footer > .footer-grid,
  footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1.25rem !important;
  }
  footer > .footer-bottom,
  footer .footer-bottom { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.25rem 0; }
  footer .footer-links { gap: 0.75rem; }
  footer > .disclaimer,
  footer .disclaimer { padding: 1rem 1.25rem 0; }
}

/* ── 6. SECTION-LIGHT GENERAL DESIGN: Ensure no white-on-white ── */
/* Headings */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Exception: text-gradient should keep its gradient */
.section-light .text-gradient,
.section-light h1 .text-gradient,
.section-light h2 .text-gradient,
.section-light h3 .text-gradient {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
/* Paragraphs & lists */
.section-light p { color: #444444 !important; }
.section-light ul li,
.section-light ol li { color: #444444 !important; }
/* Labels */
.section-light .section-label { color: #1a1b1c !important; }

/* ── 7. FEATURE CARDS on section-light ── */
.section-light .feature-card,
.section-light .step-card,
.section-light .stat-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
.section-light .feature-card h3,
.section-light .step-card h3,
.section-light .stat-card .stat-number {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .feature-card p,
.section-light .step-card p,
.section-light .stat-card p,
.section-light .stat-card .stat-label {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.section-light .feature-icon {
  background: #f5f5f5 !important;
  border-color: rgba(0,0,0,0.08) !important;
  color: #1a1b1c !important;
}

/* ── 8. PRICING CARDS on section-light ── */
.section-light .pricing-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.12) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
}
.section-light .pricing-card .plan-name,
.section-light .pricing-card .price,
.section-light .pricing-card .price-period {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .pricing-features li {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}

/* ── 9. STEP NUMBERS: Fix visibility ── */
.section-light .step-number {
  background: #1a1b1c !important;
  color: #ffffff !important;
  border: none !important;
}

/* ── 10. STAT CARDS (gs-stat): light section ── */
.gs-stat { background: #ffffff !important; border-color: rgba(0,0,0,0.1) !important; }
.gs-stat .stat-val { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
.gs-stat .stat-lbl { color: #666666 !important; }

/* ── 11. COMPARISON TABLE text always visible ── */
.section-light .comparison-table,
.section-light .comp-table {
  background: #ffffff !important;
}
.section-light .comparison-table th,
.section-light .comp-table th {
  background: #f0f0f0 !important;
  color: #111111 !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .comparison-table td,
.section-light .comp-table td {
  background: #ffffff !important;
  color: #333333 !important;
  border-color: rgba(0,0,0,0.06) !important;
}
.section-light .comparison-table tr:hover td,
.section-light .comp-table tr:hover td { background: #f9f9f9 !important; }

/* ── 12. FAQ QUESTIONS: Always visible ── */
.section-light .faq-question {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  background: transparent !important;
}
.section-light .faq-answer-inner {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.faq-question { font-weight: 600; }

/* ── 13. COUPON CARDS on section-light ── */
.section-light .coupon-card h3,
.section-light .coupon-card .coupon-title { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
.section-light .coupon-card p,
.section-light .coupon-desc { color: #555555 !important; }

/* ── 14. TRUST BAR: visible ── */
.trust-bar { border-color: rgba(255,255,255,0.1); }
.section-light .trust-item { color: #555555 !important; }

/* ── 15. ABOUT PAGE TEAM CARDS ── */
.section-light .team-card h3 { color: #111111 !important; }
.section-light .team-card p { color: #555555 !important; }
.section-light .team-card .role { color: #777777 !important; }

/* ── 16. INLINE DARK ELEMENTS inside light sections ── */
/* Any element with background #232425 or #1a1b1c inline gets proper text */
[style*="background:#232425"] h2,
[style*="background:#1a1b1c"] h2,
[style*="background: #232425"] h2,
[style*="background: #1a1b1c"] h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
[style*="background:#232425"] p,
[style*="background:#1a1b1c"] p,
[style*="background: #232425"] p,
[style*="background: #1a1b1c"] p {
  color: #c0c1c4 !important;
  -webkit-text-fill-color: #c0c1c4 !important;
}

/* ── 17. BUTTONS: No transparent text ── */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  border: none !important;
}
.btn-primary i,
.btn-primary .fas,
.btn-primary .far {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .btn-primary,
.section-light a.btn-primary,
.article-block-light .btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .btn-primary i,
.article-block-light .btn-primary i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* Dark inline elements use white-bg black-text buttons */
[style*="background:#232425"] .btn-primary,
[style*="background:#1a1b1c"] .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ── 18. SECONDARY BUTTONS ── */
.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.45) !important;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.7) !important;
}
.section-light .btn-secondary {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  border-color: rgba(0,0,0,0.3) !important;
}
.section-light .btn-secondary:hover {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* Secondary button inside inline dark div */
[style*="background:#232425"] .btn-secondary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* ── 19. NAV BUTTON in hero / dark sections ── */
.nav-gift-btn { color: #111111 !important; background: #ffffff !important; }
.nav-gift-btn:hover { background: #f5f5f5 !important; }

/* ── 20. MOBILE NAV ── */
.mobile-nav a { color: #ffffff; }

/* ── 21. SCROLL-TO-TOP button ── */
#scrollTop { background: #ffffff !important; color: #1a1b1c !important; }

/* ── 22. STICKY POPUP buttons ── */
.sticky-popup .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* sticky gift btn */
.sticky-gift-btn {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ── INLINE CTA dark: btn must show ── */
.inline-cta .btn-primary { background: #ffffff !important; color: #111111 !important; }
.inline-cta .btn-primary:hover { background: #f0f1f2 !important; color: #111111 !important; }

/* ── FINAL SCORE gradient text ── */
.final-score .fs-val {
  background: linear-gradient(135deg, #f43f5e, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

/* ── HERO FLOATING CARDS ── */
.hero-floating-card { color: #ffffff !important; }
.hero-floating-card .card-val { color: #f43f5e !important; font-weight: 700; }

/* ── STAT NUM in hero ── */
.hero-stat .stat-num { color: #ffffff !important; }
.stat-num { 
  background: linear-gradient(135deg, #f43f5e, #cb1c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION-LIGHT: all heading fixes ── */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5 { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
/* Exception: text-gradient elements */
.section-light .text-gradient,
.section-light h1 .text-gradient,
.section-light h2 .text-gradient,
.section-light h3 .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
/* Exception: dark CTA boxes inside section-light */
.section-light .cta-section h2,
.section-light div[style*="background:#232425"] h2,
.section-light div[style*="background:#1a1b1c"] h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── STEP-BOX / FEATURE TABLE ── */
.step-box { background: var(--bg-card) !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: var(--radius) !important; padding: 1.25rem !important; }
.step-box-num { background: #f43f5e !important; color: #ffffff !important; font-weight: 800; }
.step-box-body h4 { color: var(--text-primary) !important; }
.step-box-body p { color: var(--text-secondary) !important; }
.section-light .step-box { background: #ffffff !important; border-color: rgba(0,0,0,0.1) !important; }
.section-light .step-box-body h4 { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
.section-light .step-box-body p { color: #444444 !important; }

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 900px) {
  footer .footer-grid { grid-template-columns: 1fr 1fr !important; }
  footer .footer-brand { grid-column: 1 / -1 !important; }
}
@media (max-width: 560px) {
  footer .footer-grid { grid-template-columns: 1fr !important; }
  footer { padding: 2.5rem 0 1rem !important; }
}

/* ── REVIEW PAGE: rating display centered ── */
.rating-summary-wrap {
  display: flex !important;
  justify-content: center !important;
  margin-top: 1.5rem !important;
}

/* ── SECTION-LIGHT btn visibility ── */
.section-light .btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
}
.section-light .btn-primary:hover { background: #333333 !important; color: #ffffff !important; }
.section-light .btn-secondary { color: #1a1b1c !important; border-color: rgba(0,0,0,0.3) !important; }
.section-light .btn-secondary:hover { background: #1a1b1c !important; color: #ffffff !important; }

/* ── GUIDES STATS on section-light ── */
.section-light .gs-stat .stat-val { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
.section-light .gs-stat .stat-lbl { color: #666666 !important; }

/* ── GENERIC: Any heading inside a white/light box ── */
.section-light .card h3,
.section-light .card h4,
.section-light [class*="card"] h3,
.section-light [class*="card"] h4 { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }

/* ── FIX: Specific inline-style section on guides that has dark bg ── */
div[style*="background:#232425"] .btn-primary { background: #ffffff !important; color: #111111 !important; }
div[style*="background:#232425"] .btn-secondary { color: #ffffff !important; border-color: rgba(255,255,255,0.5) !important; }
div[style*="background:#1a1b1c"] .btn-primary { background: #ffffff !important; color: #111111 !important; }

/* ── HERO H1 OVERRIDE (IMPORTANT) ── */
.hero h1,
.hero h1 span:not(.text-gradient) { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }

/* ==========================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS v8
   ========================================================== */

/* ── Global box-sizing & overflow protection ── */
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; }
img, video, iframe { max-width: 100% !important; height: auto; }

/* ── Container: safe side padding on all screens ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) { .container { padding: 0 1rem; } }
@media (max-width: 480px) { .container { padding: 0 0.75rem; } }

/* ── NAVIGATION: mobile fixes ── */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-actions .btn-sm { display: none; }
}
@media (max-width: 480px) {
  header .container { padding: 0 0.75rem; }
  .nav-logo span { font-size: 1rem; }
  .nav-gift-btn { display: none; }
  .nav-actions .btn-sm { display: inline-flex !important; font-size: 0.8rem; padding: 8px 14px; }
}

/* ── DEAL TOPBAR: wrap text on mobile ── */
.deal-topbar {
  white-space: normal !important;
  text-align: center !important;
  padding: 10px 40px 10px 16px !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
}
@media (max-width: 480px) {
  .deal-topbar { font-size: 0.76rem !important; padding: 8px 36px 8px 12px !important; }
  .deal-topbar .topbar-close { right: 10px !important; }
}

/* ── HERO SECTION: mobile-friendly ── */
@media (max-width: 900px) {
  .hero { padding: 80px 0 50px !important; }
  .hero-content { grid-template-columns: 1fr !important; text-align: center; gap: 2rem; }
  .hero-text { order: 2; }
  .hero-img-wrap { order: 1; display: none; }
  .hero-stats { justify-content: center !important; flex-wrap: wrap; gap: 1rem; }
  .btn-group { justify-content: center !important; flex-wrap: wrap; gap: 0.75rem; }
  .hero-badge { justify-content: center; }
}
@media (max-width: 600px) {
  .hero { padding: 70px 0 40px !important; }
  .hero h1 { font-size: 32px !important; }
  .hero-desc { font-size: 0.95rem !important; }
  .hero-stat { min-width: 0; }
  .btn-lg { padding: 13px 24px !important; font-size: 0.92rem !important; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 26px !important; }
  .hero-desc { font-size: 0.88rem !important; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}

/* ── ARTICLE HERO ── */
@media (max-width: 768px) {
  .article-hero-section { padding: 40px 0 36px !important; }
  .article-hero-section h1 { font-size: 1.55rem !important; }
  .article-meta { flex-wrap: wrap; gap: 0.4rem; font-size: 0.78rem !important; }
  .hero-cta-btn { font-size: 0.88rem !important; padding: 11px 20px !important; }
  .article-hero-img { max-height: 280px; object-fit: cover; }
}

/* ── ARTICLE GRID (content + sidebar) ── */
.article-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: flex-start; }
@media (max-width: 960px) {
  .article-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .review-sidebar,
  .pg-sidebar { position: static !important; width: 100% !important; order: -1; }
}

/* ── ARTICLE BODY TEXT ── */
@media (max-width: 768px) {
  .article-body { font-size: 0.97rem; }
  .article-body h2 { font-size: 1.35rem !important; }
  .article-body h3 { font-size: 1.1rem !important; }
  .article-body p { margin-bottom: 0.9rem; }
}

/* ── IMAGES: crisp & never overflow ── */
.article-body img,
.hero-img,
.article-hero-img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover;
}
/* Card images keep their fixed height for consistent card layout */
.guide-card img,
.blog-card img {
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  object-fit: cover !important;
  /* height is set per-class: .guide-card img = 200px, .blog-card img = 180px */
}
.article-img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover;
  aspect-ratio: 16/9 !important;
}
/* Fix blurry images: use auto rendering for photos */
img {
  image-rendering: auto;
}

/* ── TABLES: horizontal scroll on mobile ── */
.table-wrap,
.ft,
.pg-table,
.comp-table,
.comparison-table,
.seasonal-table,
.key-facts-table {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  display: block !important;
  width: 100% !important;
  border-radius: var(--radius) !important;
}
@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td,
  .comp-table th,
  .comp-table td { 
    padding: 8px 10px !important;
    font-size: 0.82rem !important;
    white-space: normal;
    min-width: 80px;
  }
  .key-facts-table td { font-size: 0.83rem !important; padding: 8px 10px !important; }
  .seasonal-table th, .seasonal-table td { font-size: 0.8rem !important; padding: 8px !important; }
}
@media (max-width: 480px) {
  .comparison-table th,
  .comparison-table td { font-size: 0.76rem !important; padding: 6px 8px !important; min-width: 70px; }
}

/* ── VIDEO EMBEDS: always 16:9 ── */
.yt-embed,
.video-wrap {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 56.25% !important;
  height: 0 !important;
  overflow: hidden !important;
  border-radius: var(--radius) !important;
  background: #000 !important;
}
.yt-embed iframe,
.video-wrap iframe,
.yt-embed video,
.video-wrap video {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

/* ── GRIDS: collapse on mobile ── */
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr !important; }
  .pros-cons-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .before-after { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .coupon-grid { grid-template-columns: 1fr !important; }
  .guides-grid { grid-template-columns: 1fr !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .guides-stats { grid-template-columns: 1fr 1fr !important; }
}

/* ── HERO STATS (index.html) ── */
@media (max-width: 600px) {
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.5rem; }
  .hero-stat { text-align: center; }
}

/* ── SCORE CARD ── */
@media (max-width: 600px) {
  .score-card { padding: 1rem !important; }
  .score-row { flex-direction: column; gap: 0.5rem; }
  .score-bar-wrap { width: 100% !important; }
}

/* ── PRICING GRID ── */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 420px !important; margin: 0 auto !important; }
  .pricing-card.featured { transform: none !important; }
  .pricing-toggle { flex-wrap: wrap; }
}

/* ── GUIDE FEATURED CARD: stack on mobile ── */
@media (max-width: 768px) {
  .guide-card.guide-featured[style*="grid"] { display: flex !important; flex-direction: column !important; }
  .guide-card.guide-featured img { min-height: 200px !important; max-height: 240px !important; object-fit: cover !important; }
}

/* ── COUPON SECTION ── */
@media (max-width: 600px) {
  .coupon-section { padding: 1.25rem !important; margin: 1.5rem 0 !important; }
  .coupon-grid { grid-template-columns: 1fr !important; }
  .coupon-card { padding: 1.25rem !important; }
}

/* ── CTA SECTION ── */
@media (max-width: 600px) {
  .cta-section { padding: 2rem 1.25rem !important; }
  .cta-section h2 { font-size: 1.4rem !important; }
  .cta-section .btn-group,
  .cta-section > div { flex-direction: column; align-items: stretch; }
  .cta-section .btn-lg { justify-content: center; }
}

/* ── FAQ LIST ── */
@media (max-width: 600px) {
  .faq-question { font-size: 0.9rem !important; padding: 14px 16px !important; }
  .faq-answer-inner { font-size: 0.88rem !important; padding: 0 16px 16px !important; }
}

/* ── REVIEW RATING BOX: stack on mobile ── */
@media (max-width: 600px) {
  .rating-summary-inner,
  section > .container > div[style*="display:flex"][style*="justify-content:center"] > div {
    flex-direction: column !important;
    padding: 1rem !important;
    gap: 1rem !important;
  }
  .rating-summary-inner > div[style*="width:1px"] { display: none !important; }
}

/* ── BREADCRUMB ── */
@media (max-width: 480px) {
  .breadcrumb { font-size: 0.76rem !important; }
}

/* ── SECTION LABEL ── */
@media (max-width: 480px) {
  .section-label { font-size: 0.76rem !important; }
}

/* ── HIGHLIGHTS / STATS ── */
@media (max-width: 480px) {
  .highlight-item { padding: 0.75rem !important; }
  .highlight-item .hi-val { font-size: 1.3rem !important; }
  .stat-card { padding: 1rem !important; }
  .stat-card .stat-number { font-size: 1.8rem !important; }
}

/* ── REVIEW CARDS ── */
@media (max-width: 600px) {
  .review-card { padding: 1.25rem !important; }
  .review-text { font-size: 0.88rem !important; }
  .review-author { gap: 0.5rem !important; }
  .review-avatar { width: 32px !important; height: 32px !important; font-size: 0.7rem !important; }
}

/* ── SAVINGS WIDGET ── */
@media (max-width: 480px) {
  .savings-widget { padding: 1rem !important; }
  .savings-row { font-size: 0.88rem !important; }
}

/* ── MODEL PILLS ── */
@media (max-width: 480px) {
  .models-wrap { gap: 0.4rem !important; }
  .model-pill { font-size: 0.75rem !important; padding: 4px 10px !important; }
}

/* ── TRUST BAR ── */
@media (max-width: 600px) {
  .trust-bar { flex-direction: column !important; align-items: flex-start !important; gap: 0.5rem !important; }
  .trust-item { font-size: 0.82rem !important; }
}

/* ── STICKY POPUP ── */
@media (max-width: 400px) {
  .sticky-popup { width: 240px !important; right: 12px !important; }
  .sticky-gift-btn { font-size: 0.82rem !important; padding: 10px 14px !important; }
}

/* ── INLINE DARK CTA BLOCKS: stack buttons on mobile ── */
@media (max-width: 600px) {
  div[style*="background:#232425"] div[style*="display:flex"],
  div[style*="background:#232425"] div[style*="gap:1rem"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }
}

/* ── SECTION PADDING: reduce on mobile ── */
@media (max-width: 768px) {
  .section, .section-light { padding: 48px 0 !important; }
  .article-block-dark, .article-block-light { padding: 40px 0 !important; }
}
@media (max-width: 480px) {
  .section, .section-light { padding: 36px 0 !important; }
  .article-block-dark, .article-block-light { padding: 32px 0 !important; }
}

/* ── ARTICLE PAGE HERO SECTION (inline padding:120px) ── */
@media (max-width: 768px) {
  section[style*="padding:120px"],
  section[style*="padding: 120px"] {
    padding: 40px 0 36px !important;
  }
}

/* ── HEADING SIZES: responsive ── */
@media (max-width: 768px) {
  h1 { font-size: clamp(1.5rem, 5vw, 2.2rem) !important; }
  h2 { font-size: clamp(1.25rem, 4vw, 1.7rem) !important; }
  h3 { font-size: clamp(1rem, 3vw, 1.3rem) !important; }
  .section-title { font-size: clamp(1.3rem, 4vw, 1.7rem) !important; }
}

/* ── IMAGE QUALITY: force full resolution on retina ── */
.article-img,
.guide-card img,
.blog-card img {
  image-rendering: auto !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ── COMPARISON TABLE — horizontal scroll with sticky first col ── */
@media (max-width: 768px) {
  .comparison-table { min-width: 500px; }
  .comp-table { min-width: 480px; }
}

/* ── KEY FACTS TABLE ── */
@media (max-width: 600px) {
  .key-facts-table { font-size: 0.83rem !important; }
  .key-facts-table td { display: table-cell !important; padding: 8px !important; }
}

/* ── PLAN CARDS GRID ── */
@media (max-width: 600px) {
  .plan-cards-grid { grid-template-columns: 1fr !important; }
  .credit-pack-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ── PROS CONS BOX ── */
@media (max-width: 600px) {
  .pros-box, .cons-box { padding: 1rem !important; }
  .pros-box ul li, .cons-box ul li { font-size: 0.88rem !important; }
}

/* ── STEP BOX ── */
@media (max-width: 600px) {
  .step-box { padding: 1rem !important; }
  .step-box-num { width: 28px !important; height: 28px !important; font-size: 0.82rem !important; }
}

/* ── PULL QUOTE ── */
@media (max-width: 600px) {
  .pull-quote { padding: 0.75rem 1rem !important; font-size: 0.95rem !important; }
}

/* ── INLINE CTA ── */
@media (max-width: 600px) {
  .inline-cta { padding: 1.25rem !important; }
  .inline-cta .btn-group { flex-direction: column; }
}

/* ── VERDICT BOX ── */
@media (max-width: 600px) {
  .verdict-box { padding: 1rem !important; }
  .verdict-score { font-size: 1.25rem !important; }
}

/* ── SIDEBAR RATING ── */
@media (max-width: 960px) {
  .review-sidebar { order: -1 !important; }
  .sidebar-toc,
  .sidebar-deal-card { margin-bottom: 1rem !important; }
}

/* ── HERO IMAGE (inside article hero) ── */
@media (max-width: 768px) {
  .hero-img { max-width: 100% !important; height: auto !important; margin: 0 auto; display: block; }
}

/* ── FILTER BUTTONS (guides.html) ── */
@media (max-width: 600px) {
  .guides-filter { gap: 0.4rem !important; }
  .filter-btn { font-size: 0.76rem !important; padding: 5px 12px !important; }
  .guides-search input { font-size: 0.9rem !important; padding: 11px 40px 11px 14px !important; }
}

/* ── GUIDE CARD: compact on mobile ── */
@media (max-width: 480px) {
  .guide-card-body { padding: 1rem !important; }
  .guide-card h3 { font-size: 0.95rem !important; }
  .guide-card p { font-size: 0.82rem !important; }
  .guide-card-actions { gap: 0.4rem !important; }
  .guide-card-actions .btn { font-size: 0.78rem !important; padding: 6px 12px !important; }
}

/* ── BLOG CARD: compact on mobile ── */
@media (max-width: 480px) {
  .blog-card-body { padding: 0.85rem !important; }
  .blog-card h3 { font-size: 0.93rem !important; }
  .blog-card p { font-size: 0.82rem !important; }
}

/* ── FEATURE CARD: compact on mobile ── */
@media (max-width: 600px) {
  .feature-card { padding: 1.25rem !important; }
  .feature-icon { width: 44px !important; height: 44px !important; font-size: 1.2rem !important; }
}

/* ==========================================================
   COMPREHENSIVE DESIGN & MOBILE FIXES v9
   ========================================================== */

/* ── GLOBAL IMAGE QUALITY ── */
img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.article-img,
.article-body img,
.hero-img {
  image-rendering: auto;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* Card images: keep fixed height for consistent card thumbnails */
.guide-card-img,
.guide-card img,
.blog-card img {
  image-rendering: auto;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ── ARTICLE IMAGE: proper sizing ── */
.article-img {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  margin: 1.5rem auto;
  max-width: 100%;
  aspect-ratio: 16/9;
  object-position: center top;
}
.section-light .article-img {
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ── GUIDE CARD IMAGE HEIGHT ── */
.guide-card-img,
.guide-card img:not([class]) {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.guide-card.guide-featured .guide-card-img,
.guide-card.guide-featured img {
  height: 260px;
}

/* ── HERO IMAGE FIX ── */
.hero-img-wrap img,
.article-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

/* ── NAVBAR: ensure proper z-index & bg ── */
header.sticky-nav,
header { z-index: 999; position: sticky; top: 0; }
.navbar { padding: 0.85rem 0; }

/* ── MOBILE NAV: ensure proper overlay ── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── DEAL TOPBAR: always readable ── */
.deal-topbar {
  background: #ffffff !important;
  color: #111111 !important;
  border-bottom: 1px solid #e0e0e0 !important;
  position: relative !important;
  z-index: 1001 !important;
}
.deal-topbar a { color: #cb1c3a !important; }
.deal-topbar .topbar-close { color: #111111 !important; }

/* ── SECTION SPACING CONSISTENCY ── */
.section { padding: 72px 0; }
.section-light { padding: 72px 0; }
@media (max-width: 960px) {
  .section, .section-light { padding: 56px 0 !important; }
}
@media (max-width: 768px) {
  .section, .section-light { padding: 44px 0 !important; }
}
@media (max-width: 480px) {
  .section, .section-light { padding: 36px 0 !important; }
}

/* ── CARD TEXT VISIBILITY (light sections) ── */
.section-light .feature-card h3,
.section-light .feature-card h4,
.section-light .stat-card h3,
.section-light .stat-card h4,
.section-light .coupon-card h3,
.section-light .coupon-card h4,
.section-light .review-card h4,
.section-light .guide-card h3,
.section-light .pricing-card h3,
.section-light .step-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .feature-card p,
.section-light .stat-card p,
.section-light .coupon-card p,
.section-light .review-card p,
.section-light .guide-card p,
.section-light .pricing-card p,
.section-light .step-card p {
  color: #444444 !important;
}

/* ── FAQ PAGE BUTTON TEXT VISIBILITY ── */
.faq-cta .btn-primary,
.cta-section .btn-primary,
section .btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* Override for light sections */
.section-light .btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: #1a1b1c !important;
}
.section-light .btn-primary:hover {
  background: #333333 !important;
}
/* Dark background CTA primary button */
.cta-section .btn-primary,
div[style*="background:#232425"] .btn-primary,
div[style*="background:#1a1b1c"] .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ── REVIEW BOX CENTERING ── */
.rating-summary-wrap,
.reviews-summary-box {
  display: flex !important;
  justify-content: center !important;
  align-items: stretch !important;
  margin: 1.5rem auto !important;
  max-width: 900px !important;
}

/* ── REVIEW CARDS on light section ── */
.section-light .review-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
.section-light .review-card .review-text {
  color: #333333 !important;
}
.section-light .review-card .review-name {
  color: #111111 !important;
  font-weight: 700 !important;
}
.section-light .review-card .review-role {
  color: #666666 !important;
}
.section-light .review-card .review-source {
  color: #888888 !important;
}
.section-light .review-card .review-avatar {
  background: #1a1b1c !important;
  color: #ffffff !important;
}

/* ── GUIDES ARCHIVE: section 3 text visibility ── */
.category-header h2,
.category-header .category-title {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .category-header p {
  color: #666666 !important;
}

/* ── GUIDES CARDS: text visibility ── */
.guide-card h3,
.guide-card .guide-card-title {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
}
.guide-card p {
  color: #555555 !important;
}
.guide-card .guide-card-meta,
.guide-card .guide-meta {
  color: #777777 !important;
  font-size: 0.78rem !important;
}
.guide-card .guide-tag,
.guide-card .tag {
  color: #444444 !important;
  font-weight: 600 !important;
}

/* ── FOOTER: global consistent design ── */
footer {
  background: #1a1b1c !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 3.5rem 0 0 !important;
}
footer .footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 3rem !important;
  padding-bottom: 2.5rem !important;
}
footer .footer-brand .logo {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
footer .footer-brand p {
  color: #8a8b8e !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  max-width: 260px !important;
}
footer .footer-col h4 {
  color: #8a8b8e !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 1rem !important;
}
footer .footer-col ul li {
  margin-bottom: 0.6rem !important;
}
footer .footer-col ul li a {
  color: #8a8b8e !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}
footer .footer-col ul li a:hover {
  color: #ffffff !important;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 1.5rem 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
}
footer .footer-bottom p,
footer .footer-bottom a {
  color: #8a8b8e !important;
  font-size: 0.8rem !important;
}
footer .footer-bottom a:hover { color: #ffffff !important; }
footer .footer-links {
  display: flex !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}
footer .footer-disclaimer {
  font-size: 0.75rem !important;
  color: #8a8b8e !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 1.25rem 0 1.5rem !important;
  line-height: 1.6 !important;
}
footer .footer-disclaimer a { color: #ffffff !important; }
footer .social-links {
  display: flex !important;
  gap: 0.5rem !important;
  margin-top: 1rem !important;
}
footer .social-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #8a8b8e !important;
  font-size: 0.9rem !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
}
footer .social-btn:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
}

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 960px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
  footer .footer-brand {
    grid-column: 1 / -1 !important;
  }
}
@media (max-width: 640px) {
  footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  footer { padding-top: 2.5rem !important; }
  footer .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* ── SECTION TITLE VISIBILITY (all dark sections) ── */
.section h2,
.section h3,
.section h1 {
  color: #ffffff !important;
}
.section p {
  color: var(--text-secondary) !important;
}

/* ── HOME HERO: clean layout ── */
.hero {
  min-height: auto !important;
  padding: 100px 0 72px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: 45px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
.hero h1 .text-gradient {
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
.hero p { color: #d4d5d6 !important; }

/* ── ARTICLE HERO SECTION ── */
.article-hero-section,
section.article-hero-section {
  padding: 48px 0 48px !important;
  background: var(--bg-dark) !important;
}
.article-hero-section h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.article-hero-section p {
  color: #d4d5d6 !important;
}

/* ── BUTTON TEXT: always visible ── */
.btn {
  -webkit-text-fill-color: inherit !important;
}
.btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
}
.btn-primary:hover {
  background: #cb1c3a !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1) !important;
  color: #ffffff !important;
}

/* ── LIGHT SECTION BUTTON OVERRIDES ── */
.section-light .btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .btn-primary:hover {
  background: #333333 !important;
}
.section-light .btn-secondary {
  background: transparent !important;
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  border-color: rgba(0,0,0,0.3) !important;
}
.section-light .btn-secondary:hover {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── CTA SECTION BUTTON OVERRIDES ── */
.cta-section .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 700 !important;
}
.cta-section .btn-primary:hover {
  background: #f0f1f2 !important;
}
.cta-section .btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* ── PRICING SECTION ── */
.section-light .pricing-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
}
.section-light .pricing-card.featured {
  border-color: #1a1b1c !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
}
.section-light .pricing-card h3 { color: #111111 !important; }
.section-light .pricing-card p { color: #444444 !important; }
.section-light .pricing-card .price { color: #111111 !important; }
.section-light .pricing-card .price-period { color: #666666 !important; }
.section-light .pricing-card ul li { color: #333333 !important; }

/* ── FEATURES SECTION: dark cards ── */
.feature-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
  transition: var(--transition) !important;
}
.feature-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.feature-card h3, .feature-card h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.feature-card p {
  color: var(--text-secondary) !important;
}
.section-light .feature-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .feature-card h3,
.section-light .feature-card h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .feature-card p { color: #444444 !important; }

/* ── STAT CARDS ── */
.stat-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
  transition: var(--transition) !important;
}
.stat-card:hover {
  transform: translateY(-4px) !important;
}
.stat-card .stat-number {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
}
.stat-card .stat-label { color: var(--text-secondary) !important; }
.section-light .stat-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.section-light .stat-card .stat-number {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .stat-card .stat-label { color: #555555 !important; }

/* ── COUPON CARDS ── */
.coupon-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
  transition: var(--transition) !important;
}
.coupon-card h3, .coupon-card h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.coupon-card p { color: var(--text-secondary) !important; }
.section-light .coupon-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.section-light .coupon-card h3,
.section-light .coupon-card h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .coupon-card p { color: #444444 !important; }

/* ── REVIEW CARDS (home) ── */
.review-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
}
.review-card .review-text {
  color: #d4d5d6 !important;
  font-style: italic !important;
  line-height: 1.6 !important;
}
.review-card .review-name {
  color: #ffffff !important;
  font-weight: 700 !important;
}
.review-card .review-role { color: #8a8b8e !important; }

/* ── SCROLL INDICATOR / OVERFLOW ── */
section, .section, .section-light {
  overflow-x: hidden;
}

/* ── PRICING TOGGLE ── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.toggle-btn {
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}
.toggle-btn.active {
  background: #ffffff !important;
  color: #111111 !important;
  border-color: #ffffff !important;
}
.section-light .toggle-btn {
  border-color: rgba(0,0,0,0.15);
  color: #555555;
}
.section-light .toggle-btn.active {
  background: #1a1b1c !important;
  color: #ffffff !important;
  border-color: #1a1b1c !important;
}

/* ── FAQ ITEMS ── */
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  transition: var(--transition);
  background: transparent;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: #f43f5e; }
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}
.section-light .faq-item {
  border-color: rgba(0,0,0,0.1);
  background: #ffffff;
}
.section-light .faq-question { color: #111111; }
.section-light .faq-answer-inner { color: #444444; }

/* ── TOC (TABLE OF CONTENTS) ── */
.toc-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.toc-card h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 1rem !important;
}
.toc-card ul { list-style: none !important; padding: 0 !important; }
.toc-card ul li { margin-bottom: 0.5rem !important; }
.toc-card ul li a {
  color: #8a8b8e !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  display: block !important;
  padding: 3px 0 !important;
}
.toc-card ul li a:hover { color: #f43f5e !important; }
.section-light .toc-card {
  background: #f5f5f5 !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .toc-card h4 { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
.section-light .toc-card ul li a { color: #555555 !important; }
.section-light .toc-card ul li a:hover { color: #cb1c3a !important; }

/* ── DEAL SIDEBAR CARD ── */
.sidebar-deal-card {
  background: var(--bg-card2) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--radius) !important;
  padding: 1.25rem !important;
  margin-bottom: 1.5rem !important;
}
.sidebar-deal-card h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sidebar-deal-card p { color: #c0c1c4 !important; }
.sidebar-deal-card .deal-price {
  color: #f43f5e !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
}

/* ── SCORE BARS ── */
.score-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f43f5e, #cb1c3a);
  transition: width 0.8s ease;
}
.section-light .score-bar { background: rgba(0,0,0,0.08); }

/* ── VERDICT BOX ── */
.verdict-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid #f43f5e;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.verdict-box h4 { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.verdict-box p { color: var(--text-secondary) !important; }
.section-light .verdict-box {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  border-left-color: #f43f5e;
}
.section-light .verdict-box h4 { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
.section-light .verdict-box p { color: #333333 !important; }

/* ── PULL QUOTE ── */
.pull-quote {
  background: rgba(244,63,94,0.06);
  border-left: 4px solid #f43f5e;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #d4d5d6;
  line-height: 1.6;
}
.section-light .pull-quote {
  color: #333333;
  background: rgba(244,63,94,0.04);
}

/* ── WARNING / INFO BOX ── */
.warning-box, .info-box {
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.warning-box {
  background: rgba(244,63,94,0.08);
  border: 1px solid rgba(244,63,94,0.25);
  color: #ffb3c0;
}
.info-box {
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.25);
  color: #a5d6a7;
}
.section-light .warning-box {
  background: rgba(244,63,94,0.05);
  color: #c0102a;
}
.section-light .info-box {
  background: rgba(76,175,80,0.06);
  color: #2e7d32;
}

/* ── INLINE CTA ── */
.inline-cta {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2rem 0;
  text-align: center;
}
.inline-cta h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 0.5rem;
}
.inline-cta p { color: #c0c1c4 !important; margin-bottom: 1rem; }
.section-light .inline-cta {
  background: #f0f1f2;
  border-color: rgba(0,0,0,0.1);
}
.section-light .inline-cta h4 { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
.section-light .inline-cta p { color: #444444 !important; }

/* ── RESPONSIVE: tablet (768px–960px) ── */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
  }
  .hero-text { order: 2; }
  .hero-img-wrap { order: 1; max-height: 300px; overflow: hidden; }
  .hero-stats { justify-content: center !important; flex-wrap: wrap; }
  .btn-group { justify-content: center !important; flex-wrap: wrap; }
  .features-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── RESPONSIVE: mobile (max 768px) ── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .hero { padding: 72px 0 44px !important; }
  .hero h1 { font-size: 32px !important; }
  .features-grid,
  .stats-grid,
  .coupon-grid,
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
  .article-grid {
    grid-template-columns: 1fr !important;
  }
  .review-sidebar,
  .pg-sidebar {
    position: static !important;
    width: 100% !important;
    order: 0 !important;
    margin-bottom: 1.5rem !important;
  }
  .section-title { font-size: 1.5rem !important; }
  .article-body h2 { font-size: 1.3rem !important; }
  .article-body h3 { font-size: 1.1rem !important; }
  .table-wrap, .comp-table, .comparison-table,
  .pg-table, .seasonal-table, .key-facts-table {
    overflow-x: auto !important;
    display: block !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* ── RESPONSIVE: small mobile (max 480px) ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px !important; }
  .hero-desc { font-size: 0.9rem !important; }
  h2 { font-size: 1.3rem !important; }
  h3 { font-size: 1.05rem !important; }
  .btn-lg {
    font-size: 0.9rem !important;
    padding: 12px 20px !important;
  }
  .container { padding: 0 0.75rem !important; }
  .stat-card .stat-number { font-size: 1.8rem !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-card.featured { transform: none !important; }
}

/* ── HORIZONTAL SCROLL PROTECTION ── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
section, header, footer, .container, main {
  max-width: 100% !important;
}

/* ── STICKY NAV: proper mobile ── */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-actions .nav-gift-btn { display: none; }
  .nav-actions .btn-deal {
    font-size: 0.82rem !important;
    padding: 7px 14px !important;
  }
}

/* ── GUIDE PAGE STATS GRID ── */
.guides-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
  margin: 2rem 0 !important;
}
@media (max-width: 768px) {
  .guides-stats { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 420px) {
  .guides-stats { grid-template-columns: 1fr 1fr !important; }
}
.gs-stat {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--radius) !important;
  padding: 1rem !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
.gs-stat .stat-val {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  display: block !important;
}
.gs-stat .stat-lbl {
  font-size: 0.78rem !important;
  color: #666666 !important;
  margin-top: 0.2rem !important;
}

/* ── LOGO: always white text ── */
.nav-logo,
.nav-logo span,
.logo,
.logo span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.logo-icon {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── BREADCRUMB DARK HERO ── */
.breadcrumb, .breadcrumb span, .breadcrumb a {
  color: rgba(255,255,255,0.6) !important;
}
.breadcrumb a:hover { color: #ffffff !important; }
.section-light .breadcrumb,
.section-light .breadcrumb span,
.section-light .breadcrumb a {
  color: #666666 !important;
}
.section-light .breadcrumb a:hover { color: #111111 !important; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  background: rgba(244,63,94,0.12) !important;
  color: #f43f5e !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 5px 14px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(244,63,94,0.25) !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.04em !important;
}

/* ── CHIP / BADGE ── */
.chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  background: rgba(255,255,255,0.08) !important;
  color: #d4d5d6 !important;
  font-size: 0.78rem !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  white-space: nowrap !important;
}
.section-light .chip {
  background: rgba(0,0,0,0.06) !important;
  color: #555555 !important;
  border-color: rgba(0,0,0,0.12) !important;
}

/* ── COUNTDOWN TIMER ── */
.countdown-bar {
  background: #f43f5e !important;
  color: #ffffff !important;
  padding: 10px 0 !important;
  text-align: center !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}
.countdown-wrap {
  display: inline-flex !important;
  gap: 0.5rem !important;
  align-items: center !important;
}
.countdown-unit {
  background: rgba(255,255,255,0.2) !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}
@media (max-width: 600px) {
  .countdown-bar { font-size: 0.78rem !important; padding: 8px !important; }
  .countdown-wrap { gap: 0.3rem !important; }
}

/* ── COMPARISON TABLE: clean style ── */
.comparison-table,
.comp-table {
  width: 100% !important;
  border-collapse: collapse !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  font-size: 0.9rem !important;
}
.comparison-table th,
.comp-table th {
  background: #1a1b1c !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 12px 16px !important;
  text-align: left !important;
}
.comparison-table td,
.comp-table td {
  padding: 10px 16px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  color: #d4d5d6 !important;
}
.comparison-table tr:last-child td,
.comp-table tr:last-child td {
  border-bottom: none !important;
}
.comparison-table tr:hover,
.comp-table tr:hover {
  background: rgba(255,255,255,0.03) !important;
}
.section-light .comparison-table th,
.section-light .comp-table th {
  background: #1a1b1c !important;
  color: #ffffff !important;
}
.section-light .comparison-table td,
.section-light .comp-table td {
  color: #333333 !important;
  border-bottom-color: rgba(0,0,0,0.06) !important;
  background: #ffffff !important;
}
.section-light .comparison-table tr:hover td,
.section-light .comp-table tr:hover td {
  background: #f9f9f9 !important;
}

/* ── KEY FACTS TABLE ── */
.key-facts-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 0.88rem !important;
}
.key-facts-table td {
  padding: 10px 14px !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  vertical-align: top !important;
}
.key-facts-table td:first-child {
  background: #f5f5f5 !important;
  color: #111111 !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  width: 140px !important;
}
.key-facts-table td:last-child { color: #333333 !important; }

/* ── PROS / CONS BOX ── */
.pros-box, .cons-box {
  background: var(--bg-card) !important;
  border-radius: var(--radius) !important;
  padding: 1.5rem !important;
  margin-bottom: 1rem !important;
}
.pros-box {
  border-left: 4px solid #4caf50 !important;
}
.cons-box {
  border-left: 4px solid #f43f5e !important;
}
.pros-box h4 { color: #4caf50 !important; -webkit-text-fill-color: #4caf50 !important; }
.cons-box h4 { color: #f43f5e !important; -webkit-text-fill-color: #f43f5e !important; }
.pros-box ul li, .cons-box ul li {
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
  padding-left: 1.25rem !important;
  position: relative !important;
}
.section-light .pros-box,
.section-light .cons-box {
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
}
.section-light .pros-box ul li,
.section-light .cons-box ul li { color: #444444 !important; }

/* ── STICKY DEAL WIDGET ── */
.sticky-popup {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 888 !important;
  width: 280px !important;
}
.sticky-gift-btn {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 12px 18px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  width: 100% !important;
  font-size: 0.9rem !important;
}

/* ── GENERAL TABLE WRAPPER for horizontal scroll ── */
.table-wrapper,
.table-scroll-wrap {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  border-radius: var(--radius) !important;
  margin: 1.25rem 0 !important;
}
table {
  width: 100%;
  border-collapse: collapse;
}

/* ── ALL LINKS: no blue ── */
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
.section-light a:not(.btn):not(.nav-link) {
  color: #cb1c3a;
}
.section-light a:not(.btn):not(.nav-link):hover {
  color: #f43f5e;
}

/* ── SMOOTH SCROLLING (already in base, ensure) ── */
html { scroll-behavior: smooth; }

/* ── PRINT OPTIMIZATION ── */
@media print {
  .deal-topbar, header, footer, .sticky-popup { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

/* ==========================================================
   FINAL DESIGN OVERRIDE v9 — Clean, Consistent, Mobile-First
   ========================================================== */

/* ── BUTTON VISIBILITY: the single most important fix ── */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
  background: #cb1c3a !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* ── CTA DARK BACKGROUND: white button ── */
.cta-section .btn-primary,
div[style*="background:#232425"] .btn-primary,
div[style*="background:#1a1b1c"] .btn-primary,
div[style*="background: #232425"] .btn-primary,
div[style*="background: #1a1b1c"] .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.cta-section .btn-primary:hover { background: #f0f1f2 !important; }

/* ── LIGHT SECTION: dark primary button ── */
.section-light .btn-primary,
.section-light a.btn-primary,
.section-light button.btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .btn-primary:hover { background: #333333 !important; }

/* ── SECONDARY BUTTON ── */
.btn-secondary,
a.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  font-weight: 600 !important;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1) !important; }
.section-light .btn-secondary {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  border-color: rgba(0,0,0,0.3) !important;
}
.section-light .btn-secondary:hover {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── CARD TITLE VISIBILITY: whitе-on-white fix ── */
/* Light backgrounds need dark text */
.section-light .card h1,
.section-light .card h2,
.section-light .card h3,
.section-light .card h4,
.section-light .card h5,
.section-light h1:not(.hero h1):not(.article-hero-section h1),
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light p,
.section-light li,
.section-light span:not(.text-gradient):not(.badge):not(.tag) {
  color: #111111;
  -webkit-text-fill-color: #111111;
}
/* Exception: badges, tags, section-labels stay their color */
.section-light .section-label,
.section-light .badge,
.section-light .guide-tag,
.section-light .tag {
  color: inherit;
}
/* Exception: gradient text stays gradient */
.section-light .text-gradient,
.section-light h1 .text-gradient,
.section-light h2 .text-gradient,
.section-light h3 .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}
/* Exception: body text in light section is slightly softer */
.section-light p { color: #444444; -webkit-text-fill-color: #444444; }
.section-light li { color: #444444; -webkit-text-fill-color: #444444; }

/* ── DARK SECTIONS: white text ── */
.section h1, .section h2, .section h3, .section h4, .section h5 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
.section p { color: #d4d5d6; }
.section li { color: #d4d5d6; }

/* ── HERO SECTION: always white ── */
.hero h1,
.hero h1 span:not(.text-gradient),
.article-hero-section h1,
.article-hero-section h1 span:not(.text-gradient) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.hero p, .article-hero-section p { color: #d4d5d6 !important; }

/* ── REVIEW BOX: properly centered ── */
.rating-wrap,
.rating-summary,
.reviews-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ── IMAGES: no blur, proper display ── */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
}
.article-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  margin: 1.5rem 0;
}
.guide-card img,
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}
.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
}

/* ── TABLES: force scroll on mobile ── */
@media (max-width: 768px) {
  .table-scroll,
  .ft-wrap,
  .comp-wrap,
  .pg-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  table { min-width: 480px; }
  .comparison-table,
  .comp-table,
  .pg-table,
  .seasonal-table { min-width: 500px; }
}

/* ── VIDEO: always responsive ── */
.yt-embed,
.video-wrap,
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.yt-embed iframe,
.video-wrap iframe,
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* ── NAVIGATION: clean on mobile ── */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-actions .nav-gift-btn { display: none; }
}

/* ── ARTICLE LAYOUT: responsive ── */
@media (max-width: 960px) {
  .article-grid,
  .review-layout {
    grid-template-columns: 1fr !important;
  }
  .review-sidebar,
  .article-sidebar,
  .pg-sidebar {
    position: static !important;
    width: 100% !important;
    order: 0 !important;
  }
}

/* ── GUIDE CARD TITLES: must be visible on white ── */
.guide-card,
.guide-card * {
  box-sizing: border-box;
}
.guide-card-body h3,
.guide-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  margin-bottom: 0.5rem !important;
}
.guide-card-body p,
.guide-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}

/* ── FAQ BUTTON TEXT ── */
.faq-cta .btn-primary { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.faq-cta .btn-secondary { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
/* The FAQ page CTA section is on section-light, buttons need to work */
.section-light .cta-section .btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── GLOBAL OVERFLOW CONTROL ── */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }
section, main, header, footer { max-width: 100%; overflow-x: hidden; }

/* ── FONT SMOOTHING ── */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── SCROLL TO TOP BUTTON ── */
#scrollTop {
  position: fixed !important;
  bottom: 88px !important;
  right: 24px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #111111 !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  z-index: 500 !important;
}
#scrollTop.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed !important;
  bottom: 100px !important;
  right: 24px !important;
  background: var(--bg-card) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 12px !important;
  padding: 12px 18px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  transform: translateX(100px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.toast.show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* ── MOBILE: final catchall ── */
@media (max-width: 480px) {
  h1 { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
  h2 { font-size: clamp(1.2rem, 5vw, 1.6rem) !important; }
  h3 { font-size: clamp(1rem, 4vw, 1.2rem) !important; }
  .btn-lg { padding: 12px 20px !important; font-size: 0.9rem !important; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 2.5rem) !important; -webkit-text-fill-color: #ffffff !important; }
  .container { padding: 0 0.875rem !important; }
  .footer-grid { padding: 0 0.875rem !important; }
  footer .footer-bottom { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
  footer .disclaimer { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
}

/* ── EXTRA SMALL SCREENS (320px) ── */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.4rem !important; }
  .btn-lg { padding: 10px 16px !important; font-size: 0.85rem !important; }
  .hero-stats { gap: 0.5rem !important; }
  .hero-stat .stat-num { font-size: 1.4rem !important; }
}

/* ==========================================================
   GUIDE CARDS & FEATURED CARD — v9 Final
   ========================================================== */

/* ── FEATURED CARD GRID: 2-col desktop, 1-col mobile ── */
.featured-card-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  overflow: hidden !important;
  border-radius: var(--radius) !important;
}
.featured-card-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 280px !important;
  max-height: 380px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
}
.featured-card-body {
  padding: 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}
.featured-card-title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  line-height: 1.4 !important;
  margin-bottom: 0.75rem !important;
}
@media (max-width: 768px) {
  .featured-card-grid {
    grid-template-columns: 1fr !important;
  }
  .featured-card-img {
    min-height: 220px !important;
    max-height: 240px !important;
    border-radius: 0 !important;
  }
  .featured-card-body { padding: 1.5rem !important; }
  .featured-card-title { font-size: 1.05rem !important; }
}

/* ── GUIDE CARD: clean white card ── */
.guide-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  transition: var(--transition) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  display: flex !important;
  flex-direction: column !important;
}
.guide-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12) !important;
  border-color: rgba(0,0,0,0.2) !important;
}
.guide-card > img:not(.featured-card-img) {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
  flex-shrink: 0 !important;
}
.guide-card-body {
  padding: 1.25rem 1.4rem !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.guide-card-body h3,
.guide-card h3:not(.featured-card-title) {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  margin-bottom: 0.5rem !important;
}
.guide-card-body p,
.guide-card p:not(.featured-card-body p) {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
  font-size: 0.86rem !important;
  line-height: 1.55 !important;
  margin-bottom: 0.75rem !important;
  flex: 1 !important;
}
.guide-card-meta {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  font-size: 0.78rem !important;
  color: #777777 !important;
  -webkit-text-fill-color: #777777 !important;
  margin-bottom: 1rem !important;
  flex-wrap: wrap !important;
}
.guide-card-actions {
  display: flex !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
  margin-top: auto !important;
}
.guide-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 3px 10px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  background: rgba(0,0,0,0.05) !important;
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
  margin-bottom: 0.6rem !important;
}

/* ── CATEGORY HEADER: in guides section ── */
.category-header {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1.25rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 2px solid rgba(0,0,0,0.08) !important;
}
.category-header h2 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  margin: 0 0 0.2rem 0 !important;
}
.category-header p {
  font-size: 0.85rem !important;
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
  margin: 0 !important;
}
.category-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  background: rgba(0,0,0,0.07) !important;
}

/* ── GUIDES GRID ── */
.guides-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 1.5rem !important;
  margin-bottom: 2rem !important;
}
@media (max-width: 640px) {
  .guides-grid { grid-template-columns: 1fr !important; }
  .guide-card-actions .btn {
    font-size: 0.8rem !important;
    padding: 8px 14px !important;
  }
}

/* ── GUIDE FILTER BUTTONS ── */
.guides-filter {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  justify-content: center !important;
  margin-bottom: 2rem !important;
}
.filter-btn {
  padding: 7px 18px !important;
  border-radius: 50px !important;
  font-size: 0.83rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  background: #ffffff !important;
  color: #444444 !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
}
.filter-btn:hover,
.filter-btn.active {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: #1a1b1c !important;
}

/* ── GUIDES STATS (in light section) ── */
.guides-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
  margin-bottom: 2.5rem !important;
}
.gs-stat {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--radius) !important;
  padding: 1.25rem 1rem !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
.gs-stat .stat-val {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  display: block !important;
  line-height: 1.2 !important;
}
.gs-stat .stat-lbl {
  font-size: 0.78rem !important;
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
  margin-top: 0.25rem !important;
  display: block !important;
}
@media (max-width: 768px) {
  .guides-stats { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 420px) {
  .guides-stats { grid-template-columns: 1fr 1fr !important; }
  .gs-stat { padding: 1rem 0.75rem !important; }
  .gs-stat .stat-val { font-size: 1.3rem !important; }
}

/* ── GUIDES SEARCH INPUT ── */
.guides-search {
  max-width: 500px !important;
  margin: 0 auto 1.5rem !important;
  position: relative !important;
}
.guides-search input {
  width: 100% !important;
  padding: 14px 50px 14px 18px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  background: #ffffff !important;
  font-size: 0.95rem !important;
  color: #111111 !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}
.guides-search input:focus {
  border-color: #f43f5e !important;
  box-shadow: 0 0 0 3px rgba(244,63,94,0.12) !important;
}
.guides-search .search-icon {
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #999999 !important;
  pointer-events: none !important;
}
@media (max-width: 480px) {
  .guides-search input {
    padding: 11px 40px 11px 14px !important;
    font-size: 0.9rem !important;
  }
}

/* ==========================================================
   FINAL COMPREHENSIVE FIX v10
   Mobile responsiveness + Image quality + Text visibility
   ========================================================== */

/* ── 1. GLOBAL MOBILE FOUNDATION ── */
*, *::before, *::after { box-sizing: border-box !important; }
html, body { overflow-x: hidden !important; max-width: 100vw !important; }
img, video, iframe, embed, object {
  max-width: 100% !important;
  height: auto;
}
img {
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.article-body img,
.article-img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ── 2. HERO SECTION: fully responsive ── */
.hero {
  padding: 90px 0 64px !important;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.hero-img-wrap {
  position: relative;
}
@media (max-width: 1024px) {
  .hero-content { gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero-img-wrap { order: -1; max-width: 500px; margin: 0 auto; }
  .btn-group { justify-content: center !important; flex-wrap: wrap; }
  .hero-stats { justify-content: center !important; }
  .hero-desc { margin: 0 auto 1.5rem !important; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 0 48px !important; }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.5rem) !important; -webkit-text-fill-color: #ffffff !important; }
  .hero-img-wrap { max-width: 100%; }
  .hero-stats { gap: 0.75rem !important; flex-wrap: wrap; }
  .hero-stat { min-width: 80px; }
  .btn-group { flex-direction: column; align-items: center; gap: 0.75rem; }
  .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 400px) {
  .hero { padding: 60px 0 40px !important; }
  .hero h1 { font-size: 1.6rem !important; }
}

/* ── 3. NAVIGATION: clean mobile hamburger ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,27,28,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-actions .btn-sm:not(.btn-primary) { display: none; }
}
@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .nav-gift-btn { display: none !important; }
}

/* ── 4. MOBILE NAVIGATION MENU ── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,27,28,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── 5. DEAL TOPBAR: responsive ── */
.deal-topbar {
  background: linear-gradient(90deg, #f43f5e, #cb1c3a);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 1001;
  line-height: 1.4;
}
.deal-topbar a { color: #ffffff; text-decoration: underline; }
@media (max-width: 600px) {
  .deal-topbar { font-size: 0.78rem; padding: 8px 12px; }
}
@media (max-width: 400px) {
  .deal-topbar { font-size: 0.72rem; padding: 6px 10px; }
}

/* ── 6. CONTAINER: proper responsive padding ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 0.875rem; }
}

/* ── 7. SECTIONS: responsive padding ── */
.section, .section-light {
  padding: 72px 0;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .section, .section-light { padding: 52px 0; }
}
@media (max-width: 480px) {
  .section, .section-light { padding: 40px 0; }
}

/* ── 8. GRIDS: collapse on mobile ── */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
}

/* ── 9. COUPON GRID ── */
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .coupon-grid { grid-template-columns: 1fr; }
  .coupon-card { padding: 1.25rem; }
}

/* ── 10. ARTICLE LAYOUT: sidebar collapses ── */
.article-grid,
.review-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .article-grid,
  .review-layout {
    grid-template-columns: 1fr !important;
  }
  .review-sidebar,
  .article-sidebar,
  .pg-sidebar {
    position: static !important;
    width: 100% !important;
    order: -1;
    max-width: 100%;
  }
}

/* ── 11. ARTICLE BODY: readable on all screens ── */
.article-body {
  min-width: 0;
  overflow: hidden;
}
.article-body h2 { font-size: clamp(1.3rem, 3.5vw, 2rem); margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.article-body p { font-size: clamp(0.9rem, 2vw, 1rem); line-height: 1.75; }
.article-body ul, .article-body ol { padding-left: 0; }
@media (max-width: 600px) {
  .article-body h2 { font-size: 1.3rem; }
  .article-body h3 { font-size: 1.1rem; }
  .article-body { padding: 0 !important; }
}

/* ── 12. TABLES: always scrollable on mobile ── */
.table-wrap,
.ft,
.pg-table,
.comparison-table,
.comp-table,
.seasonal-table,
.key-facts-table,
table {
  max-width: 100%;
}
.table-wrap,
.table-scroll,
.ft-wrap,
.comp-wrap {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  display: block !important;
  width: 100% !important;
}
@media (max-width: 768px) {
  table { min-width: 480px; }
  .key-facts-table { min-width: auto !important; width: 100% !important; }
  .key-facts-table td { padding: 8px 10px; font-size: 0.85rem; }
  td, th { padding: 8px 10px !important; font-size: 0.85rem !important; }
}
@media (max-width: 480px) {
  .key-facts-table td { padding: 6px 8px; font-size: 0.8rem; }
  td, th { padding: 6px 8px !important; font-size: 0.8rem !important; }
}

/* ── 13. KEY FACTS TABLE: wrap on mobile ── */
.key-facts-table {
  width: 100%;
  border-collapse: collapse;
}
.key-facts-table td:first-child {
  white-space: nowrap;
  font-weight: 600;
  min-width: 120px;
}
@media (max-width: 480px) {
  .key-facts-table td:first-child { min-width: 90px; white-space: normal; }
}

/* ── 14. VIDEO EMBEDS: always 16:9 ── */
.yt-embed,
.video-wrap,
.video-container {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 56.25% !important;
  height: 0 !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  background: #000 !important;
  margin: 1.5rem 0 !important;
}
.yt-embed iframe,
.video-wrap iframe,
.video-container iframe,
.yt-embed video,
.video-wrap video {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

/* ── 15. PRICING SECTION: responsive cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .pricing-grid, .plan-cards-grid { grid-template-columns: 1fr !important; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .pricing-grid, .plan-cards-grid { max-width: 100%; }
  .pricing-card { padding: 1.5rem !important; }
}

/* ── 16. PROS/CONS GRID: stack on mobile ── */
.pros-cons-grid,
.before-after,
.vs-grid,
.comp-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .pros-cons-grid,
  .before-after,
  .vs-grid,
  .comp-vs { grid-template-columns: 1fr !important; }
  .vs-divider { display: none !important; }
}

/* ── 17. FEATURE CARDS: clean on all sizes ── */
.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  height: 100%;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .feature-card { padding: 1.25rem; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.2rem; }
}

/* ── 18. REVIEW CARDS: properly spaced ── */
.reviews-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .reviews-grid, .review-grid { grid-template-columns: 1fr !important; }
}
.review-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}
@media (max-width: 480px) {
  .review-card { padding: 1.25rem; }
}

/* ── 19. RATING SUMMARY: centered ── */
.rating-summary,
.rating-box,
.reviews-summary {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rating-bars {
  width: 100%;
  max-width: 400px;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.rating-bar-bg {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
}

/* ── 20. FOOTER: unified design on all pages ── */
footer {
  background: #1a1b1c !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 3.5rem 0 1.5rem !important;
  width: 100% !important;
}
footer .footer-grid,
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 2.5rem !important;
  margin-bottom: 2.5rem;
}
footer .footer-brand .logo,
.footer-brand .logo {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 0.75rem !important;
}
footer .footer-brand p,
.footer-brand p {
  font-size: 0.85rem !important;
  color: #8a8b8e !important;
  -webkit-text-fill-color: #8a8b8e !important;
  max-width: 260px;
  line-height: 1.65;
}
footer .footer-col h4,
.footer-col h4 {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #8a8b8e !important;
  -webkit-text-fill-color: #8a8b8e !important;
  margin-bottom: 1rem !important;
}
footer .footer-col ul li a,
.footer-col ul li a {
  font-size: 0.87rem !important;
  color: #a0a1a4 !important;
  -webkit-text-fill-color: #a0a1a4 !important;
  transition: color 0.2s;
}
footer .footer-col ul li a:hover,
.footer-col ul li a:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-bottom p {
  font-size: 0.82rem !important;
  color: #6a6b6e !important;
  -webkit-text-fill-color: #6a6b6e !important;
  margin: 0;
}
footer .footer-links a {
  font-size: 0.82rem !important;
  color: #6a6b6e !important;
  -webkit-text-fill-color: #6a6b6e !important;
  transition: color 0.2s;
}
footer .footer-links a:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
footer .disclaimer,
.disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  color: #6a6b6e !important;
  -webkit-text-fill-color: #6a6b6e !important;
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.6;
}
footer .disclaimer a { color: #a0a1a4 !important; }
/* Footer responsive */
@media (max-width: 960px) {
  footer .footer-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
  footer .footer-brand,
  .footer-brand { grid-column: 1 / -1 !important; }
}
@media (max-width: 640px) {
  footer .footer-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }
  footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1rem 0;
  }
  footer .disclaimer { padding: 1rem; }
  footer { padding: 2.5rem 0 1.5rem !important; }
}
@media (max-width: 480px) {
  footer .footer-grid,
  .footer-grid { padding: 0 0.875rem !important; }
  footer .footer-bottom { padding: 1rem 0.875rem 0; }
  footer .disclaimer { padding: 0.875rem; }
}

/* ── 21. SOCIAL BUTTONS in footer ── */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.social-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.9rem !important;
  color: #a0a1a4 !important;
  -webkit-text-fill-color: #a0a1a4 !important;
  transition: all 0.2s;
}
.social-btn:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(255,255,255,0.3) !important;
}

/* ── 22. STICKY GIFT WIDGET ── */
.sticky-gift {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}
.sticky-popup {
  width: 260px;
  background: #232425;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
@media (max-width: 480px) {
  .sticky-gift { bottom: 16px; right: 16px; }
  .sticky-popup { width: 240px; }
}
@media (max-width: 360px) {
  .sticky-popup { width: 210px; padding: 1rem; }
}

/* ── 23. SCORE CARD: responsive ── */
.score-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.score-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.score-label {
  width: 130px;
  min-width: 130px;
  font-size: 0.85rem;
  font-weight: 600;
}
.score-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.score-pct {
  width: 30px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
}
@media (max-width: 480px) {
  .score-label { width: 100px; min-width: 100px; font-size: 0.78rem; }
  .score-pct { width: 24px; font-size: 0.78rem; }
  .score-card { padding: 1.25rem; }
}

/* ── 24. INLINE CTA SECTIONS ── */
.inline-cta {
  background: #232425;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.inline-cta h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 0.5rem !important;
}
.inline-cta p {
  color: #c0c1c4 !important;
  -webkit-text-fill-color: #c0c1c4 !important;
  margin-bottom: 1.25rem !important;
}
.section-light .inline-cta {
  background: #1a1b1c !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.section-light .inline-cta h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .inline-cta p {
  color: #c0c1c4 !important;
  -webkit-text-fill-color: #c0c1c4 !important;
}
@media (max-width: 600px) {
  .inline-cta { padding: 1.5rem 1.25rem; }
  .inline-cta h3 { font-size: 1.1rem !important; }
}

/* ── 25. VERDICT BOX ── */
.verdict-box {
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 2px solid rgba(244,63,94,0.3);
  background: rgba(244,63,94,0.05);
  margin: 2rem 0;
}
@media (max-width: 600px) {
  .verdict-box { padding: 1.25rem; }
}

/* ── 26. PULL QUOTE ── */
.pull-quote, blockquote {
  border-left: 4px solid #f43f5e;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
}
@media (max-width: 600px) {
  .pull-quote, blockquote { padding: 0.75rem 1rem; font-size: 0.95rem; }
}

/* ── 27. BREADCRUMBS: responsive ── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #8a8b8e;
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: #8a8b8e; }
.breadcrumb a:hover { color: #ffffff; }

/* ── 28. ARTICLE HERO SECTION: responsive ── */
.article-hero-section {
  padding: 80px 0 40px !important;
  background: var(--bg-dark) !important;
}
.article-hero-content {
  max-width: 800px;
}
@media (max-width: 768px) {
  .article-hero-section { padding: 70px 0 32px !important; }
  .article-hero-section h1 { font-size: clamp(1.5rem, 5vw, 2.2rem) !important; }
}
@media (max-width: 480px) {
  .article-hero-section { padding: 60px 0 24px !important; }
  .article-hero-section h1 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }
}

/* ── 29. ARTICLE HERO IMAGE: responsive ── */
.article-hero-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  object-fit: cover !important;
  display: block !important;
}
@media (max-width: 768px) {
  .article-hero-img { max-height: 300px; object-fit: cover; }
}
@media (max-width: 480px) {
  .article-hero-img { max-height: 220px; }
}

/* ── 30. TOC CARD: responsive ── */
.toc-card {
  background: #232425;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.toc-card h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 0.75rem !important;
}
.toc-card ul { padding: 0; }
.toc-card ul li { margin-bottom: 0.4rem; }
.toc-card ul li a { color: #a0a1a4 !important; font-size: 0.88rem; }
.toc-card ul li a:hover { color: #ffffff !important; }
.section-light .toc-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .toc-card h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .toc-card ul li a {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}

/* ── 31. SIDEBAR: responsive ── */
.review-sidebar,
.article-sidebar,
.pg-sidebar {
  min-width: 0;
}
.sidebar-widget {
  background: #232425;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 1rem !important;
}
.section-light .sidebar-widget {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .sidebar-widget h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ── 32. FAQ PAGE: accordion ── */
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.section-light .faq-item {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.section-light .faq-question {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.93rem;
  line-height: 1.7;
}
.section-light .faq-answer-inner p,
.section-light .faq-answer-inner {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
@media (max-width: 600px) {
  .faq-question { padding: 0.875rem 1rem; font-size: 0.93rem; }
  .faq-answer-inner { padding: 0 1rem 0.875rem; }
}

/* ── 33. HERO FLOATING CARDS: hide on small screens ── */
@media (max-width: 900px) {
  .hero-floating-card { display: none !important; }
}

/* ── 34. COMPARISON TABLE: MOBILE ── */
.comparison-table,
.comp-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td,
.comp-table th,
.comp-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-light .comparison-table th,
.section-light .comparison-table td {
  border-color: rgba(0,0,0,0.08);
  color: #111111 !important;
}
@media (max-width: 600px) {
  .comparison-table th,
  .comparison-table td { padding: 8px 10px; font-size: 0.82rem; }
}

/* ── 35. BLOG CARDS: consistent on all themes ── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 1.25rem; }
.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--text-secondary) !important;
  -webkit-text-fill-color: var(--text-secondary) !important;
}
.section-light .blog-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-light .blog-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .blog-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.section-light .blog-card-meta,
.section-light .blog-tag {
  color: #777777 !important;
  -webkit-text-fill-color: #777777 !important;
}

/* ── 36. GUIDE CARDS: always visible text ── */
.guide-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.guide-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.guide-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.guide-card .guide-tag { color: #444444 !important; -webkit-text-fill-color: #444444 !important; }
.guide-card .guide-card-meta { color: #777777 !important; -webkit-text-fill-color: #777777 !important; }

/* ── 37. IMAGE QUALITY: no blur ── */
img {
  image-rendering: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: auto;
}
.hero-img,
.article-hero-img,
.featured-card-img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ── 38. TRUST BAR: responsive ── */
.trust-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  font-size: 0.82rem;
  color: #a0a1a4 !important;
  -webkit-text-fill-color: #a0a1a4 !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .trust-bar-inner { gap: 0.75rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 1rem; }
  .trust-bar { padding: 10px 0; }
}
@media (max-width: 480px) {
  .trust-item { font-size: 0.76rem; }
}

/* ── 39. COUNTDOWN SECTION: responsive ── */
.countdown-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.countdown-timer {
  display: flex;
  gap: 1rem;
}
.countdown-unit {
  text-align: center;
  min-width: 60px;
}
@media (max-width: 600px) {
  .countdown-bar { flex-direction: column; text-align: center; }
  .countdown-timer { justify-content: center; flex-wrap: wrap; }
  .countdown-unit { min-width: 50px; }
}

/* ── 40. PLAN BADGE + PILLS ── */
.pricing-badge, .plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.model-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  margin: 3px;
}
.models-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ── 41. STEP CARDS: clean layout ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { padding: 1.25rem; }
}

/* ── 42. HERO STATS: responsive ── */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-stat {
  text-align: left;
}
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.8rem;
  color: #a0a1a4 !important;
  -webkit-text-fill-color: #a0a1a4 !important;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .hero-stats { gap: 1rem; justify-content: center; }
  .hero-stat { text-align: center; }
  .stat-num { font-size: 1.4rem; }
}

/* ── 43. HIGHLIGHT ITEMS ── */
.highlight-item {
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.hi-icon { font-size: 1.5rem; flex-shrink: 0; }
.hi-val {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}
.hi-label { font-size: 0.82rem; margin-top: 2px; }
@media (max-width: 480px) {
  .highlight-item { padding: 1rem; }
  .hi-val { font-size: 1.2rem; }
}

/* ── 44. CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
}
.cta-section h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 1rem;
}
.cta-section p {
  color: #c0c1c4 !important;
  -webkit-text-fill-color: #c0c1c4 !important;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .cta-section { padding: 2.5rem 1.25rem; }
  .cta-section h2 { font-size: clamp(1.3rem, 4vw, 1.8rem) !important; }
}

/* ── 45. FINAL OVERFLOW GUARD ── */
.article-block-dark,
.article-block-light,
section,
main,
header,
footer,
.container,
.container-lg {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ── 46. SAVIGNS WIDGET ── */
.savings-widget { padding: 1.5rem; border-radius: var(--radius); }
.savings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-light .savings-row { border-color: rgba(0,0,0,0.08); }
.savings-row:last-of-type { border-bottom: none; }
@media (max-width: 480px) {
  .savings-widget { padding: 1.1rem; }
  .savings-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}

/* ── 47. COUPON CODE BOX ── */
.coupon-code-box {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin: 0.75rem 0;
  gap: 0.5rem;
}
.section-light .coupon-code-box {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.15);
}
.code, .code-auto {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .code,
.section-light .code-auto {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
@media (max-width: 400px) {
  .coupon-code-box { padding: 0.625rem 0.75rem; }
  .code, .code-auto { font-size: 0.8rem; }
}

/* ── 48. PROGRESS BARS ── */
.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #f43f5e, #f74d6a);
  border-radius: 4px;
  transition: width 1s ease;
}
.section-light .progress-bar-bg { background: rgba(0,0,0,0.1); }

/* ── 49. SCROLL-TO-TOP (superseded by final block below) ── */
/* NOTE: The definitive #scrollTop rules are in the ABSOLUTE FINAL FIX block */

/* ── 50. FINAL RESPONSIVE CATCH-ALL ── */
@media (max-width: 768px) {
  /* All side-by-side elements stack on tablet */
  .two-col, .split-layout {
    flex-direction: column !important;
  }
  /* Ensure no horizontal overflow */
  * { max-width: 100%; }
  img, video, iframe { max-width: 100%; }
  /* Section padding */
  .section-title { font-size: clamp(1.4rem, 4vw, 2rem); }
  .section-subtitle { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  /* Ultra-small screens */
  .section-label { font-size: 0.72rem; padding: 4px 12px; }
  .btn { font-size: 0.85rem; padding: 10px 18px; }
  .btn-lg { font-size: 0.9rem !important; padding: 12px 20px !important; }
  h1 { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
  h2 { font-size: clamp(1.2rem, 5vw, 1.6rem) !important; }
  h3 { font-size: clamp(1rem, 4vw, 1.2rem) !important; }
}

/* ==========================================================
   ARTICLE BODY IN LIGHT SECTION — Critical text color fixes
   ========================================================== */
/* Article text must be dark in section-light (white background) */
.section-light .article-body h2,
.section-light .article-body h3,
.section-light .article-body h4 {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
}
.section-light .article-body p {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
.section-light .article-body ul li,
.section-light .article-body ol li {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
.section-light .article-body .intro-lead {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  background: rgba(0,0,0,0.04) !important;
  border-left-color: rgba(0,0,0,0.2) !important;
}
/* Key facts table in article on light section */
.section-light .key-facts-table td {
  background: #ffffff !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.section-light .key-facts-table td:first-child {
  background: #f5f5f5 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 700;
}
.section-light .key-facts-table {
  border-color: rgba(0,0,0,0.1) !important;
}
/* Score card in light section */
.section-light .score-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .score-card .score-title {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.section-light .score-label {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
.section-light .score-bar-wrap {
  background: rgba(0,0,0,0.1) !important;
}
.section-light .final-score {
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .final-score .fs-label {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Inline CTA stays dark in light section */
.section-light .inline-cta {
  background: #1a1b1c !important;
}
.section-light .inline-cta h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .inline-cta p {
  color: #c0c1c4 !important;
  -webkit-text-fill-color: #c0c1c4 !important;
}
/* Step boxes in light section */
.section-light .step-box {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .step-box-body h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .step-box-body p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
.section-light .step-box .step-num {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* Capabilities box */
.section-light .capabilities-box {
  background: #f8f8f8 !important;
  border-color: rgba(0,0,0,0.15) !important;
  border-left-color: #1a1b1c !important;
}
.section-light .capabilities-box h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Comparison vs card */
.section-light .comp-vs-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .comp-vs-card .tool-name {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.section-light .comp-vs-card h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .comp-vs-card p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
/* Use case cards */
.section-light .use-case-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .use-case-card h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .use-case-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
/* Workflow cards */
.section-light .workflow-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .workflow-card .wf-badge {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .workflow-card h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .workflow-card p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
/* Feature tables (ft) */
.section-light .ft th {
  background: #f0f1f2 !important;
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.section-light .ft th.gs {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .ft td {
  background: #ffffff !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  border-color: rgba(0,0,0,0.06) !important;
}
.section-light .ft td:first-child {
  background: #f5f5f5 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .ft td.gs {
  background: rgba(26,27,28,0.04) !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 600;
}
/* Pros/cons boxes */
.section-light .pros-box,
.section-light .cons-box {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .pros-box li,
.section-light .cons-box li {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
/* Verdict box */
.section-light .verdict-box {
  background: #f8f8f8 !important;
  border-color: rgba(0,0,0,0.15) !important;
}
.section-light .verdict-box h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Pull quote */
.section-light .pull-quote {
  background: rgba(0,0,0,0.03) !important;
  border-left-color: rgba(0,0,0,0.2) !important;
  color: #222222 !important;
  -webkit-text-fill-color: #222222 !important;
}
.section-light .pull-quote cite {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
/* Article caption */
.section-light .article-img-caption {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
/* Sidebar in light section */
.section-light .sidebar-deal-card {
  background: #1a1b1c !important;
}
.section-light .sidebar-rating {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .sidebar-rating .sr-score {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .sidebar-rating .sr-label {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
/* Author strip in hero (stays dark BG) */
.article-hero-section .review-avatar { background: #f43f5e; color: #ffffff; }

/* ==========================================================
   COMPARISON/FEATURE TABLES on all article pages
   ========================================================== */
.comparison-table-wrap,
.pg-table-wrap,
.ft-wrap {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  border-radius: var(--radius) !important;
  margin: 1.5rem 0 !important;
  width: 100% !important;
}
.section-light .comparison-table-wrap,
.section-light .pg-table-wrap,
.section-light .ft-wrap {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
/* All images in articles: always sharp */
.article-body img,
.article-img {
  image-rendering: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ==========================================================
   MOBILE NAV - Final overrides
   ========================================================== */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
}
/* Ensure body scroll is locked when mobile nav is open */
body.nav-open { overflow: hidden; }

/* ==========================================================
   BUTTON VISIBILITY — Final Pass (preserve original design)
   ========================================================== */
/* Primary button: white bg + black text on DARK sections (original design) */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  border: none !important;
  font-weight: 700 !important;
}
.btn-primary:hover,
a.btn-primary:hover {
  background: #f0f1f2 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Dark section = keep white */
.section .btn-primary,
.hero .btn-primary,
.article-hero-section .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Light section = dark button */
.section-light .btn-primary,
.section-light a.btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .btn-primary:hover {
  background: #333333 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* CTA sections: keep white */
.cta-section .btn-primary,
.inline-cta .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Secondary: transparent with border */
.btn-secondary,
a.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
}
.btn-secondary:hover,
a.btn-secondary:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #ffffff !important;
}
.section-light .btn-secondary,
.section-light a.btn-secondary {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  border-color: rgba(0,0,0,0.25) !important;
}
/* Gift button */
.btn-gift {
  background: rgba(255,255,255,0.1) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.btn-gift:hover {
  background: rgba(255,255,255,0.2) !important;
}
/* Claim button */
.btn-claim {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ==========================================================
   GUIDE FEATURED CARD — complete layout fix
   ========================================================== */
.guide-featured-card,
.featured-review-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.guide-featured-card .featured-img,
.featured-review-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.guide-featured-card .featured-body,
.featured-review-card .card-body {
  padding: 2rem;
}
.guide-featured-card h2,
.guide-featured-card h3,
.featured-review-card h2,
.featured-review-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.guide-featured-card p,
.featured-review-card p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
@media (max-width: 768px) {
  .guide-featured-card .featured-img { height: 200px; }
  .guide-featured-card .featured-body { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .guide-featured-card .featured-img { height: 160px; }
  .guide-featured-card .featured-body { padding: 1.25rem; }
}

/* ==========================================================
   GUIDES PAGE SECTION FIX
   ========================================================== */
/* Guides page is section-light, all cards need dark text */
#guidesContainer .guide-card,
.guides-section .guide-card {
  background: #ffffff !important;
}
#guidesContainer .guide-card h3,
.guides-section .guide-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
#guidesContainer .guide-card p,
.guides-section .guide-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
/* Guides filter bar */
.guides-filter .filter-btn {
  -webkit-text-fill-color: #444444;
}
.guides-filter .filter-btn.active,
.guides-filter .filter-btn:hover {
  -webkit-text-fill-color: #ffffff !important;
}

/* [v11 fix moved to end of file — see bottom of stylesheet] */
/* Old v11 section-label fix (superseded by v12 at EOF): */
.coupon-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 2rem 1.5rem !important;
  background: var(--bg-card, #1e1f20) !important;
  border: 1px solid var(--border, rgba(255,255,255,0.1)) !important;
  border-radius: var(--radius-lg, 16px) !important;
  height: 100% !important;
  overflow: visible !important;
}
.coupon-card .coupon-badge {
  align-self: center !important;
  margin-bottom: 0.75rem !important;
}
.coupon-card .coupon-deal-amount {
  text-align: center !important;
  width: 100% !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  margin-bottom: 0.5rem !important;
}
.coupon-card h3 {
  text-align: center !important;
  width: 100% !important;
}
.coupon-card .coupon-desc {
  text-align: center !important;
  width: 100% !important;
}
.coupon-card .coupon-code-box {
  width: 100% !important;
  justify-content: center !important;
}
.coupon-card .coupon-expiry {
  text-align: center !important;
  width: 100% !important;
}
.coupon-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}

/* ──────────────────────────────────────────────────────────
   3. SCROLL-TO-TOP ARROW BUTTON
   Already has onclick in HTML — ensure CSS visibility
   ────────────────────────────────────────────────────────── */
#scrollTop {
  position: fixed !important;
  bottom: 88px !important;
  right: 24px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  z-index: 500 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 16px rgba(244,63,94,0.35) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px) !important;
  transition: all 0.3s ease !important;
}
#scrollTop.visible {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateY(0) !important;
}
#scrollTop:hover {
  background: #e03354 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(244,63,94,0.45) !important;
}
#scrollTop i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ──────────────────────────────────────────────────────────
   4. TABLE HEADERS: White text on dark background
   Applies to ALL tables site-wide (dark AND light sections)
   ────────────────────────────────────────────────────────── */
table thead th,
.comparison-table thead th,
.key-facts-table thead th,
.seasonal-deals-table thead th,
.ft thead th,
.table-wrap table thead th,
.article-block table thead th,
.article-block-light table thead th,
.section-light table thead th,
.section-light .comparison-table thead th,
.section-light .key-facts-table thead th,
.section-light .ft thead th {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 0.85rem 1rem !important;
  border-color: rgba(255,255,255,0.1) !important;
  white-space: nowrap !important;
}
/* Highlighted column header — slightly different shade */
table thead th.highlight,
.comparison-table thead th.highlight {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ──────────────────────────────────────────────────────────
   5. TABLES: Eliminate right-side whitespace, uniform sizing
   ────────────────────────────────────────────────────────── */
.table-wrap {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin: 1.5rem 0 !important;
  border-radius: var(--radius, 12px) !important;
}
table,
.comparison-table,
.key-facts-table,
.seasonal-deals-table,
.ft {
  width: 100% !important;
  table-layout: auto !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 0 !important;
}
table td,
table th {
  padding: 0.75rem 1rem !important;
  vertical-align: middle !important;
}
/* Light section table body cells */
.section-light table tbody td,
.section-light .comparison-table tbody td {
  background: #ffffff !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
/* Highlighted column cell */
.section-light table tbody td.highlight-col,
.section-light .comparison-table tbody td.highlight-col {
  background: rgba(244,63,94,0.04) !important;
}
/* Dark section table body cells */
.section table tbody td,
table tbody td {
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
/* Table hover rows */
.section-light table tbody tr:hover td {
  background: #f5f6f7 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
table tbody tr:hover td {
  background: rgba(255,255,255,0.06) !important;
}

/* ──────────────────────────────────────────────────────────
   6. EQUAL CARD STRUCTURE AND SIZE
   All card types: flex column, equal height in grids
   ────────────────────────────────────────────────────────── */
.coupon-card,
.pricing-card,
.feature-card,
.stat-card,
.review-card,
.guide-card,
.blog-card,
.step-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
/* Grid alignment for equal height */
.coupon-grid,
.pricing-grid,
.features-grid,
.stats-grid,
.reviews-grid,
.guides-grid-all,
.blog-grid {
  align-items: stretch !important;
}
/* Card last element margin auto for bottom alignment */
.coupon-card .btn,
.coupon-card a[class*="btn"],
.pricing-card .btn,
.pricing-card a[class*="btn"],
.feature-card .btn,
.feature-card a[class*="btn"],
.guide-card .guide-card-actions {
  margin-top: auto !important;
}
/* Spacing between text and button in cards */
.pricing-card .btn,
.pricing-card a[class*="btn"],
.feature-card .btn,
.feature-card a[class*="btn"],
.coupon-card .btn,
.coupon-card a[class*="btn"] {
  margin-top: auto !important;
  padding-top: 0 !important;
}
.pricing-card .pricing-features {
  flex: 1 !important;
  margin-bottom: 1.25rem !important;
}
.feature-card p,
.guide-card p {
  flex: 1 !important;
}
/* Ensure guide cards have consistent size */
.guides-grid-all {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 1.5rem !important;
}

/* ──────────────────────────────────────────────────────────
   7. FAQ ANSWERS: Center-align within cards
   ────────────────────────────────────────────────────────── */
.faq-item {
  margin-bottom: 0.75rem !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--radius, 12px) !important;
  overflow: hidden !important;
  background: #ffffff !important;
}
.faq-question {
  width: 100% !important;
  text-align: left !important;
  padding: 1.1rem 1.5rem !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  background: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.35s ease !important;
}
.faq-answer.open {
  max-height: 600px !important;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem !important;
  text-align: center !important;
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
}
.faq-list {
  max-width: 800px !important;
  margin: 0 auto !important;
}

/* ──────────────────────────────────────────────────────────
   8. PRICING PAGE FIXES
   - Style similar to home page pricing section
   - Category below hero (already in HTML order)
   - Remove vertical line (scrollProgress)
   - Table header white text
   - Spacing between text and button in cards
   ────────────────────────────────────────────────────────── */
/* Remove scroll progress vertical line */
#scrollProgress {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
}
/* Pricing toggle matches home page */
.pricing-toggle {
  display: inline-flex !important;
  background: #1a1b1c !important;
  border-radius: 50px !important;
  padding: 4px !important;
  gap: 0 !important;
}
.pricing-toggle button {
  padding: 10px 24px !important;
  border-radius: 50px !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  background: transparent !important;
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
  transition: all 0.25s ease !important;
}
.pricing-toggle button.active {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(244,63,94,0.3) !important;
}
.pricing-badge {
  background: rgba(255,255,255,0.25) !important;
  color: inherit !important;
  font-size: 0.72rem !important;
  padding: 2px 8px !important;
  border-radius: 20px !important;
  margin-left: 6px !important;
}
/* Pricing cards spacing */
.pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 1.5rem !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}
.pricing-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: var(--radius-lg, 16px) !important;
  padding: 2rem 1.5rem !important;
  text-align: center !important;
  position: relative !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}
.pricing-card.featured {
  border: 2px solid #f43f5e !important;
  box-shadow: 0 8px 32px rgba(244,63,94,0.15) !important;
  transform: scale(1.02) !important;
}
/* Pricing card text colors for light section */
.section-light .pricing-card .plan-name {
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 0.5rem !important;
}
.section-light .pricing-card .price {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-size: 3rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}
.section-light .pricing-card .price sup {
  font-size: 1.2rem !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .pricing-card .price-period {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
  font-size: 0.85rem !important;
  margin-top: 0.25rem !important;
}
.section-light .pricing-card .price-original {
  color: #999999 !important;
  -webkit-text-fill-color: #999999 !important;
  text-decoration: line-through !important;
  font-size: 0.85rem !important;
}
.section-light .pricing-card .price-save {
  display: inline-block !important;
  background: rgba(244,63,94,0.1) !important;
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  margin-top: 0.5rem !important;
}
.pricing-card .divider {
  height: 1px !important;
  background: rgba(0,0,0,0.08) !important;
  margin: 1.25rem 0 !important;
  border: none !important;
}
.pricing-card .pricing-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.25rem !important;
  text-align: left !important;
  flex: 1 !important;
}
.pricing-card .pricing-features li {
  padding: 0.4rem 0 !important;
  font-size: 0.88rem !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  display: flex !important;
  gap: 8px !important;
  align-items: flex-start !important;
}
.popular-tag {
  position: absolute !important;
  top: -1px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 4px 16px !important;
  border-radius: 0 0 10px 10px !important;
}

/* ──────────────────────────────────────────────────────────
   9. REVIEW PAGE: Remove scroll/reveal animation
   All reveal elements are immediately visible
   ────────────────────────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ──────────────────────────────────────────────────────────
   10. GUIDES PAGE COMPREHENSIVE FIX
   - Button and card text colors visible (light color)
   - Remove extra whitespace in table right corner
   - On row hover, dark text for readability
   - Proper spacing and center-aligned FAQ cards
   - Remove gradient background, use solid color
   - Adjust text color for visibility
   ────────────────────────────────────────────────────────── */
/* Guide card buttons: visible colors on light section */
.section-light .guide-card .btn-primary,
.section-light .guide-card a.btn-primary,
#guidesContainer .guide-card .btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  font-weight: 600 !important;
}
.section-light .guide-card .btn-primary:hover,
#guidesContainer .guide-card .btn-primary:hover {
  background: #333333 !important;
}
.section-light .guide-card .btn-secondary,
.section-light .guide-card a.btn-secondary,
#guidesContainer .guide-card .btn-secondary {
  background: transparent !important;
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  border: 1.5px solid rgba(0,0,0,0.25) !important;
  font-weight: 600 !important;
}
.section-light .guide-card .btn-secondary:hover,
#guidesContainer .guide-card .btn-secondary:hover {
  background: rgba(0,0,0,0.06) !important;
  border-color: #1a1b1c !important;
}
/* Guide card text: dark, visible colors */
.guide-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  margin-bottom: 0.5rem !important;
}
.guide-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
}
.guide-card .guide-card-meta {
  color: #777777 !important;
  -webkit-text-fill-color: #777777 !important;
  font-size: 0.78rem !important;
}
.guide-card .guide-tag {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
}
/* Guide card actions spacing */
.guide-card .guide-card-actions {
  display: flex !important;
  gap: 0.75rem !important;
  margin-top: auto !important;
  padding-top: 1rem !important;
  flex-wrap: wrap !important;
}

/* Guides table: row hover with dark text */
.section-light table tbody tr:hover td,
#guidesContainer table tbody tr:hover td {
  background: #f0f1f2 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* Remove ALL gradient backgrounds, use solid */
.hero,
.cta-section,
section[style*="background"] {
  background-image: none !important;
}
/* Solid backgrounds */
body {
  background: #111213 !important;
}
.cta-section {
  background: #1a1b1c !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--radius-lg, 16px) !important;
  padding: 3rem 2rem !important;
  text-align: center !important;
}
.cta-section h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.cta-section p {
  color: #c0c1c4 !important;
  -webkit-text-fill-color: #c0c1c4 !important;
}

/* ──────────────────────────────────────────────────────────
   11. VERTICAL LINE REMOVAL (scroll progress bar)
   Remove from ALL pages
   ────────────────────────────────────────────────────────── */
#scrollProgress,
.scroll-progress,
[class*="scroll-progress"],
[id*="scrollProgress"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* ──────────────────────────────────────────────────────────
   12. REVIEW CARDS: Equal structure
   ────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}
.review-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--radius, 12px) !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.section-light .review-card .review-text {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  flex: 1 !important;
}
.section-light .review-card .review-source {
  color: #777777 !important;
  -webkit-text-fill-color: #777777 !important;
  font-size: 0.78rem !important;
  margin-top: auto !important;
}
.review-card .review-stars {
  color: #f5c518 !important;
  -webkit-text-fill-color: #f5c518 !important;
  margin-bottom: 0.75rem !important;
}
.section-light .review-card .name {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .review-card .role {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}

/* ──────────────────────────────────────────────────────────
   13. GLOBAL OVERFLOW FIX — Prevent horizontal scroll
   ────────────────────────────────────────────────────────── */
html {
  overflow-x: hidden !important;
}
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
*,
*::before,
*::after {
  box-sizing: border-box !important;
}
section, main, header, footer, .container {
  max-width: 100% !important;
  overflow-x: hidden !important;
}
/* Except tables which need horizontal scroll */
.table-wrap {
  overflow-x: auto !important;
}

/* ──────────────────────────────────────────────────────────
   14. STATS & FEATURE CARDS in light section
   ────────────────────────────────────────────────────────── */
.section-light .stat-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
}
.section-light .stat-card .stat-value,
.section-light .stat-card .stat-number {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .stat-card .stat-label {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
.section-light .feature-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--radius, 12px) !important;
  padding: 1.5rem !important;
}
.section-light .feature-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .feature-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}

/* ──────────────────────────────────────────────────────────
   15. RESPONSIVE — Mobile adjustments for all fixes
   ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .coupon-grid,
  .pricing-grid,
  .reviews-grid,
  .guides-grid-all {
    grid-template-columns: 1fr !important;
  }
  .pricing-card.featured {
    transform: none !important;
  }
  .cta-section {
    padding: 2rem 1.25rem !important;
  }
  .faq-question {
    padding: 1rem 1.25rem !important;
    font-size: 0.9rem !important;
  }
  .faq-answer-inner {
    padding: 0 1.25rem 1rem !important;
    font-size: 0.88rem !important;
  }
  table td,
  table th {
    padding: 0.6rem 0.75rem !important;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 480px) {
  .coupon-card {
    padding: 1.5rem 1rem !important;
  }
  .coupon-card .coupon-deal-amount {
    font-size: 1.8rem !important;
  }
  .pricing-card {
    padding: 1.5rem 1rem !important;
  }
  .pricing-card .price {
    font-size: 2.5rem !important;
  }
}

*/
/* ── END FINAL DEFINITIVE FIX v11 (old location) ── */

/* ==========================================================
   REVIEWS PAGE: rating summary centered
   ========================================================== */
.reviews-header,
.rating-summary-box {
  text-align: center;
}
.rating-number {
  font-size: 4rem;
  font-weight: 900;
  color: #f43f5e;
  -webkit-text-fill-color: #f43f5e;
  line-height: 1;
}
.rating-stars-large { font-size: 1.5rem; color: #f5c518; }
.rating-count { font-size: 0.88rem; color: var(--text-muted); }
/* Stars always gold */
.review-stars, .sr-stars, .star-filled { color: #f5c518 !important; }

/* ==========================================================
   PRICING PAGE SPECIFIC
   ========================================================== */
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card.featured {
  transform: scale(1.03);
  border-color: #f43f5e !important;
}
@media (max-width: 900px) {
  .pricing-card.featured { transform: scale(1); }
}
.plan-name { font-size: 1.2rem; font-weight: 700; }
.price { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.price-period { font-size: 0.85rem; opacity: 0.8; }
.pricing-features { margin: 1.25rem 0; }
.pricing-features li {
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.pricing-features li::before {
  content: '✓';
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================
   FAQ PAGE SPECIFIC
   ========================================================== */
.faq-grid {
  display: grid;
  gap: 1.5rem;
}
.faq-category {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-category-header {
  padding: 1rem 1.25rem;
  background: #f5f5f5;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-category-header h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-size: 1rem;
  margin: 0;
}

/* ==========================================================
   ABOUT PAGE: text visibility
   ========================================================== */
.about-section p, .about-content p {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
.about-section h2, .about-content h2 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ==========================================================
   IMAGE LOADING STATES
   ========================================================== */
img:not([src]),
img[src=""],
img[src*="placeholder"] {
  background: linear-gradient(135deg, #2a2b2c, #333435);
  min-height: 200px;
}
.section-light img:not([src]),
.section-light img[src=""] {
  background: linear-gradient(135deg, #e8e9ea, #f0f1f2);
}

/* ==========================================================
   DEAL TOPBAR: padded below fixed header
   ========================================================== */
body {
  padding-top: 0;
}
.page-wrap {
  padding-top: 0;
}
/* Main header height compensation */
main, .main-content {
  padding-top: 0;
}

/* ==========================================================
   FULL-WIDTH DESKTOP LAYOUT — v11
   Ensures proper use of space on 1440px+ screens
   ========================================================== */

/* Sections stretch full width, only inner content is capped */
.section,
.section-light,
.section-alt,
.hero,
footer,
#header {
  width: 100%;
}

/* Container is the centering mechanism — not sections */
.container {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  width: 100%;
}
.container-lg {
  max-width: 1560px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  width: 100%;
}

/* On very large screens give even more breathing room */
@media (min-width: 1600px) {
  .container {
    max-width: 1480px !important;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .container-lg {
    max-width: 1720px !important;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .hero-content {
    gap: 5rem;
  }
  .hero h1 {
    font-size: 52px !important;
  }
  .hero-img {
    max-width: 620px !important;
  }
}

/* Hero spans full section width */
.hero {
  width: 100%;
  box-sizing: border-box;
}

/* Ensure all section backgrounds go edge-to-edge */
.section::before,
.section::after,
.section-light::before,
.section-light::after {
  width: 100%;
}

/* Footer always full-width background, inner content capped */
footer {
  width: 100% !important;
  box-sizing: border-box;
}
footer .footer-grid,
footer > .footer-grid {
  max-width: 1320px !important;
  padding: 0 2rem !important;
}
footer .footer-bottom,
footer .disclaimer {
  max-width: 1320px !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

/* Fix the mobile catch-all that wrongly limits desktop max-width */
/* (The * { max-width: 100% } only runs at ≤768px — correct) */

/* Article pages: wider layout on desktop */
.review-layout,
.article-grid {
  grid-template-columns: 1fr 340px !important;
  max-width: 100%;
}

/* Responsive containers at intermediate breakpoints */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px !important;
  }
  .container-lg {
    max-width: 1400px !important;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .container-lg {
    max-width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (max-width: 900px) {
  .review-layout,
  .article-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  .container,
  .container-lg {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}
@media (max-width: 480px) {
  .container,
  .container-lg {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ==========================================================
   SAVINGS SECTION — Redesigned Layout
   ========================================================== */

/* 6-stat grid: 3 columns × 2 rows */
.hi-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.hi-grid-6 .highlight-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.hi-grid-6 .highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.2);
}
.hi-grid-6 .hi-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.hi-grid-6 .hi-val  { font-size: 1.5rem; font-weight: 800; color: #111111; line-height: 1.1; margin-bottom: 0.3rem; }
.hi-grid-6 .hi-label{ font-size: 0.78rem; color: #666666; line-height: 1.4; }

/* Savings table + progress bars side by side */
.savings-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.savings-widget {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.savings-progress {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
/* Progress bars text visible on white bg */
.savings-progress .progress-header span:first-child {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  font-weight: 600;
}
.savings-progress .prog-pct {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 700;
}
.savings-progress .progress-bar-bg {
  background: rgba(0,0,0,0.08) !important;
}
.savings-progress .progress-bar-fill {
  background: linear-gradient(90deg, #f43f5e, #cb1c3a) !important;
}
/* Savings widget text on white */
.savings-widget .savings-row .tool-name {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
.savings-widget .savings-row .tool-price {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.savings-widget .savings-row {
  border-bottom-color: rgba(0,0,0,0.08) !important;
}
.savings-widget .savings-total {
  border-top-color: rgba(0,0,0,0.12) !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.savings-widget .savings-total .vs {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* Responsive */
@media (max-width: 960px) {
  .hi-grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hi-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .savings-split { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .hi-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hi-grid-6 .hi-val { font-size: 1.2rem; }
  .hi-grid-6 .hi-icon { font-size: 1.4rem; }
}

/* ==========================================================
   SKIP TO CONTENT — accessibility
   ========================================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #f43f5e;
  color: #ffffff;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* ==========================================================
   FULL-WIDTH DESKTOP FIX v11
   Make the site truly full-width on all screen sizes
   ========================================================== */

/* ── 1. ROOT / BODY: no artificial max-width cap ── */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* ── 2. ALL SECTIONS: 100% width, no side clipping ── */
.hero,
.section,
.section-light,
.section-alt,
.trust-bar,
.deal-topbar,
footer,
header {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ── 3. CONTAINER: wider cap, responsive padding ── */
.container {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1rem, 4vw, 3rem) !important;
  padding-right: clamp(1rem, 4vw, 3rem) !important;
  box-sizing: border-box !important;
}
.container-lg {
  max-width: 1440px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1rem, 4vw, 3rem) !important;
  padding-right: clamp(1rem, 4vw, 3rem) !important;
  box-sizing: border-box !important;
}

/* ── 4. HERO SECTION: truly full-width dark background ── */
.hero {
  width: 100% !important;
  background: #1a1b1c !important;
  padding: 100px 0 80px !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 560px !important;
}

/* ── 5. HERO CONTENT: balanced 2-column on desktop ── */
.hero-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
  width: 100% !important;
}

/* ── 6. HERO TEXT: left aligned on desktop ── */
.hero-text {
  text-align: left !important;
}

/* ── 7. HERO H1: large on desktop ── */
.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1.25rem !important;
}
.hero h1 .text-gradient {
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
.hero h1 span { display: block !important; }

/* ── 8. HERO IMAGE: full right-column ── */
.hero-img-wrap {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}
@media (max-width: 480px) {
  .hero-img-wrap { display: none !important; }
}
.hero-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  display: block !important;
  object-fit: cover !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
  position: relative !important;
  z-index: 1 !important;
}

/* ── 9. DEAL TOPBAR: always red/branded, full width ── */
.deal-topbar {
  width: 100% !important;
  background: linear-gradient(90deg, #e02a4a, #f43f5e) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-bottom: none !important;
  padding: 10px 20px !important;
  text-align: center !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  z-index: 1001 !important;
  position: relative !important;
  box-sizing: border-box !important;
}
.deal-topbar * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.deal-topbar a {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
}
.deal-topbar strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── 10. HEADER: truly full-width ── */
header#header {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(26,27,28,0.97) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}
header#header .container {
  max-width: 1280px !important;
}

/* ── 11. NAVBAR: full-width inner layout ── */
.navbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 0 !important;
  width: 100% !important;
}

/* ── 12. SECTIONS: full-width backgrounds ── */
.section {
  width: 100% !important;
  background: #1a1b1c !important;
  padding: 80px 0 !important;
}
.section-alt {
  background: #202122 !important;
}
.section-light {
  width: 100% !important;
  background: #f0f1f2 !important;
  padding: 80px 0 !important;
}

/* ── 13. FOOTER: full-width ── */
footer {
  width: 100% !important;
  background: #1a1b1c !important;
}
footer .footer-grid,
.footer-grid {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 clamp(1rem, 4vw, 3rem) !important;
}
footer .footer-bottom {
  max-width: 1280px !important;
  padding-left: clamp(1rem, 4vw, 3rem) !important;
  padding-right: clamp(1rem, 4vw, 3rem) !important;
}
footer .disclaimer {
  max-width: 1280px !important;
  padding-left: clamp(1rem, 4vw, 3rem) !important;
  padding-right: clamp(1rem, 4vw, 3rem) !important;
}

/* ── 14. TRUST BAR: full-width ── */
.trust-bar {
  width: 100% !important;
  background: rgba(255,255,255,0.03) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  padding: 14px 0 !important;
  overflow: hidden !important;
}

/* ── 15. COUPON SECTION: full-width ── */
#deals,
.coupon-section {
  width: 100% !important;
}

/* ── 16. RESPONSIVE: tablet ── */
@media (max-width: 1100px) {
  .container { padding-left: 2rem !important; padding-right: 2rem !important; }
  .hero-content { gap: 3rem !important; }
}

/* ── 17. RESPONSIVE: mobile ── */
@media (max-width: 900px) {
  .hero {
    padding: 88px 0 56px !important;
    min-height: auto !important;
  }
  .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 2rem !important;
  }
  .hero-text { text-align: center !important; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem) !important; }
  .hero-img-wrap { order: -1 !important; max-width: 500px !important; margin: 0 auto !important; }
  .btn-group { justify-content: center !important; }
  .hero-stats { justify-content: center !important; }
  .hero-desc { margin-left: auto !important; margin-right: auto !important; }
  .hero-floating-card { display: none !important; }
}
@media (max-width: 600px) {
  .hero { padding: 76px 0 44px !important; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
  .container { padding-left: 1rem !important; padding-right: 1rem !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.4rem, 6vw, 1.9rem) !important; }
  .container { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
  .btn-group { flex-direction: column !important; align-items: center !important; }
  .btn-lg { width: 100% !important; max-width: 320px !important; justify-content: center !important; }
}

/* ── 18. HERO STATS: full row on desktop ── */
.hero-stats {
  display: flex !important;
  gap: 2rem !important;
  margin-top: 2rem !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
}
.hero-stat { text-align: left !important; }
.hero-stat .stat-num {
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  line-height: 1 !important;
}
.hero-stat .stat-label {
  font-size: 0.78rem !important;
  color: #8a8b8e !important;
  -webkit-text-fill-color: #8a8b8e !important;
  margin-top: 3px !important;
  white-space: nowrap !important;
}

/* ── 19. HERO DESC: proper width ── */
.hero-desc {
  font-size: 1.05rem !important;
  color: #c8c9cc !important;
  -webkit-text-fill-color: #c8c9cc !important;
  line-height: 1.7 !important;
  margin-bottom: 1.75rem !important;
  max-width: 520px !important;
}

/* ── 20. HERO BUTTONS: clean row ── */
.btn-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  align-items: center !important;
}

/* ── 21. HERO BADGE: top pill ── */
.hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 16px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 50px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 1.5rem !important;
}

/* ── 22. REVIEW / ARTICLE HERO SECTION ── */
.article-hero-section {
  width: 100% !important;
  background: #1a1b1c !important;
  padding: 88px 0 44px !important;
}

/* ── 23. GUIDES / BLOG HERO ── */
.guides-hero,
section[style*="background:var(--bg-dark)"],
section[style*="background: var(--bg-dark)"] {
  width: 100% !important;
  background: #1a1b1c !important;
}

/* ── 24. TOPBAR CLOSE BUTTON ── */
.topbar-close {
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  opacity: 0.7 !important;
}
.topbar-close:hover { opacity: 1 !important; }

/* ==========================================================
   ██████  ABSOLUTE FINAL FIX — v12 (2026-03-02) ██████
   This is the LAST block in the stylesheet.
   All rules here use maximum specificity + !important
   to definitively resolve every remaining UI issue.
   ========================================================== */

/* ─── 1. REMOVE CAPSULE / PILL from section-label ─── */
.section-label,
.section-light .section-label,
.section .section-label,
div .section-label,
[class] .section-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-bottom: 0.75rem !important;
  box-shadow: none !important;
}

/* ─── 2. OFFER / COUPON CARDS: fully visible, centered ─── */
.coupon-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 2rem 1.5rem !important;
  height: 100% !important;
  overflow: visible !important;
}
.coupon-card .coupon-badge { align-self: center !important; }
.coupon-card .coupon-deal-amount {
  text-align: center !important;
  width: 100% !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
}
.coupon-card h3,
.coupon-card .coupon-desc,
.coupon-card .coupon-expiry {
  text-align: center !important;
  width: 100% !important;
}
.coupon-card .coupon-code-box {
  width: 100% !important;
  justify-content: center !important;
}
.coupon-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}

/* ─── 3. SCROLL-TO-TOP BUTTON ─── */
#scrollTop {
  position: fixed !important;
  bottom: 30px !important;
  right: 24px !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  /* High enough to always be on top */
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(244,63,94,0.5) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px) scale(0.9) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
  outline: none !important;
}
#scrollTop.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}
#scrollTop:hover {
  background: #e02a4a !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 8px 28px rgba(244,63,94,0.6) !important;
}
#scrollTop:active {
  transform: translateY(0) scale(0.95) !important;
}
#scrollTop i,
#scrollTop .fa-arrow-up {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  pointer-events: none !important;
}

/* ─── 4. TABLE HEADERS: White text on dark bg (ALL pages) ─── */
table thead th,
.comparison-table thead th,
.key-facts-table thead th,
.seasonal-deals-table thead th,
.ft thead th,
.table-wrap table thead th,
.article-block table thead th,
.article-block-light table thead th,
.section-light table thead th,
.section-light .comparison-table thead th,
.section-light .key-facts-table thead th,
.section-light .ft thead th,
.section-light .ft th {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 0.85rem 1rem !important;
  border-color: rgba(255,255,255,0.1) !important;
}
/* Highlighted column header */
table thead th.highlight,
.comparison-table thead th.highlight {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ─── 5. TABLES: No right whitespace, uniform sizing ─── */
.table-wrap,
.comparison-table-wrap,
.pg-table-wrap,
.ft-wrap {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin: 1.5rem 0 !important;
}
table,
.comparison-table,
.key-facts-table,
.seasonal-deals-table,
.ft {
  width: 100% !important;
  table-layout: auto !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 0 !important;
}
table td, table th {
  padding: 0.75rem 1rem !important;
  vertical-align: middle !important;
}
/* Light section body cells */
.section-light table tbody td,
.section-light .comparison-table tbody td {
  background: #ffffff !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
.section-light table tbody td.highlight-col,
.section-light .comparison-table tbody td.highlight-col {
  background: rgba(244,63,94,0.04) !important;
}
/* Dark section body cells */
.section table tbody td {
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
/* Hover: dark text on light bg */
.section-light table tbody tr:hover td {
  background: #f0f1f2 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ─── 6. EQUAL CARD STRUCTURE ─── */
.coupon-card,
.pricing-card,
.feature-card,
.stat-card,
.review-card,
.guide-card,
.blog-card,
.step-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.coupon-grid,
.pricing-grid,
.features-grid,
.stats-grid,
.reviews-grid,
.guides-grid-all,
.blog-grid {
  align-items: stretch !important;
}
.coupon-card > .btn:last-child,
.coupon-card > a[class*="btn"]:last-child,
.pricing-card > .btn:last-child,
.pricing-card > a[class*="btn"]:last-child,
.feature-card > .btn:last-child,
.feature-card > a[class*="btn"]:last-child {
  margin-top: auto !important;
}
.guide-card .guide-card-actions {
  margin-top: auto !important;
  padding-top: 1rem !important;
}
.pricing-card .pricing-features {
  flex: 1 !important;
  margin-bottom: 1.25rem !important;
}

/* ─── 7. FAQ ANSWERS: center-aligned ─── */
.faq-item {
  margin-bottom: 0.75rem !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}
.faq-question {
  width: 100% !important;
  text-align: left !important;
  padding: 1.1rem 1.5rem !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  background: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.35s ease !important;
}
.faq-answer.open {
  max-height: 600px !important;
}
.faq-answer-inner,
.faq-answer .faq-answer-inner {
  padding: 0 1.5rem 1.25rem !important;
  text-align: center !important;
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
}
.faq-list {
  max-width: 800px !important;
  margin: 0 auto !important;
}

/* ─── 8. PRICING PAGE ─── */
/* Remove scroll progress / vertical line */
#scrollProgress,
.scroll-progress,
[id*="scrollProgress"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}
/* Pricing toggle */
.pricing-toggle {
  display: inline-flex !important;
  background: #1a1b1c !important;
  border-radius: 50px !important;
  padding: 4px !important;
}
.pricing-toggle button {
  padding: 10px 24px !important;
  border-radius: 50px !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  background: transparent !important;
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
  transition: all 0.25s ease !important;
}
.pricing-toggle button.active {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(244,63,94,0.3) !important;
}
/* Pricing card text in light section */
.section-light .pricing-card .plan-name {
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
}
.section-light .pricing-card .price {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .pricing-card .price sup {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .pricing-card .price-period {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
.section-light .pricing-card .price-original {
  color: #999999 !important;
  -webkit-text-fill-color: #999999 !important;
  text-decoration: line-through !important;
}
.section-light .pricing-card .price-save {
  display: inline-block !important;
  background: rgba(244,63,94,0.1) !important;
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  margin-top: 0.5rem !important;
}
.section-light .pricing-card .pricing-features li {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}

/* ─── 9. REMOVE REVEAL/SCROLL ANIMATIONS ─── */
.reveal,
.reveal-left,
.reveal-right,
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ─── 10. GUIDES PAGE: Complete fix ─── */
/* Guide card buttons */
.section-light .guide-card .btn-primary,
.section-light .guide-card a.btn-primary,
#guidesContainer .guide-card .btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
}
.section-light .guide-card .btn-primary:hover,
#guidesContainer .guide-card .btn-primary:hover {
  background: #333333 !important;
}
.section-light .guide-card .btn-secondary,
.section-light .guide-card a.btn-secondary,
#guidesContainer .guide-card .btn-secondary {
  background: transparent !important;
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  border: 1.5px solid rgba(0,0,0,0.25) !important;
}
.section-light .guide-card .btn-secondary:hover,
#guidesContainer .guide-card .btn-secondary:hover {
  background: rgba(0,0,0,0.06) !important;
  border-color: #1a1b1c !important;
}
/* Guide card text */
.guide-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.guide-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.guide-card .guide-card-meta {
  color: #777777 !important;
  -webkit-text-fill-color: #777777 !important;
}
.guide-card .guide-tag {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
.guide-card .guide-card-actions {
  display: flex !important;
  gap: 0.75rem !important;
  margin-top: auto !important;
  padding-top: 1rem !important;
  flex-wrap: wrap !important;
}
/* Row hover: dark text */
.section-light table tbody tr:hover td,
#guidesContainer table tbody tr:hover td {
  background: #f0f1f2 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Remove gradient, solid backgrounds */
.cta-section {
  background: #1a1b1c !important;
  background-image: none !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  padding: 3rem 2rem !important;
  text-align: center !important;
}
.cta-section h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.cta-section p {
  color: #c0c1c4 !important;
  -webkit-text-fill-color: #c0c1c4 !important;
}

/* ─── 11. REVIEW CARDS: Equal structure ─── */
.reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}
.review-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.section-light .review-card .review-text {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  flex: 1 !important;
}
.review-card .review-stars {
  color: #f5c518 !important;
  -webkit-text-fill-color: #f5c518 !important;
}
.section-light .review-card .name {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .review-card .role {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}

/* ─── 12. GLOBAL OVERFLOW FIX ─── */
html, body {
  overflow-x: hidden !important;
}
*, *::before, *::after {
  box-sizing: border-box !important;
}

/* ─── 13. MOBILE ─── */
@media (max-width: 768px) {
  .coupon-grid,
  .pricing-grid,
  .reviews-grid,
  .guides-grid-all {
    grid-template-columns: 1fr !important;
  }
  .pricing-card.featured {
    transform: none !important;
  }
  .faq-question { padding: 1rem 1.25rem !important; font-size: 0.9rem !important; }
  .faq-answer-inner { padding: 0 1.25rem 1rem !important; font-size: 0.88rem !important; }
  table td, table th { padding: 0.6rem 0.75rem !important; font-size: 0.82rem !important; }
}
@media (max-width: 480px) {
  .coupon-card { padding: 1.5rem 1rem !important; }
  .coupon-card .coupon-deal-amount { font-size: 1.8rem !important; }
}

/* ██████ END ABSOLUTE FINAL FIX v12 ██████ */

/* ==========================================================
   IMAGE QUALITY & DISPLAY MASTER FIX — v13 (2026-03-13)
   Final authoritative rules for ALL image types site-wide.
   ========================================================== */

/* ── 1. All images: never overflow, auto rendering ── */
img {
  max-width: 100% !important;
  image-rendering: auto !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
}

/* ── 2. Article images: 16:9 aspect ratio, crisp, full-width ── */
.article-img,
.article-body .article-img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 4px 28px rgba(0,0,0,0.35) !important;
  margin: 1.5rem 0 !important;
  background: linear-gradient(90deg, #2a2b2c 25%, #333435 50%, #2a2b2c 75%) !important;
  background-size: 800px 100% !important;
}
.article-img.loaded,
.article-img[src]:not([src=""]) {
  background: transparent !important;
  animation: none !important;
}

/* ── 3. Hero image in index/features ── */
.hero-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}

/* ── 4. Guide card thumbnails: fixed 200px height ── */
.guide-card img,
.guide-card-img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 12px 12px 0 0 !important;
}

/* ── 5. Blog card thumbnails: fixed 180px height ── */
.blog-card img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 12px 12px 0 0 !important;
}

/* ── 6. Article body generic images (not .article-img) ── */
.article-body img:not(.article-img) {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  margin: 1rem 0 !important;
}

/* ── 7. Light section article image border ── */
.section-light .article-img {
  border-color: rgba(0,0,0,0.12) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

/* ── 8. Shimmer loading state for article images ── */
@keyframes img-loading {
  0%   { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}
.article-img:not(.loaded):not([src=""]) {
  animation: img-loading 1.6s infinite linear !important;
}

/* ── 9. Prevent layout shift with aspect-ratio placeholder ── */
.article-img[width][height] {
  content-visibility: auto;
}

/* ██████ END IMAGE QUALITY FIX v13 ██████ */

/* ==========================================================
   SCROLL-TO-TOP BUTTON MASTER FIX — v13
   Consolidates all conflicting #scrollTop rules.
   ========================================================== */
#scrollTop {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(16px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease !important;
  box-shadow: 0 4px 20px rgba(244,63,94,0.5) !important;
  z-index: 9990 !important;
}
#scrollTop.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
#scrollTop:hover {
  background: #e11d48 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 32px rgba(244,63,94,0.65) !important;
}
#scrollTop i,
#scrollTop .fas {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
}
/* ── HERO IMAGE: crisp, sharp, full-size diagram display ── */

/* 1. The wrapper — no overflow clipping, no max-height */
.hero-img-wrap {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  max-height: none !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* 2. Kill the glow overlay that sits on top and blurs the image */
.hero-img-glow {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* 3. The image itself — full width, no scaling distortion */
.hero-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45) !important;
  /* Force crisp pixel rendering — no browser upscaling blur */
  image-rendering: auto !important;
  -ms-interpolation-mode: bicubic;
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  position: relative !important;
  z-index: 1 !important;
}

/* 4. Override every earlier breakpoint that hides or clips hero-img-wrap */
@media (max-width: 2560px) {
  .hero-img-wrap {
    overflow: visible !important;
    max-height: none !important;
  }
}

/* 5. Mobile: stack cleanly, still show image */
@media (max-width: 900px) {
  .hero-img-wrap {
    order: -1 !important;
    max-width: 540px !important;
    margin: 0 auto !important;
    overflow: visible !important;
    max-height: none !important;
    display: flex !important;
  }
}
@media (max-width: 480px) {
  .hero-img-wrap {
    max-width: 100% !important;
    display: none !important;  /* hide only on very small phones to save space */
  }
}

/* ██████ END SCROLL-TO-TOP & HERO FIX v13 ██████ */

/* ==========================================================
   BUTTON TEXT CENTERING FIX — v17 (2026-03-14)
   Ensures all .btn elements always center their text/icon,
   especially when width:100% is applied (coupon cards, etc.)
   ========================================================== */
.btn,
a.btn,
button.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
/* Coupon card full-width buttons */
.coupon-card .btn,
.coupon-card a.btn {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
}
/* ██████ END BUTTON CENTERING FIX v17 ██████ */

/* ==========================================================
   PRICING CARD TEXT VISIBILITY FIX — v18 (2026-03-14)
   Dark .section: all card text must be clearly readable.
   Free & Pro = dark bg (#232425), Plus featured = dark gradient.
   Rule: light text on dark cards, dark text on white cards.
   ========================================================== */

/* ── Dark section: Free, Plus, Pro cards — all text bright ── */
#pricing .pricing-card .plan-name,
.section#pricing .pricing-card .plan-name {
  color: #b0b1b4 !important;
  -webkit-text-fill-color: #b0b1b4 !important;
}
#pricing .pricing-card .price,
.section#pricing .pricing-card .price,
#pricing .pricing-card .price sup,
.section#pricing .pricing-card .price sup {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
#pricing .pricing-card .price-period,
.section#pricing .pricing-card .price-period {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}
#pricing .pricing-card .price-original,
.section#pricing .pricing-card .price-original {
  color: #7a7b7e !important;
  -webkit-text-fill-color: #7a7b7e !important;
}
#pricing .pricing-features li,
.section#pricing .pricing-features li {
  color: #e8e9ec !important;
  -webkit-text-fill-color: #e8e9ec !important;
}
#pricing .pricing-features li .check,
.section#pricing .pricing-features li .check {
  color: #4ade80 !important;
}
#pricing .pricing-features li .cross,
.section#pricing .pricing-features li .cross {
  color: #6b6c6f !important;
}
#pricing .pricing-card .divider,
.section#pricing .pricing-card .divider {
  background: rgba(255,255,255,0.1) !important;
}

/* ── Featured Plus card: slightly brighter since darkest bg ── */
#pricing .pricing-card.featured .plan-name,
.section#pricing .pricing-card.featured .plan-name {
  color: #cccccc !important;
  -webkit-text-fill-color: #cccccc !important;
}
#pricing .pricing-card.featured .price-period,
.section#pricing .pricing-card.featured .price-period {
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
}
#pricing .pricing-card.featured .pricing-features li,
.section#pricing .pricing-card.featured .pricing-features li {
  color: #f0f1f4 !important;
  -webkit-text-fill-color: #f0f1f4 !important;
}

/* ██████ END PRICING CARD TEXT VISIBILITY FIX v18 ██████ */

/* ==========================================================
   COMPARISON TABLE — NO WHITESPACE FIX v19 (2026-03-14)
   Removes trailing right whitespace by using auto table-layout
   and distributing column widths explicitly across 4 columns.
   Scoped to #compare to avoid affecting other tables.
   ========================================================== */
#compare .table-wrap {
  width: 100% !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: var(--radius) !important;
}
#compare .comparison-table {
  width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 0 !important;
  display: table !important;
}
/* Distribute columns: Feature 28%, each of 3 data cols ~24% */
#compare .comparison-table th:nth-child(1),
#compare .comparison-table td:nth-child(1) {
  width: 28% !important;
  min-width: 0 !important;
}
#compare .comparison-table th:nth-child(2),
#compare .comparison-table td:nth-child(2),
#compare .comparison-table th:nth-child(3),
#compare .comparison-table td:nth-child(3),
#compare .comparison-table th:nth-child(4),
#compare .comparison-table td:nth-child(4) {
  width: 24% !important;
  min-width: 0 !important;
}
/* Ensure cells don't cause overflow */
#compare .comparison-table th,
#compare .comparison-table td {
  box-sizing: border-box !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  max-width: 0 !important;
}
/* ██████ END COMPARISON TABLE WHITESPACE FIX v19 ██████ */

/* ==========================================================
   SEASONAL DEALS TABLE — NO WHITESPACE FIX v20 (2026-03-14)
   5-column table: Season | Typical Offer | Historical Savings
                   | Next Expected | Status
   Scoped to #seasonal-deals to avoid affecting other tables.
   ========================================================== */
#seasonal-deals .table-wrap {
  width: 100% !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: var(--radius) !important;
}
#seasonal-deals .seasonal-table {
  width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 0 !important;
  display: table !important;
}
/* Season col slightly wider, rest share equally */
#seasonal-deals .seasonal-table th:nth-child(1),
#seasonal-deals .seasonal-table td:nth-child(1) {
  width: 26% !important;
  min-width: 0 !important;
}
#seasonal-deals .seasonal-table th:nth-child(2),
#seasonal-deals .seasonal-table td:nth-child(2),
#seasonal-deals .seasonal-table th:nth-child(3),
#seasonal-deals .seasonal-table td:nth-child(3),
#seasonal-deals .seasonal-table th:nth-child(4),
#seasonal-deals .seasonal-table td:nth-child(4),
#seasonal-deals .seasonal-table th:nth-child(5),
#seasonal-deals .seasonal-table td:nth-child(5) {
  width: 18.5% !important;
  min-width: 0 !important;
}
/* Prevent overflow inside cells */
#seasonal-deals .seasonal-table th,
#seasonal-deals .seasonal-table td {
  box-sizing: border-box !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  max-width: 0 !important;
}
/* ██████ END SEASONAL DEALS TABLE WHITESPACE FIX v20 ██████ */

/* ==========================================================
   REVIEW CARDS TEXT + SCROLL BTN + STICKY WIDGET — v21
   (2026-03-14)
   ========================================================== */

/* ── 1. Review cards on dark #reviews section ──
   The global rule forces background:#ffffff on ALL .review-card
   which makes white text invisible on white cards.
   Scope: dark-section cards only (#reviews).
   Light-section cards (.section-light) keep their existing rules.
*/
#reviews .review-card {
  background: var(--bg-card, #232425) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
#reviews .review-card .review-text {
  color: #e8e9ec !important;
  -webkit-text-fill-color: #e8e9ec !important;
}
#reviews .review-card .review-stars {
  color: #f5c518 !important;
  -webkit-text-fill-color: #f5c518 !important;
}
#reviews .review-card .name {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
#reviews .review-card .role {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}
#reviews .review-card .review-source {
  color: #8a8b8e !important;
  -webkit-text-fill-color: #8a8b8e !important;
  border-top-color: rgba(255,255,255,0.08) !important;
}
#reviews .review-card:hover {
  background: #2a2b2c !important;
  border-color: rgba(255,255,255,0.18) !important;
}

/* ── 2. Scroll-to-top: move LEFT side to avoid sticky widget ──
   .sticky-gift lives at bottom:24px right:24px.
   Moving #scrollTop to the LEFT keeps them fully separated.
*/
#scrollTop {
  bottom: 30px !important;
  right: auto !important;
  left: 24px !important;
  z-index: 99999 !important;
  pointer-events: none !important;
  opacity: 0 !important;
  transform: translateY(20px) scale(0.9) !important;
}
#scrollTop.visible {
  pointer-events: auto !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}
#scrollTop:hover {
  transform: translateY(-3px) scale(1.08) !important;
}
#scrollTop:active {
  transform: translateY(0) scale(0.95) !important;
}

/* ██████ END REVIEW CARDS TEXT + SCROLL BTN FIX v21 ██████ */

/* ==========================================================
   COMPREHENSIVE SITE FIX — v22 (2026-03-14)
   Covers: hero diagram image, text visibility across sections,
   card backgrounds, savings widget, feature cards.
   ========================================================== */

/* ── 1. HERO IMAGE: diagram needs contain not cover ──
   The Super Agent diagram (white bg, text+icons) must be
   fully visible — object-fit:contain prevents cropping.
*/
.hero-img-wrap {
  background: rgba(255,255,255,0.04) !important;
  border-radius: 20px !important;
  padding: 12px !important;
  overflow: visible !important;
  max-height: none !important;
}
.hero .hero-img,
.hero-img-wrap .hero-img {
  object-fit: contain !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 8px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block !important;
}

/* ── 2. FEATURE CARDS — dark section text clearly visible ── */
.section .feature-card {
  background: var(--bg-card, #232425) !important;
}
.section .feature-card h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section .feature-card p {
  color: #c8c9cc !important;
  -webkit-text-fill-color: #c8c9cc !important;
}
.section .feature-card .feature-icon {
  font-size: 2rem !important;
  margin-bottom: 1rem !important;
}

/* ── 3. STEP CARDS — light section: dark text ── */
.section-light .step-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .step-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .step-card p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
.section-light .step-card .step-num {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── 4. SAVINGS WIDGET — light section: dark text ── */
.section-light .savings-widget,
.savings-widget {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
}
.section-light .savings-row {
  border-bottom-color: rgba(0,0,0,0.07) !important;
}
.section-light .savings-row .tool-name {
  color: #222222 !important;
  -webkit-text-fill-color: #222222 !important;
}
.section-light .savings-row .tool-price {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.section-light .savings-total span:first-child {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 700 !important;
}
.section-light .savings-note {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}

/* ── 5. HIGHLIGHT ITEMS (stats strip) — dark section ── */
.section .highlight-item .hi-val {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section .highlight-item .hi-label {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}
.section .highlight-item .hi-icon {
  font-size: 1.8rem !important;
}

/* ── 6. SECTION TITLES & SUBTITLES — ensure visibility ── */
.section .section-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .section-title {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section .section-subtitle {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}
.section-light .section-subtitle {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}

/* ── 7. INFO & WARNING BOXES in dark sections ── */
.section .info-box {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
.section .info-box strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section .warning-box {
  color: #f0f0f0 !important;
  -webkit-text-fill-color: #f0f0f0 !important;
}
.section .warning-box strong {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}

/* ── 8. PROGRESS BARS — labels visible ── */
.section .progress-label {
  color: #d0d1d4 !important;
  -webkit-text-fill-color: #d0d1d4 !important;
}
.section .progress-val {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── 9. COUPON SECTION DARK ── */
#deals .coupon-deal-amount {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
#deals h3 {
  color: #f0f1f4 !important;
  -webkit-text-fill-color: #f0f1f4 !important;
}
#deals .coupon-desc {
  color: #b0b1b4 !important;
  -webkit-text-fill-color: #b0b1b4 !important;
}
#deals .coupon-expiry {
  color: #8a8b8e !important;
  -webkit-text-fill-color: #8a8b8e !important;
}
#deals .coupon-code-box .code,
#deals .coupon-code-box .code-auto {
  color: #e8e9ec !important;
  -webkit-text-fill-color: #e8e9ec !important;
}

/* ── 10. TRUST BAR ── */
.trust-bar .trust-item {
  color: #c8c9cc !important;
  -webkit-text-fill-color: #c8c9cc !important;
}

/* ██████ END COMPREHENSIVE SITE FIX v22 ██████ */

/* ==========================================================
   MASTER FIX v23 — (2026-03-14)
   Covers: hero image clarity, pricing cards, review cards,
   scroll button, button centering, table whitespace,
   text visibility across all sections/pages.
   ========================================================== */

/* ══════════════════════════════════════════════════════════
   A. HERO IMAGE — SHARP, CLEAR, NO CROPPING
   ══════════════════════════════════════════════════════════ */

/* Hero wrapper: no clipping at ANY breakpoint */
.hero-img-wrap,
.hero .hero-img-wrap {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  overflow: visible !important;
  max-height: none !important;
  background: transparent !important;
  padding: 0 !important;
}

/* Hero image: cover fills space but keeps natural shape */
.hero-img,
.hero .hero-img,
.hero-img-wrap .hero-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5) !important;
  /* GPU-accelerated crisp rendering */
  transform: translateZ(0) !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: crisp-edges !important;
  image-rendering: auto !important;
  /* No background, prevent shimmer overlay */
  background: transparent !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Kill hero glow overlay that blurs image */
.hero-img-glow,
.hero-img-wrap::before,
.hero-img-wrap::after {
  display: none !important;
  opacity: 0 !important;
}

/* Tablet: show image above text, no height restriction */
@media (max-width: 960px) {
  .hero-img-wrap {
    order: -1 !important;
    max-width: 500px !important;
    margin: 0 auto 1.5rem !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Mobile: show up to 480px, then hide */
@media (max-width: 600px) {
  .hero-img-wrap {
    max-width: 100% !important;
    display: flex !important;
  }
}

/* ══════════════════════════════════════════════════════════
   B. PRICING CARDS — ALL TEXT CLEARLY READABLE (DARK BG)
   ══════════════════════════════════════════════════════════ */

/* Free, Plus, Pro cards — dark background */
#pricing .pricing-card,
.section #pricing .pricing-card,
section#pricing .pricing-card {
  background: var(--bg-card, #232425) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
#pricing .pricing-card.featured {
  background: linear-gradient(135deg, rgba(255,255,255,0.07), var(--bg-card, #232425)) !important;
  border-color: rgba(255,255,255,0.25) !important;
}
#pricing .pricing-card .plan-name {
  color: #c0c2c5 !important;
  -webkit-text-fill-color: #c0c2c5 !important;
}
#pricing .pricing-card .price,
#pricing .pricing-card .price sup,
#pricing .pricing-card .price span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
#pricing .pricing-card .price-period,
#pricing .pricing-card .price-original {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}
#pricing .pricing-features li {
  color: #e8e9ec !important;
  -webkit-text-fill-color: #e8e9ec !important;
}
#pricing .pricing-features li .check {
  color: #4ade80 !important;
  -webkit-text-fill-color: #4ade80 !important;
}
#pricing .pricing-features li .cross {
  color: #777a7e !important;
  -webkit-text-fill-color: #777a7e !important;
}
#pricing .pricing-card .divider {
  background: rgba(255,255,255,0.1) !important;
}
/* Plus featured card brighter labels */
#pricing .pricing-card.featured .plan-name {
  color: #d0d2d6 !important;
  -webkit-text-fill-color: #d0d2d6 !important;
}
/* Credit packs in pricing */
#pricing .coupon-card .coupon-deal-amount {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
#pricing .coupon-card h3 {
  color: #f0f1f4 !important;
  -webkit-text-fill-color: #f0f1f4 !important;
}
#pricing .coupon-card .coupon-desc {
  color: #b0b2b6 !important;
  -webkit-text-fill-color: #b0b2b6 !important;
}

/* ══════════════════════════════════════════════════════════
   C. REVIEW CARDS — DARK SECTION (#reviews) = LIGHT TEXT
   ══════════════════════════════════════════════════════════ */

#reviews .review-card {
  background: #232425 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
#reviews .review-card:hover {
  background: #2a2b2c !important;
  border-color: rgba(255,255,255,0.2) !important;
}
#reviews .review-card .review-text {
  color: #e0e1e5 !important;
  -webkit-text-fill-color: #e0e1e5 !important;
}
#reviews .review-card .review-stars {
  color: #f5c518 !important;
  -webkit-text-fill-color: #f5c518 !important;
}
#reviews .review-card .name {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
#reviews .review-card .role {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}
#reviews .review-card .review-source {
  color: #8a8b8e !important;
  -webkit-text-fill-color: #8a8b8e !important;
}
#reviews .review-card .review-avatar {
  background: #3a3b3c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════
   D. SCROLL-TO-TOP BUTTON — NO OVERLAP WITH STICKY WIDGET
   ══════════════════════════════════════════════════════════ */

/* .sticky-gift is at bottom:24px right:24px
   Move scroll button to the LEFT so they never overlap */
#scrollTop {
  position: fixed !important;
  bottom: 28px !important;
  left: 24px !important;
  right: auto !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(16px) scale(0.9) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease !important;
  box-shadow: 0 4px 20px rgba(244,63,94,0.5) !important;
  z-index: 9990 !important;
}
#scrollTop.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}
#scrollTop:hover {
  background: #e11d48 !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 8px 32px rgba(244,63,94,0.65) !important;
}
#scrollTop:active {
  transform: scale(0.95) !important;
}
#scrollTop i,
#scrollTop .fas {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 1.1rem !important;
  pointer-events: none !important;
}

/* ══════════════════════════════════════════════════════════
   E. BUTTON TEXT — ALWAYS CENTERED
   ══════════════════════════════════════════════════════════ */

.btn,
a.btn,
button.btn,
.btn-primary,
.btn-secondary,
.btn-accent,
a.btn-primary,
a.btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Full-width buttons in cards */
.coupon-card .btn,
.pricing-card .btn,
.feature-card .btn,
.blog-card .btn {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
}

/* ══════════════════════════════════════════════════════════
   F. COMPARISON TABLE — NO WHITESPACE (INDEX + ALL PAGES)
   ══════════════════════════════════════════════════════════ */

/* #compare section (head-to-head 4-col table) */
#compare .table-wrap {
  width: 100% !important;
  overflow-x: auto !important;
  display: block !important;
  border-radius: var(--radius) !important;
}
#compare .comparison-table {
  width: 100% !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}
#compare .comparison-table th:nth-child(1),
#compare .comparison-table td:nth-child(1) { width: 28% !important; }
#compare .comparison-table th:nth-child(2),
#compare .comparison-table td:nth-child(2),
#compare .comparison-table th:nth-child(3),
#compare .comparison-table td:nth-child(3),
#compare .comparison-table th:nth-child(4),
#compare .comparison-table td:nth-child(4) { width: 24% !important; }
#compare .comparison-table th,
#compare .comparison-table td {
  box-sizing: border-box !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
  white-space: normal !important;
}

/* #seasonal-deals section (5-col seasonal table) */
#seasonal-deals .table-wrap {
  width: 100% !important;
  overflow-x: auto !important;
  display: block !important;
  border-radius: var(--radius) !important;
}
#seasonal-deals .seasonal-table {
  width: 100% !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}
#seasonal-deals .seasonal-table th:nth-child(1),
#seasonal-deals .seasonal-table td:nth-child(1) { width: 26% !important; }
#seasonal-deals .seasonal-table th:nth-child(2),
#seasonal-deals .seasonal-table td:nth-child(2),
#seasonal-deals .seasonal-table th:nth-child(3),
#seasonal-deals .seasonal-table td:nth-child(3),
#seasonal-deals .seasonal-table th:nth-child(4),
#seasonal-deals .seasonal-table td:nth-child(4),
#seasonal-deals .seasonal-table th:nth-child(5),
#seasonal-deals .seasonal-table td:nth-child(5) { width: 18.5% !important; }
#seasonal-deals .seasonal-table th,
#seasonal-deals .seasonal-table td {
  box-sizing: border-box !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
  white-space: normal !important;
}

/* ══════════════════════════════════════════════════════════
   G. GENERAL TEXT VISIBILITY — DARK & LIGHT SECTIONS
   ══════════════════════════════════════════════════════════ */

/* Dark sections (.section) — white text */
.section .section-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section .section-subtitle,
.section p.section-subtitle {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}
/* Light sections (.section-light) — dark text */
.section-light .section-title {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .section-subtitle,
.section-light p.section-subtitle {
  color: #555558 !important;
  -webkit-text-fill-color: #555558 !important;
}

/* Feature cards in dark sections */
.section .feature-card {
  background: var(--bg-card, #232425) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.section .feature-card h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section .feature-card p {
  color: #c0c2c6 !important;
  -webkit-text-fill-color: #c0c2c6 !important;
}

/* Step cards on light sections */
.section-light .step-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .step-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .step-card p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}

/* Savings widget */
.section-light .savings-widget {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
}
.section-light .savings-row .tool-name {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
}
.section-light .savings-row .tool-price {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
.section-light .savings-total span:first-child {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .savings-note {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}

/* Highlight items (stats strip) */
.section-light .highlight-item .hi-val {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .highlight-item .hi-label {
  color: #555558 !important;
  -webkit-text-fill-color: #555558 !important;
}
.section .highlight-item .hi-val {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section .highlight-item .hi-label {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}

/* Coupon cards in dark sections */
#deals .coupon-card {
  background: var(--bg-card, #232425) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
#deals .coupon-deal-amount {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
#deals h3,
#deals .coupon-card h3 {
  color: #f0f1f4 !important;
  -webkit-text-fill-color: #f0f1f4 !important;
}
#deals .coupon-desc {
  color: #b0b2b6 !important;
  -webkit-text-fill-color: #b0b2b6 !important;
}
#deals .coupon-expiry {
  color: #8a8b8e !important;
  -webkit-text-fill-color: #8a8b8e !important;
}
#deals .coupon-code-box .code,
#deals .coupon-code-box .code-auto {
  color: #e8e9ec !important;
  -webkit-text-fill-color: #e8e9ec !important;
}
#deals .coupon-badge {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Trust bar */
.trust-bar .trust-item {
  color: #c0c2c6 !important;
  -webkit-text-fill-color: #c0c2c6 !important;
}

/* Progress bars (savings section) */
.progress-header span,
.prog-pct {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ══════════════════════════════════════════════════════════
   H. BLOG CARDS (LIGHT BG) — TEXT ALWAYS VISIBLE
   ══════════════════════════════════════════════════════════ */

.blog-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--radius, 16px) !important;
  overflow: hidden !important;
  color: #111111 !important;
}
.blog-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.blog-card p {
  color: #555558 !important;
  -webkit-text-fill-color: #555558 !important;
}
.blog-card-meta,
.blog-card-meta span {
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
}
.blog-tag {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}

/* ══════════════════════════════════════════════════════════
   I. STICKY GIFT POPUP — PROPER LAYOUT
   ══════════════════════════════════════════════════════════ */

.sticky-gift {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9980 !important;
}

/* ██████ END MASTER FIX v23 ██████ */

/* ==========================================================
   BUTTON TEXT ALIGNMENT — UNIVERSAL CENTER FIX v24
   Forces ALL button variants site-wide to perfectly center
   their text + icon content, regardless of width or context.
   Covers: .btn, .btn-primary, .btn-secondary, .btn-accent,
           .btn-gift, .btn-outline, .btn-lg, .btn-sm,
           .nav-gift-btn, .sticky-gift-btn,
           full-width buttons in cards / mobile nav.
   ========================================================== */

/* ── Core: every element that IS a button ── */
.btn,
a.btn,
button.btn,
input[type="button"].btn,
input[type="submit"].btn,
.btn-primary,
.btn-secondary,
.btn-accent,
.btn-gift,
.btn-outline,
.btn-lg,
.btn-sm,
a.btn-primary,
a.btn-secondary,
a.btn-accent,
a.btn-gift,
a.btn-outline,
button.btn-primary,
button.btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  vertical-align: middle !important;
}

/* ── Full-width buttons (cards, mobile nav, CTA) ── */
.btn[style*="width:100%"],
a.btn[style*="width:100%"],
.coupon-card .btn,
.pricing-card .btn,
.sticky-popup .btn,
.cta-section .btn,
.inline-cta .btn,
.mobile-nav .btn,
.final-cta .btn,
.hero .btn,
.btn-group .btn,
.guide-card-actions .btn,
.sidebar-deal-card .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* ── Nav & sticky special buttons ── */
.nav-gift-btn,
.sticky-gift-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* ── Icon inside button: never shifts alignment ── */
.btn i,
.btn .fas,
.btn .far,
.btn .fab,
a.btn i,
a.btn .fas,
button.btn i,
.nav-gift-btn i,
.sticky-gift-btn i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  pointer-events: none !important;
}

/* ██████ END BUTTON TEXT ALIGNMENT — UNIVERSAL CENTER FIX v24 ██████ */

/* ==========================================================
   TEXT COLOR VISIBILITY — v25 (2026-03-14)
   Fixes 3 reported invisible-text areas:
   1. info-box / warning-box on light sections
   2. highlight-item cards (.hi-val, .hi-label) on light bg
   3. .btn-secondary text in .cta-section (dark bg)
   Also: -webkit-text-fill-color: inherit override fix on btns
   ========================================================== */

/* ══════════════════════════════════════════════════════════
   1. INFO-BOX & WARNING-BOX — light section (white bg)
   The base rule gives light-colored text that vanishes on white.
   ══════════════════════════════════════════════════════════ */
.section-light .info-box {
  background: rgba(76,175,80,0.07) !important;
  border: 1px solid rgba(76,175,80,0.3) !important;
  color: #1b5e20 !important;
  -webkit-text-fill-color: #1b5e20 !important;
}
.section-light .info-box strong {
  color: #145214 !important;
  -webkit-text-fill-color: #145214 !important;
}
.section-light .warning-box {
  background: rgba(244,63,94,0.08) !important;
  border: 1px solid rgba(244,63,94,0.3) !important;
  color: #7a0c1c !important;
  -webkit-text-fill-color: #7a0c1c !important;
}
.section-light .warning-box strong {
  color: #b00020 !important;
  -webkit-text-fill-color: #b00020 !important;
}
/* span inside warning/info box — explicit colors, NOT inherit */
.section-light .warning-box span {
  color: #7a0c1c !important;
  -webkit-text-fill-color: #7a0c1c !important;
}
.section-light .info-box span {
  color: #1b5e20 !important;
  -webkit-text-fill-color: #1b5e20 !important;
}

/* Dark section info/warning boxes — keep light text */
.section .info-box,
section.section .info-box {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
.section .info-box strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section .warning-box,
section.section .warning-box {
  color: #ffccd4 !important;
  -webkit-text-fill-color: #ffccd4 !important;
}
.section .warning-box strong {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}
.section .warning-box span,
.section .info-box span {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}
/* Explicit span colors for dark sections */
.section .warning-box span {
  color: #ffccd4 !important;
  -webkit-text-fill-color: #ffccd4 !important;
}
.section .info-box span {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}

/* ══════════════════════════════════════════════════════════
   2. HIGHLIGHT-ITEM CARDS — light section (.section-light)
   Cards get white background; .hi-val & .hi-label must be dark.
   ══════════════════════════════════════════════════════════ */
.section-light .highlight-item {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .highlight-item .hi-val {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
}
.section-light .highlight-item .hi-label {
  color: #555558 !important;
  -webkit-text-fill-color: #555558 !important;
  font-size: 0.82rem !important;
}
.section-light .highlight-item:hover {
  border-color: rgba(0,0,0,0.22) !important;
}

/* Dark section highlight-items — keep white text */
.section .highlight-item .hi-val {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section .highlight-item .hi-label {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}

/* ══════════════════════════════════════════════════════════
   3. CTA SECTION BUTTONS — dark background
   .cta-section has dark bg (#1a1b1c / #232425).
   .btn-secondary must show WHITE text + border.
   .btn-primary must show BLACK text on WHITE bg.
   Root cause: line 4825 sets -webkit-text-fill-color:inherit
   on ALL .btn, which pulls in gradient transparent fill.
   ══════════════════════════════════════════════════════════ */
.cta-section .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  border: none !important;
}
.cta-section .btn-primary:hover {
  background: #f0f1f2 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.cta-section .btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
}
.cta-section .btn-secondary:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: #ffffff !important;
}
/* CTA on light sections */
.section-light .cta-section .btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .cta-section .btn-secondary {
  background: transparent !important;
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  border-color: rgba(0,0,0,0.35) !important;
}

/* ══════════════════════════════════════════════════════════
   4. GLOBAL BTN -webkit-text-fill-color FIX
   Line 4825: .btn { -webkit-text-fill-color: inherit !important }
   causes buttons that use gradient text parents to become
   invisible. Override per variant explicitly.
   ══════════════════════════════════════════════════════════ */
.btn-primary {
  -webkit-text-fill-color: #111111 !important;
}
.btn-secondary {
  -webkit-text-fill-color: #ffffff !important;
}
.btn-accent {
  -webkit-text-fill-color: #111111 !important;
}
.btn-gift {
  -webkit-text-fill-color: #111111 !important;
}
.btn-outline {
  -webkit-text-fill-color: #ffffff !important;
}
/* Light-section overrides */
.section-light .btn-primary {
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .btn-secondary {
  -webkit-text-fill-color: #1a1b1c !important;
}

/* ██████ END TEXT COLOR VISIBILITY FIX v25 ██████ */

/* ==========================================================
   COMPREHENSIVE LIGHT-SECTION TEXT CONTRAST FIX — v28 (2026-04-02)
   Root cause: several mid-stylesheet dark-mode rules use !important
   and some have equal/lower specificity than the section-light
   overrides but still win because both use !important and the
   dark rule appears LATER in the file.
   Solution: repeat ALL light-section overrides at the very END of
   the file so they always come last in the cascade AND use the
   most specific selectors possible.
   ========================================================== */

/* ══════════════════════════════════════════════════════════
   A. GLOBAL LIGHT-SECTION: ALL TEXT DARK
   ══════════════════════════════════════════════════════════ */
section.section-light,
div.section-light,
.section.section-light {
  color: #1a1b1c !important;
}
section.section-light p,
div.section-light p,
.section.section-light p {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
section.section-light li,
div.section-light li,
.section.section-light li {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
section.section-light h1,
section.section-light h2,
section.section-light h3,
section.section-light h4,
section.section-light h5,
section.section-light h6,
div.section-light h1,
div.section-light h2,
div.section-light h3,
div.section-light h4,
div.section-light h5,
div.section-light h6 {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
}
/* section titles + subtitles */
section.section-light .section-title,
.section.section-light .section-title {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
}
section.section-light .section-subtitle,
.section.section-light .section-subtitle {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}

/* ══════════════════════════════════════════════════════════
   B. FEATURE CARDS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .feature-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .feature-card h3,
.section-light .feature-card h2 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .feature-card p,
.section-light .feature-card li,
.section-light .feature-card span {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}

/* ══════════════════════════════════════════════════════════
   C. REVIEW CARDS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .review-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
}
.section-light .review-card .review-text,
.section-light .review-card p {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  font-style: italic !important;
}
.section-light .review-card .name,
.section-light .review-card .review-name {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 700 !important;
}
.section-light .review-card .role,
.section-light .review-card .review-role {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.section-light .review-card .review-source,
.section-light .review-source {
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
}
.section-light .review-card .review-stars {
  color: #f5c518 !important;
}
.section-light .review-avatar {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════
   D. PRICING CARDS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .pricing-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.12) !important;
}
.section-light .pricing-card .plan-name {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
.section-light .pricing-card .price {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .pricing-card .price-period,
.section-light .pricing-card .price-original {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
.section-light .pricing-card .pricing-features li {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
.section-light .pricing-card .divider {
  background: rgba(0,0,0,0.1) !important;
}
/* The 'featured' pricing card stays white-card style */
.section-light .pricing-card.featured {
  background: #ffffff !important;
  border-color: #1a1b1c !important;
}

/* ══════════════════════════════════════════════════════════
   E. STEP CARDS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .step-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .step-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .step-card p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}

/* ══════════════════════════════════════════════════════════
   F. FAQ — light section
   ══════════════════════════════════════════════════════════ */
.section-light .faq-item {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .faq-question {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
}
.section-light .faq-answer-inner,
.section-light .faq-answer-inner p,
.section-light .faq-answer-inner li {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
.section-light .faq-question .faq-icon {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}

/* ══════════════════════════════════════════════════════════
   G. BLOG / GUIDE CARDS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .blog-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .blog-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .blog-card p,
.section-light .blog-card-meta {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.section-light .blog-tag {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}

/* ══════════════════════════════════════════════════════════
   H. HIGHLIGHT ITEMS (Stats grid) — light section
   ══════════════════════════════════════════════════════════ */
.section-light .highlight-item {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .highlight-item .hi-val {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 800 !important;
}
.section-light .highlight-item .hi-label {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}

/* ══════════════════════════════════════════════════════════
   I. SAVINGS WIDGET & PROGRESS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .savings-widget,
.savings-widget {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .savings-row .tool-name,
.savings-widget .savings-row .tool-name {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
.section-light .savings-row .tool-price,
.savings-widget .savings-row .tool-price {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .savings-total,
.savings-widget .savings-total {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  border-top-color: rgba(0,0,0,0.12) !important;
}
.section-light .savings-total span,
.savings-widget .savings-total span {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .savings-total .vs,
.savings-widget .savings-total .vs {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .savings-note,
.savings-widget .savings-note {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
.section-light .savings-row,
.savings-widget .savings-row {
  border-bottom-color: rgba(0,0,0,0.08) !important;
}
/* progress bars */
.section-light .savings-progress,
.savings-progress {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .savings-progress .progress-header span,
.savings-progress .progress-header span {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
.section-light .savings-progress .prog-pct,
.savings-progress .prog-pct {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .progress-bar-bg,
.savings-progress .progress-bar-bg {
  background: rgba(0,0,0,0.08) !important;
}

/* ══════════════════════════════════════════════════════════
   J. INFO-BOX & WARNING-BOX — light section (final override)
   ══════════════════════════════════════════════════════════ */
section.section-light .info-box,
.section.section-light .info-box {
  background: rgba(76,175,80,0.07) !important;
  border: 1px solid rgba(76,175,80,0.3) !important;
  color: #1b5e20 !important;
  -webkit-text-fill-color: #1b5e20 !important;
}
section.section-light .info-box *,
.section.section-light .info-box * {
  color: #1b5e20 !important;
  -webkit-text-fill-color: #1b5e20 !important;
}
section.section-light .info-box strong,
.section.section-light .info-box strong {
  color: #145214 !important;
  -webkit-text-fill-color: #145214 !important;
}
section.section-light .warning-box,
.section.section-light .warning-box {
  background: rgba(244,63,94,0.08) !important;
  border: 1px solid rgba(244,63,94,0.3) !important;
  color: #7a0c1c !important;
  -webkit-text-fill-color: #7a0c1c !important;
}
section.section-light .warning-box *,
.section.section-light .warning-box * {
  color: #7a0c1c !important;
  -webkit-text-fill-color: #7a0c1c !important;
}
section.section-light .warning-box strong,
.section.section-light .warning-box strong {
  color: #b00020 !important;
  -webkit-text-fill-color: #b00020 !important;
}

/* ══════════════════════════════════════════════════════════
   K. COMPARISON TABLE — light section (final override)
   ══════════════════════════════════════════════════════════ */
.section-light .comparison-table td,
.section-light .comp-table td {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  background: #ffffff !important;
  border-bottom-color: rgba(0,0,0,0.07) !important;
}
.section-light .comparison-table th,
.section-light .comp-table th {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  background: #ebebeb !important;
  border-bottom-color: rgba(0,0,0,0.1) !important;
}
.section-light .comparison-table thead th.highlight,
.section-light .comp-table thead th.highlight {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .comparison-table .highlight-col,
.section-light .comp-table .highlight-col {
  background: rgba(26,27,28,0.04) !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .comparison-table .check-icon {
  color: #2e7d32 !important;
}
.section-light .comparison-table .cross-icon {
  color: #888888 !important;
}
.section-light .comparison-table tbody tr:hover td {
  background: #f8f9fa !important;
}

/* ══════════════════════════════════════════════════════════
   L. SECTION LABEL PILL — light section
   ══════════════════════════════════════════════════════════ */
.section-light .section-label {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  background: rgba(26,27,28,0.08) !important;
  border-color: rgba(26,27,28,0.2) !important;
}

/* ══════════════════════════════════════════════════════════
   M. CTA PILLS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .cta-pill {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  background: rgba(0,0,0,0.05) !important;
  border-color: rgba(0,0,0,0.12) !important;
}
.section-light .cta-pill span {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 700 !important;
}

/* ══════════════════════════════════════════════════════════
   N. MODEL PILLS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .model-pill {
  background: rgba(0,0,0,0.04) !important;
  border-color: rgba(0,0,0,0.12) !important;
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
}

/* ══════════════════════════════════════════════════════════
   O. TRUST BAR — light section
   ══════════════════════════════════════════════════════════ */
.section-light .trust-bar,
.section-light .trust-item {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}

/* ══════════════════════════════════════════════════════════
   P. STAT CARDS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .stat-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .stat-card .stat-number {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .stat-card .stat-label {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}

/* ══════════════════════════════════════════════════════════
   Q. INLINE CTA — light section
   ══════════════════════════════════════════════════════════ */
.section-light .inline-cta {
  background: #f0f1f2 !important;
  border-color: rgba(0,0,0,0.12) !important;
}
.section-light .inline-cta h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .inline-cta p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}

/* ══════════════════════════════════════════════════════════
   R. BUTTONS — light section (final definitive override)
   BTN-PRIMARY on light bg → dark bg + white text
   BTN-SECONDARY on light bg → transparent + dark text
   ══════════════════════════════════════════════════════════ */
.section-light .btn-primary,
.section-light a.btn-primary,
.section-light button.btn-primary {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: #1a1b1c !important;
}
.section-light .btn-primary:hover,
.section-light a.btn-primary:hover,
.section-light button.btn-primary:hover {
  background: #333333 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section-light .btn-secondary,
.section-light a.btn-secondary,
.section-light button.btn-secondary {
  background: transparent !important;
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  border-color: rgba(0,0,0,0.35) !important;
}
.section-light .btn-secondary:hover,
.section-light a.btn-secondary:hover,
.section-light button.btn-secondary:hover {
  background: #1a1b1c !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: #1a1b1c !important;
}
.section-light .btn-accent,
.section-light a.btn-accent {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════
   S. TEXT-GRADIENT stays transparent (gradient fill)
      — must NOT be overridden to a solid color
   ══════════════════════════════════════════════════════════ */
.section-light .text-gradient,
section.section-light .text-gradient,
.section.section-light .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* ══════════════════════════════════════════════════════════
   T. COUPON CARDS — light section
   ══════════════════════════════════════════════════════════ */
.section-light .coupon-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.section-light .coupon-amount {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}
.section-light .coupon-title {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.section-light .coupon-desc {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
.section-light .coupon-expiry {
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
}
.section-light .coupon-code-box {
  background: rgba(0,0,0,0.04) !important;
  border-color: rgba(0,0,0,0.12) !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
.section-light .coupon-code-box .copy-icon,
.section-light .coupon-code-box .code-auto {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}

/* ══════════════════════════════════════════════════════════
   U. ARTICLE-BLOCK-LIGHT — same treatment
   ══════════════════════════════════════════════════════════ */
.article-block-light p,
.article-block-light li,
.article-block-light td {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
.article-block-light h1,
.article-block-light h2,
.article-block-light h3,
.article-block-light h4,
.article-block-light h5,
.article-block-light h6 {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
}
.article-block-light .warning-box * {
  color: #7a0c1c !important;
  -webkit-text-fill-color: #7a0c1c !important;
}
.article-block-light .info-box * {
  color: #1b5e20 !important;
  -webkit-text-fill-color: #1b5e20 !important;
}

/* ██████ END COMPREHENSIVE LIGHT-SECTION TEXT FIX v28 ██████ */

/* ==========================================================
   COUPON CARD BUTTON ALIGNMENT FIX — v29 (2026-04-02)
   Ensures all 6 deal-card buttons are perfectly centered
   and text is fully visible across all button variants.
   ========================================================== */

.coupon-card .btn,
.coupon-card a.btn,
.coupon-card a[class*="btn"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  gap: 0.4em !important;
}

/* Ensure text is visible in every button variant inside coupon cards */
.coupon-card .btn-primary,
.coupon-card a.btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.coupon-card .btn-secondary,
.coupon-card a.btn-secondary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.coupon-card .btn-accent,
.coupon-card a.btn-accent {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

.coupon-card .btn-gift,
.coupon-card a.btn-gift {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* Icon inside coupon card buttons */
.coupon-card .btn i,
.coupon-card a.btn i {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

/* ██████ END COUPON CARD BUTTON ALIGNMENT FIX v29 ██████ */

/* ==========================================================
   COUPON CARD BUTTON — CENTER + TEXT COLOR FINAL FIX v30
   Root cause: .btn { -webkit-text-fill-color: inherit } at line
   ~4824 can pull in `transparent` from a parent gradient context,
   making text invisible. This block at the END of the file wins
   the cascade for all 6 coupon-card button variants.
   ========================================================== */

/* ── Center alignment (belt + suspenders) ── */
.coupon-card .btn,
.coupon-card a.btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  gap: 0.45em !important;
  line-height: 1 !important;
}

/* ── White-bg buttons → black text ── */
/* btn-primary (red bg), btn-accent (green bg), btn-gift (white bg) */
.coupon-card .btn-primary,
.coupon-card a.btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.coupon-card .btn-accent,
.coupon-card a.btn-accent {
  background: #4caf50 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.coupon-card .btn-gift,
.coupon-card a.btn-gift {
  background: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ── Transparent-bg buttons → white text ── */
.coupon-card .btn-secondary,
.coupon-card a.btn-secondary {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── Icons inside any coupon-card button ── */
.coupon-card .btn i,
.coupon-card a.btn i {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* ██████ END COUPON CARD BUTTON FINAL FIX v30 ██████ */

/* ==========================================================
   COUPON CARD BUTTON PADDING + ALIGNMENT — v31 (2026-04-02)
   Removes whitespace text-node offset by enforcing flex on
   the element itself + explicit vertical/horizontal padding.
   ========================================================== */
.coupon-card .btn,
.coupon-card a.btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 24px !important;
  gap: 6px !important;
  line-height: 1.2 !important;
}

/* ██████ END COUPON CARD BUTTON PADDING v31 ██████ */

/* ==========================================================
   COUPON CARD BUTTON OUTER SPACING — v32 (2026-04-02)
   Adds margin-top and horizontal breathing room outside the button.
   ========================================================== */
.coupon-card .btn,
.coupon-card a.btn {
  margin-top: 16px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ██████ END COUPON CARD BUTTON OUTER SPACING v32 ██████ */

/* ==========================================================
   PRICING CARD BUTTON CENTER + PADDING FIX — v35 (2026-04-02)
   Prior rule at line ~1174 set justify-content without
   display:flex so centering had no effect.
   ========================================================== */
.pricing-card .btn,
.pricing-card a.btn,
.pricing-card a[class*="btn"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 24px !important;
  gap: 6px !important;
  line-height: 1.2 !important;
  margin-top: 20px !important;
}

/* Text colors per variant */
.pricing-card .btn-primary,
.pricing-card a.btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.pricing-card .btn-secondary,
.pricing-card a.btn-secondary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.pricing-card .btn-accent,
.pricing-card a.btn-accent {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.pricing-card .btn i,
.pricing-card a.btn i {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* ██████ END PRICING CARD BUTTON FIX v35 ██████ */

/* ==========================================================
   PRICING CARD GET PLUS BUTTON TEXT FIX — v36 (2026-04-02)
   The featured pricing card btn-primary has a white/light bg
   so text must be black, not white.
   ========================================================== */
.pricing-card .btn-primary,
.pricing-card a.btn-primary {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.pricing-card .btn-primary:hover,
.pricing-card a.btn-primary:hover {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ██████ END PRICING CARD GET PLUS BUTTON TEXT FIX v36 ██████ */

/* ==========================================================
   REMOVE ::before STRIPE ON CREDIT PACK CARDS — v37 (2026-04-02)
   ========================================================== */
.coupon-card.no-top-stripe::before {
  display: none !important;
  content: none !important;
}

/* ██████ END NO-TOP-STRIPE v37 ██████ */

/* ==========================================================
   CREDIT SYSTEM TABLE WHITESPACE FIX — v38 (2026-04-02)
   Left column was too narrow (28%) causing row height bloat.
   Fix: auto width on first column, compact padding, no flex stretch.
   ========================================================== */

/* Wider first column so text doesn't wrap excessively */
.section-light .table-wrap .comparison-table th:first-child,
.section-light .table-wrap .comparison-table td:first-child {
  width: auto !important;
  min-width: 0 !important;
  white-space: normal !important;
}

/* Tighter cell padding for the credit-system tables */
.section-light .table-wrap .comparison-table th,
.section-light .table-wrap .comparison-table td {
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  vertical-align: middle !important;
}

/* Don't stretch table-wrap to fill full column height */
.section-light .table-wrap {
  flex: none !important;
  align-self: flex-start !important;
}

/* ██████ END CREDIT SYSTEM TABLE WHITESPACE FIX v38 ██████ */

/* ==========================================================
   CREDIT TABLE STRUCTURE FIX — v39 (2026-04-03)
   Fixes second table clipping: remove border-radius from the
   table itself (causes overflow with border-collapse:separate),
   let the wrapper handle rounding. Table fills wrapper fully.
   ========================================================== */
.section-light .table-wrap .comparison-table {
  border-radius: 0 !important;
  border-collapse: collapse !important;
  width: 100% !important;
  table-layout: auto !important;
}

.section-light .table-wrap .comparison-table th,
.section-light .table-wrap .comparison-table td {
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

.section-light .table-wrap .comparison-table tbody tr:last-child td {
  border-bottom: none !important;
}

/* ██████ END CREDIT TABLE STRUCTURE FIX v39 ██████ */

/* ==========================================================
   CREDIT TABLE FULL-WIDTH FIX — v40 (2026-04-03)
   Line 400: .section-light .table-wrap .comparison-table { flex:1 }
   treats table as flex item and breaks width. Also kills min-width
   that causes right-side gap in the "Uses Credits" table.
   ========================================================== */
.section-light .table-wrap {
  display: block !important;
  width: 100% !important;
}
.section-light .table-wrap .comparison-table {
  display: table !important;
  flex: none !important;
  width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed !important;
}
.section-light .table-wrap .comparison-table th:first-child,
.section-light .table-wrap .comparison-table td:first-child {
  width: 60% !important;
}
.section-light .table-wrap .comparison-table th:not(:first-child),
.section-light .table-wrap .comparison-table td:not(:first-child) {
  width: 40% !important;
}

/* ██████ END CREDIT TABLE FULL-WIDTH FIX v40 ██████ */

/* ==========================================================
   HI-GRID-6 CARD CENTER ALIGNMENT FIX — v41 (2026-04-03)
   Base .highlight-item uses display:flex + align-items:flex-start
   (row layout) which overrides the grid card's text-align:center.
   Force column layout with center alignment on all 6 cards.
   ========================================================== */
.hi-grid-6 .highlight-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.hi-grid-6 .hi-icon {
  margin-bottom: 0.5rem !important;
  margin-right: 0 !important;
}

.hi-grid-6 .hi-val {
  text-align: center !important;
  width: 100% !important;
}

.hi-grid-6 .hi-label {
  text-align: center !important;
  width: 100% !important;
}

/* ██████ END HI-GRID-6 CENTER ALIGNMENT FIX v41 ██████ */

/* ==========================================================
   HI-GRID-6 ICON LEFT + TEXT RIGHT LAYOUT — v42 (2026-04-03)
   Icon on left, value+label stacked on right, whole card
   content centered vertically within the card.
   ========================================================== */
.hi-grid-6 .highlight-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: left !important;
  gap: 1rem !important;
}

.hi-grid-6 .hi-icon {
  flex-shrink: 0 !important;
  margin-bottom: 0 !important;
  margin-right: 0 !important;
  font-size: 2rem !important;
  line-height: 1 !important;
}

.hi-grid-6 .hi-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.hi-grid-6 .hi-val {
  text-align: left !important;
  width: auto !important;
  margin-bottom: 0.2rem !important;
}

.hi-grid-6 .hi-label {
  text-align: left !important;
  width: auto !important;
}

/* ██████ END HI-GRID-6 ICON LEFT TEXT RIGHT v42 ██████ */

/* ==========================================================
   HI-GRID-6 ICON SPACING + ODD/EVEN SECTION FIXES — v43 (2026-04-03)
   1. Gap between icon and val/label text in the 6 stat cards
   2. Text colour fixes for sections that switched dark↔light
   ========================================================== */

/* ── Icon spacing ── */
.hi-grid-6 .highlight-item {
  gap: 1.2rem !important;
}
.hi-grid-6 .hi-icon {
  font-size: 2.2rem !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

/* ── Sections that are NOW DARK (were light) ── */
/* How to Activate (#420), Credit System (#577),
   Savings Calc (#708), Maximize Savings (#1041),
   Related Articles (#1110) */

/* All text in these sections: white */
section.section:not(.section-light) {
  background: var(--bg-dark) !important;
  color: var(--text-primary) !important;
}
section.section:not(.section-light) h1,
section.section:not(.section-light) h2,
section.section:not(.section-light) h3,
section.section:not(.section-light) h4,
section.section:not(.section-light) p,
section.section:not(.section-light) li,
section.section:not(.section-light) span,
section.section:not(.section-light) td,
section.section:not(.section-light) th,
section.section:not(.section-light) label {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .section-subtitle,
section.section:not(.section-light) .section-label {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Cards inside dark sections */
section.section:not(.section-light) .feature-card,
section.section:not(.section-light) .step-card,
section.section:not(.section-light) .guide-card {
  background: var(--bg-card) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
section.section:not(.section-light) .feature-card h3,
section.section:not(.section-light) .feature-card p,
section.section:not(.section-light) .step-card h3,
section.section:not(.section-light) .step-card p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .info-box,
section.section:not(.section-light) .warning-box {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
section.section:not(.section-light) .info-box *,
section.section:not(.section-light) .warning-box * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── Sections that are NOW LIGHT (were dark) ── */
/* Deals (#321), Pricing (#470), Features (#640),
   Comparison (#792), Reviews (#950), Bottom CTA (#1078), FAQ (#1162) */

section.section.section-light {
  background: var(--bg-light) !important;
}
section.section.section-light h1,
section.section.section-light h2,
section.section.section-light h3,
section.section.section-light h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light p,
section.section.section-light li,
section.section.section-light span:not(.text-gradient):not(.check):not(.cross):not(.coupon-badge):not(.check-icon) {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
section.section.section-light .section-label {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
section.section.section-light .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* Light section cards */
section.section.section-light .feature-card,
section.section.section-light .review-card,
section.section.section-light .pricing-card,
section.section.section-light .faq-item,
section.section.section-light .guide-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
section.section.section-light .feature-card h3,
section.section.section-light .feature-card p,
section.section.section-light .review-card p,
section.section.section-light .review-card .name,
section.section.section-light .review-card .role,
section.section.section-light .faq-question span,
section.section.section-light .faq-answer p {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}

/* Coupon cards in light section (Deals) */
section.section.section-light .coupon-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
section.section.section-light .coupon-deal-amount {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}
section.section.section-light .coupon-card h3,
section.section.section-light .coupon-desc {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
section.section.section-light .coupon-expiry {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
section.section.section-light .coupon-code-box {
  background: rgba(0,0,0,0.04) !important;
  border-color: rgba(0,0,0,0.12) !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
section.section.section-light .coupon-code-box .code,
section.section.section-light .coupon-code-box .code-auto {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}

/* ██████ END ODD/EVEN SECTION FIX v43 ██████ */

/* ==========================================================
   CTA-SECTION TEXT WHITE FIX — v44 (2026-04-03)
   .cta-section has its own dark card background. When placed
   inside a .section-light parent the v43/v28 rules force dark
   text (#111/#444) making it invisible. Full parent-chain selectors
   are required to beat the specificity of v43 section-light rules.
   ========================================================== */
section.section.section-light .cta-section,
section.section-light .cta-section {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .cta-section h2,
section.section.section-light .cta-section h3,
section.section.section-light .cta-section h4,
section.section-light .cta-section h2,
section.section-light .cta-section h3,
section.section-light .cta-section h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .cta-section p,
section.section.section-light .cta-section li,
section.section-light .cta-section p,
section.section-light .cta-section li {
  color: #e0e0e0 !important;
  -webkit-text-fill-color: #e0e0e0 !important;
}
section.section.section-light .cta-section span:not(.text-gradient),
section.section-light .cta-section span:not(.text-gradient) {
  color: #e0e0e0 !important;
  -webkit-text-fill-color: #e0e0e0 !important;
}
section.section.section-light .cta-section .section-label,
section.section-light .cta-section .section-label {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section.section-light .cta-section .text-gradient,
section.section-light .cta-section .text-gradient {
  background: linear-gradient(135deg, #f43f5e, #f74d6a, #cb1c3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}
section.section.section-light .cta-section .cta-pill,
section.section-light .cta-section .cta-pill {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .cta-section .cta-pill span,
section.section-light .cta-section .cta-pill span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END CTA-SECTION TEXT WHITE FIX v44 ██████ */

/* ==========================================================
   COMPREHENSIVE TEXT VISIBILITY FIX — v44 (2026-04-03)
   Surgical per-component overrides for every section.
   Does NOT touch: .hero, #header, footer.
   ========================================================== */

/* ════════════ DARK SECTIONS ════════════ */
section.section:not(.section-light) .section-label {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .section-title,
section.section:not(.section-light) h2,
section.section:not(.section-light) h3,
section.section:not(.section-light) h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .section-title .text-gradient,
section.section:not(.section-light) h2 .text-gradient {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
section.section:not(.section-light) .section-subtitle {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) p {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) li {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .step-card {
  background: var(--bg-card) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
section.section:not(.section-light) .step-card h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .step-card p,
section.section:not(.section-light) .step-num {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .feature-card {
  background: var(--bg-card) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
section.section:not(.section-light) .feature-card h3,
section.section:not(.section-light) .feature-card h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .feature-card p {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .blog-card {
  background: var(--bg-card) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
section.section:not(.section-light) .blog-card h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .blog-card p {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .blog-tag {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .blog-card-meta span {
  color: #a0a1a4 !important;
  -webkit-text-fill-color: #a0a1a4 !important;
}
section.section:not(.section-light) .savings-widget {
  background: var(--bg-card) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
section.section:not(.section-light) .tool-name,
section.section:not(.section-light) .tool-price {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .savings-total span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .savings-note {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .savings-progress h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .progress-header span,
section.section:not(.section-light) .prog-pct {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .hi-grid-6 .highlight-item {
  background: var(--bg-card) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
section.section:not(.section-light) .hi-val {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .hi-label {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .comparison-table th {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .comparison-table td {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section:not(.section-light) .info-box,
section.section:not(.section-light) .warning-box {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
section.section:not(.section-light) .info-box *,
section.section:not(.section-light) .warning-box * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ════════════ LIGHT SECTIONS ════════════ */
section.section.section-light .section-label {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
section.section.section-light .section-title,
section.section.section-light h2,
section.section.section-light h3,
section.section.section-light h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .section-title .text-gradient,
section.section.section-light h2 .text-gradient {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
section.section.section-light .section-subtitle,
section.section.section-light p {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
section.section.section-light li {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
section.section.section-light .coupon-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
section.section.section-light .coupon-deal-amount {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}
section.section.section-light .coupon-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .coupon-desc {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
section.section.section-light .coupon-expiry {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
section.section.section-light .coupon-code-box {
  background: rgba(0,0,0,0.05) !important;
  border-color: rgba(0,0,0,0.12) !important;
}
section.section.section-light .coupon-code-box .code,
section.section.section-light .coupon-code-box .code-auto,
section.section.section-light .coupon-code-box .copy-icon {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
section.section.section-light .pricing-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
section.section.section-light .pricing-card .plan-name,
section.section.section-light .pricing-card .price {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .pricing-card .price-period,
section.section.section-light .pricing-card .price-original {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
section.section.section-light .pricing-card .pricing-features li {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
section.section.section-light .pricing-card .popular-tag {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .pricing-card .price-save {
  color: #4caf50 !important;
  -webkit-text-fill-color: #4caf50 !important;
}
section.section.section-light .feature-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
section.section.section-light .feature-card h3,
section.section.section-light .feature-card h4 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .feature-card p {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
section.section.section-light .comparison-table th {
  background: #e8e9ea !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .comparison-table td {
  background: #ffffff !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
section.section.section-light .comparison-table .highlight-col {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .check-icon {
  color: #4caf50 !important;
  -webkit-text-fill-color: #4caf50 !important;
}
section.section.section-light .review-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
section.section.section-light .review-text,
section.section.section-light .review-card p {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
section.section.section-light .review-author .name {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .review-author .role,
section.section.section-light .review-source {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
section.section.section-light .faq-item {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
section.section.section-light .faq-question span {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .faq-icon {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}
section.section.section-light .faq-answer p,
section.section.section-light .faq-answer li {
  color: #444444 !important;
  -webkit-text-fill-color: #444444 !important;
}
section.section.section-light .cta-section {
  background: #1a1b1c !important;
  border-radius: 20px !important;
}
section.section.section-light .cta-section h2,
section.section.section-light .cta-section h3,
section.section.section-light .cta-section p,
section.section.section-light .cta-section li {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .cta-section h2 .text-gradient {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
section.section.section-light .cta-section .cta-pill,
section.section.section-light .cta-section .cta-pill span,
section.section.section-light .cta-section .section-label {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .info-box {
  background: #e8f5e9 !important;
  border-color: #4caf50 !important;
}
section.section.section-light .info-box,
section.section.section-light .info-box * {
  color: #1b5e20 !important;
  -webkit-text-fill-color: #1b5e20 !important;
}
section.section.section-light .warning-box {
  background: #fce4ec !important;
  border-color: #f43f5e !important;
}
section.section.section-light .warning-box,
section.section.section-light .warning-box * {
  color: #7a0c1c !important;
  -webkit-text-fill-color: #7a0c1c !important;
}

/* Buttons immune to section text colour */
section.section:not(.section-light) .btn-primary,
section.section.section-light .btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .pricing-card .btn-primary {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section:not(.section-light) .btn-secondary,
section.section.section-light .btn-secondary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .btn-accent,
section.section.section-light .btn-accent,
section.section:not(.section-light) .btn-gift,
section.section.section-light .btn-gift {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ██████ END COMPREHENSIVE TEXT VISIBILITY FIX v44 ██████ */

/* ==========================================================
   CTA-SECTION PILLS + BUTTON FIX — v45 (2026-04-03)
   Problem 1: .section-light .cta-pill (v28) and .section-light
              .cta-section .btn-primary (v23) have higher specificity
              than v44 rules — pills get dark bg, button gets dark bg.
   Fix: deeper selector chain wins the cascade at file end.
   ========================================================== */

/* ── Pills: white text on semi-transparent dark bg ── */
section.section.section-light .cta-section .cta-discount-pills .cta-pill,
section.section-light .cta-section .cta-discount-pills .cta-pill {
  color: #e0e0e0 !important;
  -webkit-text-fill-color: #e0e0e0 !important;
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.18) !important;
}
section.section.section-light .cta-section .cta-discount-pills .cta-pill span,
section.section-light .cta-section .cta-discount-pills .cta-pill span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── Button: brand red bg, white text ── */
section.section.section-light .cta-section .btn-primary,
section.section-light .cta-section .btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .cta-section .btn-primary:hover,
section.section-light .cta-section .btn-primary:hover {
  background: #cb1c3a !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .cta-section .btn-primary i,
section.section-light .cta-section .btn-primary i,
section.section.section-light .cta-section .btn-primary *,
section.section-light .cta-section .btn-primary * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END CTA-SECTION PILLS + BUTTON FIX v45 ██████ */

/* ==========================================================
   CTA-PILL SPAN WHITE TEXT — v46 (2026-04-03)
   v43 rule:
     section.section.section-light span:not(x):not(x):not(x):not(x):not(x)
   has specificity (0,7,2) and beats the v45 span rule (0,5,2).
   Fix: add three :not() clauses to reach (0,8,2) and win.
   ========================================================== */
section.section.section-light .cta-section .cta-discount-pills .cta-pill span:not(.text-gradient):not(.check):not(.cross),
section.section-light .cta-section .cta-discount-pills .cta-pill span:not(.text-gradient):not(.check):not(.cross) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END CTA-PILL SPAN WHITE TEXT v46 ██████ */

/* ==========================================================
   MULTI-SECTION FIXES — v45 (2026-04-03)
   1. Active Deals badges (light bg) — dark-readable colours
   2. coupon-card::before stripe removed from light section
   3. How to Activate — step nums + text dark, CTA btn white text
   4. Pricing featured card — solid white bg, no gradient
   5. Credit pack cards — all text dark on white bg
   ========================================================== */

/* ── 1. Active Deals (now light section) badge colours ── */
section.section.section-light .coupon-badge {
  background: rgba(0,0,0,0.07) !important;
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
  border-color: rgba(0,0,0,0.15) !important;
}
section.section.section-light .coupon-badge.hot {
  background: rgba(244,63,94,0.1) !important;
  color: #c0122e !important;
  -webkit-text-fill-color: #c0122e !important;
  border-color: rgba(244,63,94,0.3) !important;
}
section.section.section-light .coupon-badge.verified {
  background: rgba(76,175,80,0.1) !important;
  color: #2e7d32 !important;
  -webkit-text-fill-color: #2e7d32 !important;
  border-color: rgba(76,175,80,0.3) !important;
}
section.section.section-light .coupon-badge.free {
  background: rgba(33,150,243,0.1) !important;
  color: #1565c0 !important;
  -webkit-text-fill-color: #1565c0 !important;
  border-color: rgba(33,150,243,0.3) !important;
}

/* ── 2. Remove top stripe (::before) on coupon cards in light section ── */
section.section.section-light .coupon-card::before {
  display: none !important;
  content: none !important;
}

/* ── 3. How to Activate (dark section) — step numbers & text visible ── */
section.section:not(.section-light) .step-num {
  background: #ffffff !important;
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
}
section.section:not(.section-light) .step-card h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section:not(.section-light) .step-card p {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
/* CTA button in dark section — white text */
section.section:not(.section-light) .btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── 4. Pricing featured card (light section) — solid white, no gradient ── */
section.section.section-light .pricing-card.featured,
#pricing .pricing-card.featured {
  background: #ffffff !important;
  background-image: none !important;
  border: 2px solid #f43f5e !important;
  box-shadow: 0 8px 32px rgba(244,63,94,0.15) !important;
}
section.section.section-light .pricing-card.featured .plan-name {
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
}
section.section.section-light .pricing-card.featured .price {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section.section-light .pricing-card.featured .price-period {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}
section.section.section-light .pricing-card.featured .pricing-features li {
  color: #333333 !important;
  -webkit-text-fill-color: #333333 !important;
}
/* Featured card CTA — light text on red bg */
section.section.section-light .pricing-card.featured .btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── 5. Credit pack cards (light section) — all text dark ── */
section.section.section-light .coupon-card .coupon-deal-amount {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}
section.section.section-light .coupon-card .coupon-desc {
  color: #555555 !important;
  -webkit-text-fill-color: #555555 !important;
}
section.section.section-light .coupon-card h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
/* Buy Pack / Buy Mega Pack buttons — white text on coloured bg */
section.section.section-light .coupon-card .btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .coupon-card .btn-accent {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ██████ END MULTI-SECTION FIXES v45 ██████ */

/* ==========================================================
   CREDIT SYSTEM BOX COLOURS — v47 (2026-04-03)
   Left card (.warning-box) → red background, white text.
   Right card (.info-box)   → green background, white text.
   Scoped to the credit-system section to avoid affecting
   warning/info boxes elsewhere on the page.
   ========================================================== */
#credit-system .warning-box,
#credit-system .warning-box span,
#credit-system .warning-box strong {
  background: rgba(220, 38, 38, 0.20) !important;
  border-color: rgba(220, 38, 38, 0.50) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

#credit-system .info-box,
#credit-system .info-box span,
#credit-system .info-box strong {
  background: rgba(34, 197, 94, 0.18) !important;
  border-color: rgba(34, 197, 94, 0.45) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END CREDIT SYSTEM BOX COLOURS v47 ██████ */

/* ==========================================================
   TEXT VISIBILITY TARGETED FIXES — v48 (2026-04-03)
   1. How to Activate CTA button — white bg needs BLACK text
   2. Pricing featured card — all text dark
   3. Credit pack deal amounts — dark text
   ========================================================== */

/* ── 1. How to Activate CTA (dark section, white bg button) ── */
#deals ~ section .btn-primary,
section.section:not(.section-light) .btn-primary.btn-lg {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section:not(.section-light) .btn-primary.btn-lg i,
section.section:not(.section-light) .btn-primary.btn-lg span {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ── 2. Pricing featured card — force all text dark ── */
.pricing-card.featured .plan-name,
.pricing-card.featured .price,
.pricing-card.featured .price sup,
.pricing-card.featured .price-period,
.pricing-card.featured .price-original,
.pricing-card.featured .pricing-features li,
.pricing-card.featured h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
.pricing-card.featured .price-save {
  color: #2e7d32 !important;
  -webkit-text-fill-color: #2e7d32 !important;
}

/* ── 3. Credit pack deal amounts — dark on white bg ── */
#pricing .coupon-card .coupon-deal-amount,
section.section.section-light .coupon-card .coupon-deal-amount,
.no-top-stripe .coupon-deal-amount {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ██████ END TARGETED FIXES v48 ██████ */

/* ==========================================================
   PRICING FEATURED CARD COMPLETE TEXT FIX — v49 (2026-04-03)
   Targets every child element including spans, sup, id'd elements
   inside the featured Plus card so nothing stays white.
   ========================================================== */

/* Price value (the <span id="plus-val"> inside .price) */
#pricing .pricing-card.featured *,
section.section.section-light .pricing-card.featured * {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* Exceptions: keep gradient on text-gradient spans */
#pricing .pricing-card.featured .text-gradient,
section.section.section-light .pricing-card.featured .text-gradient {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* Keep popular-tag white text on red bg */
#pricing .pricing-card.featured .popular-tag,
section.section.section-light .pricing-card.featured .popular-tag {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Keep price-save green */
#pricing .pricing-card.featured .price-save,
section.section.section-light .pricing-card.featured .price-save {
  color: #2e7d32 !important;
  -webkit-text-fill-color: #2e7d32 !important;
}

/* Keep CTA button white text on red bg */
#pricing .pricing-card.featured .btn-primary,
section.section.section-light .pricing-card.featured .btn-primary,
#pricing .pricing-card.featured a.btn,
section.section.section-light .pricing-card.featured a.btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END PRICING FEATURED CARD COMPLETE TEXT FIX v49 ██████ */

/* ==========================================================
   FEATURES PAGE SPARKPAGES BTN TEXT FIX — v50 (2026-04-03)
   Dark section .btn-primary has a white/light bg. The v43
   dark-section rule forces all text to #ffffff, making the
   button label invisible (white-on-white). Force dark text.
   ========================================================== */
section.section:not(.section-light) .btn-primary,
section.section:not(.section-light) a.btn-primary {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section:not(.section-light) .btn-primary i,
section.section:not(.section-light) a.btn-primary i {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ██████ END FEATURES PAGE SPARKPAGES BTN TEXT FIX v50 ██████ */

/* ==========================================================
   PRICING FEATURED CARD DARK TEXT — v50 (2026-04-03)
   Uses #pricing ID selector to match specificity of the
   offending rules at lines 10105-10135 and 10608-10625.
   ========================================================== */

#pricing .pricing-card.featured,
#pricing .pricing-card.featured .plan-name,
#pricing .pricing-card.featured .price,
#pricing .pricing-card.featured .price sup,
#pricing .pricing-card.featured #plus-val,
#pricing .pricing-card.featured .price-period,
#pricing .pricing-card.featured .price-original,
#pricing .pricing-card.featured .price-save,
#pricing .pricing-card.featured .pricing-features li,
#pricing .pricing-card.featured .pricing-features li span,
#pricing .pricing-card.featured h3,
#pricing .pricing-card.featured p {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* Keep check green, cross red */
#pricing .pricing-card.featured .pricing-features li .check {
  color: #2e7d32 !important;
  -webkit-text-fill-color: #2e7d32 !important;
}
#pricing .pricing-card.featured .pricing-features li .cross {
  color: #c62828 !important;
  -webkit-text-fill-color: #c62828 !important;
}

/* Keep price-save green */
#pricing .pricing-card.featured .price-save {
  color: #2e7d32 !important;
  -webkit-text-fill-color: #2e7d32 !important;
}

/* popular-tag stays white on red */
#pricing .pricing-card.featured .popular-tag {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* CTA button — red bg, white text */
#pricing .pricing-card.featured .btn,
#pricing .pricing-card.featured a.btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
#pricing .pricing-card.featured .btn-primary,
#pricing .pricing-card.featured a.btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END PRICING FEATURED CARD DARK TEXT v50 ██████ */

/* ==========================================================
   SAVINGS-PROGRESS CARD TEXT FIX — v51 (2026-04-03)
   .savings-progress sits inside section.section (dark bg) but
   the card itself has a white background. v43 forces all spans
   to #ffffff making labels and percentages invisible on white.
   ========================================================== */
.savings-progress .progress-header span,
.savings-progress .prog-pct,
.savings-progress h3 {
  color: #222222 !important;
  -webkit-text-fill-color: #222222 !important;
}

/* ██████ END SAVINGS-PROGRESS CARD TEXT FIX v51 ██████ */

/* ==========================================================
   PRICING FEATURED CARD DARK TEXT FINAL — v51 (2026-04-03)
   Uses .section#pricing to match the highest-specificity rules
   at lines 10125/10135 (.section#pricing .pricing-card.featured).
   ========================================================== */

.section#pricing .pricing-card.featured .plan-name,
.section#pricing .pricing-card.featured .price,
.section#pricing .pricing-card.featured .price sup,
.section#pricing .pricing-card.featured #plus-val,
.section#pricing .pricing-card.featured .price-period,
.section#pricing .pricing-card.featured .price-original,
.section#pricing .pricing-card.featured h3,
.section#pricing .pricing-card.featured p {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

.section#pricing .pricing-card.featured .pricing-features li,
.section#pricing .pricing-features li {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

.section#pricing .pricing-card.featured .pricing-features li::before {
  color: #2e7d32 !important;
}

/* Keep check/cross icons legible */
.section#pricing .pricing-card.featured .pricing-features li .check {
  color: #2e7d32 !important;
  -webkit-text-fill-color: #2e7d32 !important;
}
.section#pricing .pricing-card.featured .pricing-features li .cross {
  color: #c62828 !important;
  -webkit-text-fill-color: #c62828 !important;
}

/* price-save stays green */
.section#pricing .pricing-card.featured .price-save {
  color: #2e7d32 !important;
  -webkit-text-fill-color: #2e7d32 !important;
}

/* popular-tag stays white */
.section#pricing .pricing-card.featured .popular-tag {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* CTA button white text on red */
.section#pricing .pricing-card.featured .btn-primary,
.section#pricing .pricing-card.featured a.btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END PRICING FEATURED CARD DARK TEXT FINAL v51 ██████ */

/* ==========================================================
   PRICING CARDS 1+3 WHITE TEXT RESTORE — v52 (2026-04-03)
   v51 accidentally set all #pricing li to #111111.
   Cards 1 (Free) and 3 (Pro) have dark bg → need white text.
   Only the featured (Plus) middle card gets dark text.
   ========================================================== */

/* Cards 1 & 3: dark bg → white/light text */
.section#pricing .pricing-card:not(.featured) .plan-name {
  color: #b0b1b4 !important;
  -webkit-text-fill-color: #b0b1b4 !important;
}
.section#pricing .pricing-card:not(.featured) .price,
.section#pricing .pricing-card:not(.featured) .price sup,
.section#pricing .pricing-card:not(.featured) #free-price,
.section#pricing .pricing-card:not(.featured) #pro-price {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.section#pricing .pricing-card:not(.featured) .price-period {
  color: #9a9b9e !important;
  -webkit-text-fill-color: #9a9b9e !important;
}
.section#pricing .pricing-card:not(.featured) .pricing-features li {
  color: #e8e9ec !important;
  -webkit-text-fill-color: #e8e9ec !important;
}
.section#pricing .pricing-card:not(.featured) .pricing-features li .check {
  color: #4ade80 !important;
  -webkit-text-fill-color: #4ade80 !important;
}
.section#pricing .pricing-card:not(.featured) .pricing-features li .cross {
  color: #777a7e !important;
  -webkit-text-fill-color: #777a7e !important;
}

/* Fix the v51 overbroad rule — restore white for non-featured li */
.section#pricing .pricing-features li:not(.pricing-card.featured .pricing-features li) {
  color: #e8e9ec !important;
  -webkit-text-fill-color: #e8e9ec !important;
}

/* ██████ END PRICING CARDS 1+3 WHITE TEXT RESTORE v52 ██████ */

/* ==========================================================
   SAVINGS-PROGRESS CARD TEXT — FINAL FIX v53 (2026-04-03)
   Uses the full parent chain to beat ALL prior overrides.
   Progress bar fills (.progress-bar-fill, .progress-bar-bg)
   are excluded so the red bars are never affected.
   ========================================================== */
section.section:not(.section-light) .savings-progress h3 {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}
section.section:not(.section-light) .savings-progress .progress-header span:not(.progress-bar-fill):not(.progress-bar-bg),
section.section:not(.section-light) .savings-progress .prog-pct {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
}

/* ██████ END SAVINGS-PROGRESS CARD TEXT FINAL FIX v53 ██████ */

/* ==========================================================
   FAQ ANSWER TOP PADDING — v54 (2026-04-03)
   Adds breathing space between the question bar and the
   answer text. Uses full chain to beat prior padding:0 rules.
   Progress bars and other components are unaffected.
   ========================================================== */
section.section.section-light .faq-item .faq-answer .faq-answer-inner,
section.section-light .faq-item .faq-answer .faq-answer-inner {
  padding-top: 1rem !important;
}

/* ██████ END FAQ ANSWER TOP PADDING v54 ██████ */

/* ==========================================================
   COMPARE SECTION CTA BUTTON WHITE TEXT — v53 (2026-04-03)
   ========================================================== */

#compare .btn-primary,
#compare a.btn-primary,
#compare .btn-primary *,
#compare a.btn-primary * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END COMPARE SECTION CTA BUTTON v53 ██████ */

/* ==========================================================
   PRICING PAGE — UNIFIED BUTTON + TEXT FIX v55 (2026-04-03)
   All .btn-primary on pricing page: red bg, white text.
   Placed at file end — beats all prior overrides.
   ========================================================== */

/* All pricing/feature card buttons: red bg, white text */
section.section.section-light .pricing-card .btn-primary,
section.section.section-light .pricing-card a.btn-primary,
section.section.section-light .feature-card .btn-primary,
section.section.section-light .feature-card a.btn-primary {
  background: #f43f5e !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  gap: 0.4em !important;
}
section.section.section-light .pricing-card .btn-primary:hover,
section.section.section-light .pricing-card a.btn-primary:hover,
section.section.section-light .feature-card .btn-primary:hover,
section.section.section-light .feature-card a.btn-primary:hover {
  background: #cb1c3a !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .pricing-card .btn-primary *,
section.section.section-light .pricing-card a.btn-primary *,
section.section.section-light .feature-card .btn-primary *,
section.section.section-light .feature-card a.btn-primary * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Non-featured pricing card text: dark on white card */
section.section.section-light .pricing-card:not(.featured) .plan-name,
section.section.section-light .pricing-card:not(.featured) .price,
section.section.section-light .pricing-card:not(.featured) .price sup,
section.section.section-light .pricing-card:not(.featured) .price-period,
section.section.section-light .pricing-card:not(.featured) .pricing-features li {
  color: #222222 !important;
  -webkit-text-fill-color: #222222 !important;
}
section.section.section-light .pricing-card:not(.featured) .pricing-features .cross {
  color: #cc0000 !important;
  -webkit-text-fill-color: #cc0000 !important;
}

/* ██████ END PRICING PAGE UNIFIED BUTTON + TEXT FIX v55 ██████ */

/* ==========================================================
   CREDIT PACK CARD BUTTON ALIGNMENT — v58 (2026-04-03)
   Centers text and adds padding inside the Buy buttons
   on the credit pack feature cards.
   ========================================================== */
section.section.section-light .feature-card .btn-primary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 24px !important;
  gap: 0.4em !important;
  line-height: 1.2 !important;
}

/* ██████ END CREDIT PACK CARD BUTTON ALIGNMENT v58 ██████ */

/* ==========================================================
   TABLE-WRAP FULL WIDTH FIX — v66 (2026-04-04)
   .section-light .table-wrap was set to display:flex which
   shrinks the wrapper to content width. Force block + full
   width so .ft tables stretch across the entire container.
   ========================================================== */

.section-light .table-wrap,
.article-body .table-wrap,
.section-light .article-body .table-wrap {
  display: block !important;
  width: 100% !important;
  overflow-x: auto !important;
}

.section-light .table-wrap .ft,
.article-body .table-wrap .ft,
.section-light .table-wrap table {
  width: 100% !important;
  table-layout: auto !important;
}

/* ██████ END TABLE-WRAP FULL WIDTH FIX v66 ██████ */

/* ==========================================================
   ARTICLE-BODY TABLE OVERFLOW FIX — v67 (2026-04-04)
   .article-body { overflow: hidden } clips table children.
   Switch to overflow: visible so tables fill full width.
   ========================================================== */

.article-body {
  overflow: visible !important;
}

.article-body .table-wrap {
  display: block !important;
  width: 100% !important;
  overflow-x: auto !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.article-body .table-wrap > div {
  width: 100% !important;
}

.article-body .table-wrap table,
.article-body .table-wrap .ft {
  width: 100% !important;
  margin: 0 !important;
}

/* ██████ END ARTICLE-BODY TABLE OVERFLOW FIX v67 ██████ */

/* ==========================================================
   SIDEBAR-STATS-CARD WHITE TEXT — v68 (2026-04-06)
   Beats section.section.section-light span:not()x5 (0,7,2)
   by adding .sidebar-stats-card to the chain.
   ========================================================== */

section.section.section-light .sidebar-stats-card span:not(.text-gradient):not(.check):not(.cross):not(.coupon-badge):not(.check-icon) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END SIDEBAR-STATS-CARD WHITE TEXT v68 ██████ */

/* ==========================================================
   ALT-CARD WHITE TEXT — v69 (2026-04-06)
   Fixes text color inside .alt-card on section-light pages.
   Beats section.section.section-light h3/p/li/span rules.
   ========================================================== */

section.section.section-light .alt-card h3,
section.section.section-light .alt-card .alt-tagline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .alt-card p,
section.section.section-light .alt-card ul li {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section.section-light .alt-card ul li strong,
section.section.section-light .alt-card ul li b {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .alt-card span:not(.text-gradient):not(.check):not(.cross):not(.coupon-badge):not(.check-icon) {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section.section-light .alt-card .alt-card-divider {
  background: rgba(255,255,255,0.1) !important;
}
section.section.section-light .alt-card .best-for-tag {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* KEY FEATURES label */
section.section.section-light .alt-card .features-label,
section.section.section-light .alt-card [class*="features"] {
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
}

/* ██████ END ALT-CARD WHITE TEXT v69 ██████ */

/* ==========================================================
   SIDEBAR DARK CARD TEXT — v70 (2026-04-06)
   Fixes span/p/div text inside sidebar dark cards (.sidebar-deal-card,
   .sidebar-stats-card, .review-sidebar > div) on section-light pages.
   Beats section.section.section-light span:not()x4 (0,5,2)
   by using specificity (0,6,2).
   ========================================================== */

/* Deal card */
section.section.section-light .sidebar-deal-card span,
section.section.section-light .sidebar-deal-card div {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .sidebar-deal-card p {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section.section-light .sidebar-deal-card .deal-badge {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}
section.section.section-light .sidebar-deal-card .big-saving {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Quick Stats card — sidebar divs with dark bg-card2 background */
section.section.section-light .review-sidebar span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END SIDEBAR DARK CARD TEXT v70 ██████ */

/* ==========================================================
   GENSPARK-WIN-BOX TEXT FIX — v70 (2026-04-06)
   h4 heading → brand red, all content → white/light.
   Beats section.section.section-light h4/li/strong rules.
   ========================================================== */

section.section.section-light .genspark-win-box h4,
section.section.section-light div.genspark-win-box h4 {
  color: #f43f5e !important;
  -webkit-text-fill-color: #f43f5e !important;
}
section.section.section-light .genspark-win-box ul li,
section.section.section-light div.genspark-win-box ul li {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}
section.section.section-light .genspark-win-box ul li strong,
section.section.section-light div.genspark-win-box ul li strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
section.section.section-light .genspark-win-box ul li span:not(.text-gradient):not(.check):not(.cross):not(.coupon-badge):not(.check-icon),
section.section.section-light div.genspark-win-box ul li span:not(.text-gradient):not(.check):not(.cross):not(.coupon-badge):not(.check-icon) {
  color: #d4d5d6 !important;
  -webkit-text-fill-color: #d4d5d6 !important;
}

/* ██████ END GENSPARK-WIN-BOX TEXT FIX v70 ██████ */

/* ==========================================================
   ALTERNATIVES PAGE BTN-SECONDARY DARK TEXT — v71 (2026-04-06)
   "Read Full Genspark Review" button: dark text on normal state.
   Hover intentionally NOT overridden — inherits existing hover.
   Beats section.section.section-light .btn-secondary (0,2,1)
   with .btn-group .btn-secondary (0,3,1).
   ========================================================== */

section.section.section-light .btn-group a.btn.btn-secondary,
section.section.section-light .btn-group .btn.btn-secondary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(255,255,255,0.5) !important;
  background: transparent !important;
}
section.section.section-light .btn-group a.btn.btn-secondary:hover,
section.section.section-light .btn-group a.btn.btn-secondary:focus,
section.section.section-light .btn-group .btn.btn-secondary:hover,
section.section.section-light .btn-group .btn.btn-secondary:focus {
  color: #1a1b1c !important;
  -webkit-text-fill-color: #1a1b1c !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

/* ██████ END ALTERNATIVES PAGE BTN-SECONDARY DARK TEXT v71 ██████ */

/* ==========================================================
   SIDEBAR BTN-GIFT WHITE TEXT — v71 (2026-04-06)
   Fixes "Start Free" btn-gift text inside sidebar dark deal cards
   on section-light pages. Beats section.section.section-light .btn-gift
   (0,2,1) by using specificity (0,3,1).
   ========================================================== */

section.section.section-light .sidebar-deal-card .btn-gift,
section.section.section-light .sidebar-deal-card a.btn-gift,
section.section.section-light .alt-start-free-btn,
section.section.section-light a.alt-start-free-btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END SIDEBAR BTN-GIFT WHITE TEXT v71 ██████ */

/* ==========================================================
   SIDEBAR-STATS-CARD DIV/HEADING TEXT — v72 (2026-04-06)
   Fixes the heading div and label divs inside .sidebar-stats-card
   on section-light pages. Span rule already in v68; this covers divs.
   ========================================================== */

section.section.section-light .sidebar-stats-card div {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END SIDEBAR-STATS-CARD DIV/HEADING TEXT v72 ██████ */

/* ==========================================================
   HERO IMAGE HEIGHT — v73 (2026-04-08)
   Forces the hero image on the homepage to render taller.
   Previous rules set height:auto !important which collapsed
   wide/shallow landscape images to a short strip.
   Fix: give the wrap a fixed height on desktop, let the img
   fill it with object-fit:cover.
   ========================================================== */

/* Desktop: force hero image wrap to be tall */
.hero .hero-img-wrap {
  height: 480px !important;
  min-height: 480px !important;
  max-height: 480px !important;
  overflow: hidden !important;
  border-radius: 16px !important;
}

/* Image fills the wrapper, cropping sides if needed */
.hero .hero-img-wrap .hero-img,
.hero .hero-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 16px !important;
  display: block !important;
}

/* Tablet: slightly shorter */
@media (max-width: 960px) {
  .hero .hero-img-wrap {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
    max-width: 100% !important;
    margin: 0 auto 1.5rem !important;
  }
}

/* Mobile: compact */
@media (max-width: 600px) {
  .hero .hero-img-wrap {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
  }
}

/* ██████ END HERO IMAGE HEIGHT v73 ██████ */

/* ==========================================================
   HERO FLOATING CARDS FULLY VISIBLE — v74 (2026-04-08)
   v73 set overflow:hidden on .hero-img-wrap which clipped
   .card1 (right:-5%) and .card2 (left:-5%) outside the box.
   Fix: move height+clip to .hero-img-inner, keep wrap
   overflow:visible, reposition cards inside bounds.
   ========================================================== */

/* Wrap: no clipping — cards must overflow freely */
.hero .hero-img-wrap,
.hero-img-wrap {
  overflow: visible !important;
  height: auto !important;
  min-height: unset !important;
  max-height: none !important;
  border-radius: 0 !important;
  position: relative !important;
  /* padding keeps cards from touching the screen edge */
  padding: 40px 50px !important;
}

/* Inner div (wraps only the <img>) handles clipping */
.hero .hero-img-inner {
  width: 100% !important;
  height: 440px !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5) !important;
  position: relative !important;
  display: block !important;
}

/* Image fills the inner clip box */
.hero .hero-img-inner .hero-img,
.hero .hero-img-inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
}

/* Floating cards: reposition inside wrap padding zone */
.hero .hero-floating-card.card1 {
  top: 10px !important;
  right: 0px !important;
}
.hero .hero-floating-card.card2 {
  bottom: 10px !important;
  left: 0px !important;
}

/* Tablet */
@media (max-width: 960px) {
  .hero .hero-img-wrap,
  .hero-img-wrap {
    padding: 30px 40px !important;
    max-width: 100% !important;
    margin: 0 auto 1.5rem !important;
  }
  .hero .hero-img-inner {
    height: 320px !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero .hero-img-wrap,
  .hero-img-wrap {
    padding: 30px 20px !important;
  }
  .hero .hero-img-inner {
    height: 220px !important;
  }
}

/* ██████ END HERO FLOATING CARDS FULLY VISIBLE v74 ██████ */

/* ==========================================================
   CREDIT PACK BUTTON WHITE TEXT — v75 (2026-04-08)
   Multiple earlier coupon-card rules force .btn-accent to
   color:#111111. This override targets only the normal state
   (no :hover selector) of both Buy Pack + Buy Mega Pack.
   Uses section.section + ID #deals for maximum specificity
   without touching hover state.
   ========================================================== */

section.section .coupon-card.no-top-stripe .btn-primary,
section.section .coupon-card.no-top-stripe a.btn-primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

section.section .coupon-card.no-top-stripe .btn-accent,
section.section .coupon-card.no-top-stripe a.btn-accent {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ██████ END CREDIT PACK BUTTON WHITE TEXT v75 ██████ */



/* ==========================================================
   STICKY POPUP "$600 OFF" SOLID RED — v29 (2026-04-08)
   Replaces the red-to-green gradient on .deal-amount with
   solid brand red (#f43f5e) for clarity and brand consistency.
   ========================================================== */

.sticky-popup .deal-amount {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #f43f5e !important;
  color: #f43f5e !important;
}

/* ██████ END STICKY POPUP SOLID RED v29 ██████ */
