﻿/* ============================================================
   WiseSaverGuide — Editorial Stylesheet
   Modeled after: FinanceBuzz, MoneyTalksNews, Comparisons.org
   Audience: 40-65+ | Mobile-first | White/light editorial
   ============================================================ */

:root {
  --blue:         #1a56db;
  --blue-dark:    #1341b0;
  --blue-light:   #eff6ff;
  --orange:       #e8590c;
  --orange-dark:  #c44a08;
  --orange-light: #fff4ee;
  --dark:         #0f172a;
  --heading:      #1e293b;
  --body:         #334155;
  --muted:        #64748b;
  --faint:        #94a3b8;
  --border:       #e2e8f0;
  --bg:           #f8fafc;
  --white:        #ffffff;
  --green:        #15803d;
  --green-light:  #f0fdf4;
  --gold:         #b45309;
  --gold-light:   #fef9ee;
  --red:          #b91c1c;

  /* aliases for agent-generated pages */
  --primary:      #1a56db;
  --primary-dark: #1341b0;
  --primary-light:#eff6ff;
  --accent:       #e8590c;
  --accent-dark:  #c44a08;
  --gray:         #334155;
  --mid:          #64748b;
  --light:        #f8fafc;
  --text-dark:    #1e293b;
  --text-body:    #334155;
  --text-light:   #64748b;
  --bg-light:     #f8fafc;
  --bg-white:     #ffffff;
  --font-serif:   Georgia, 'Times New Roman', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.35em; }
strong { color: var(--heading); font-weight: 700; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(28px, 5vw, 48px); margin-bottom: 0.5em; }
h2 { font-size: clamp(22px, 3.5vw, 34px); margin-bottom: 0.5em; margin-top: 1.6em; }
h3 { font-size: clamp(18px, 2.5vw, 24px); margin-bottom: 0.4em; margin-top: 1.4em; }
h4 { font-size: 19px; margin-bottom: 0.3em; }

/* ── Layout ── */
.container       { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container-narrow{ max-width: 780px;  margin: 0 auto; padding: 0 20px; }
.container-wide  { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* ── Reading Progress ── */
#reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--orange); z-index: 9999; width: 0;
  transition: width .1s linear;
}

/* ════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 12px;
  color: #cbd5e1;
  text-align: center;
  letter-spacing: 0.2px;
}
.topbar a { color: #93c5fd; }
.topbar a:hover { color: #fff; }

/* ════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  text-decoration: none;
}
.site-logo svg { flex-shrink: 0; }
.site-logo > div { display: flex; flex-direction: column; }
.logo-name {
  font-size: 19px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.logo-tagline {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.main-nav .nav-list {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav .nav-list li a {
  display: block;
  padding: 0 14px;
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav .nav-list li a:hover,
.main-nav .nav-list li a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-menu.open { display: block; }
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-list li a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* ════════════════════════════════════════
   HOMEPAGE HERO — Magazine style, not landing page
   ════════════════════════════════════════ */
.home-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 0;
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .home-hero-inner {
    grid-template-columns: 1fr 340px;
    gap: 0 40px;
    align-items: start;
  }
}
.home-hero-lead {}
.home-hero-kicker {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.home-hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 14px;
}
.home-hero-sub {
  font-size: 18px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 580px;
}
.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.15s;
}
.audience-pill.pill-blue   { background: var(--blue-light); color: var(--blue-dark); border-color: #bfdbfe; }
.audience-pill.pill-orange { background: var(--orange-light); color: var(--orange-dark); border-color: #fed7aa; }
.audience-pill.pill-green  { background: var(--green-light); color: var(--green); border-color: #bbf7d0; }
.audience-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* Sidebar stats panel on homepage */
.home-hero-sidebar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 32px;
}
.home-hero-sidebar h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 0 16px;
}
.sidebar-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat-icon { font-size: 24px; }
.sidebar-stat-num  { font-size: 22px; font-weight: 900; color: var(--heading); line-height: 1; }
.sidebar-stat-label{ font-size: 13px; color: var(--muted); }

/* ════════════════════════════════════════
   CATEGORY STRIP (below hero)
   ════════════════════════════════════════ */
.category-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.category-strip-inner {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-strip-inner::-webkit-scrollbar { display: none; }
.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
}
.cat-tab:hover, .cat-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.cat-tab .cat-icon { font-size: 18px; }

/* ════════════════════════════════════════
   TOPIC CARD GRID (Homepage + Hub pages)
   ════════════════════════════════════════ */
.topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 640px)  { .topic-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .topic-grid { grid-template-columns: 1fr 1fr 1fr; } }

.topic-card {
  background: var(--white);
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
}
.topic-card:hover { background: var(--blue-light); }
.topic-card-icon  { font-size: 28px; margin-bottom: 10px; }
.topic-card-cat   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--orange); margin-bottom: 6px; }
.topic-card-title { font-size: 16px; font-weight: 700; color: var(--heading); line-height: 1.35; margin-bottom: 8px; }
.topic-card-desc  { font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; }
.topic-card-link  { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: 12px; }

/* ════════════════════════════════════════
   ARTICLE PAGE LAYOUT
   Two-column: content left, sticky sidebar right
   ════════════════════════════════════════ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}
@media (min-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr 300px;
    gap: 0 48px;
    padding: 0 20px;
  }
}
.article-body {}
.article-sidebar {
  display: none;
}
@media (min-width: 960px) {
  .article-sidebar {
    display: block;
    position: sticky;
    top: 80px;
  }
}

/* Article header (no big hero — straight editorial) */
.article-header {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.article-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.article-header h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 14px;
}
.article-deck {
  font-size: 19px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 18px;
  font-family: Georgia, serif;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--heading);
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

/* Disclosure */
.disclosure {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  font-size: 13px;
  color: #78350f;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
  line-height: 1.6;
}
.disclosure a { color: #78350f; font-weight: 600; }

/* Article body typography — editorial feel */
.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 1.2em;
}
.article-body h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin-top: 2em;
  margin-bottom: 0.6em;
  padding-top: 1em;
  border-top: 1px solid var(--border);
  color: var(--dark);
}
.article-body h3 {
  font-size: 20px;
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}

/* ── Numbered listicle items (FinanceBuzz style) ── */
.listicle-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.listicle-item:last-child { border-bottom: none; }
.listicle-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  font-family: 'Inter', sans-serif;
  letter-spacing: -3px;
  user-select: none;
  padding-top: 4px;
}
.listicle-content {}
.listicle-kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
  margin-bottom: 6px;
}
.listicle-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 10px;
}
.listicle-content p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 14px;
}
.listicle-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.listicle-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}
.listicle-also {
  margin-top: 12px;
}
.listicle-also a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
}

/* ── Inline offer box (woven into article body) ── */
.offer-box {
  background: var(--blue-light);
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.offer-box-icon { font-size: 36px; flex-shrink: 0; }
.offer-box-content { flex: 1; min-width: 200px; }
.offer-box-content strong { display: block; font-size: 17px; color: var(--dark); margin-bottom: 4px; }
.offer-box-content p { font-size: 14px; color: var(--body); margin: 0; }
.offer-box-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.offer-box-cta:hover { background: var(--orange-dark); color: var(--white); text-decoration: none; }

/* ── Callout / Did You Know box ── */
.callout {
  border-left: 4px solid var(--blue);
  background: var(--blue-light);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.callout.callout-orange { border-left-color: var(--orange); background: var(--orange-light); }
.callout.callout-green  { border-left-color: var(--green); background: var(--green-light); }
.callout-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 6px; }
.callout.callout-orange .callout-label { color: var(--orange-dark); }
.callout.callout-green  .callout-label { color: var(--green); }
.callout p { font-size: 15px; color: var(--body); margin: 0; line-height: 1.65; }

/* ── Pull stat (big number inline in article) ── */
.pull-stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin: 28px 0;
}
.pull-stat-num   { font-size: 56px; font-weight: 900; color: var(--blue); line-height: 1; display: block; }
.pull-stat-label { font-size: 16px; color: var(--muted); margin-top: 6px; }

/* ════════════════════════════════════════
   SIDEBAR COMPONENTS (article pages)
   ════════════════════════════════════════ */
.toc-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}
.toc-box h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 0 12px;
}
.toc-box ol {
  padding-left: 1.2rem;
  margin: 0;
}
.toc-box li { margin-bottom: 8px; }
.toc-box a  { font-size: 14px; color: var(--body); font-weight: 500; }
.toc-box a:hover { color: var(--blue); }

.sidebar-cta-box {
  background: var(--orange);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--white);
}
.sidebar-cta-box h4 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.sidebar-cta-box p  { font-size: 14px; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.sidebar-cta-btn {
  display: block;
  background: var(--white);
  color: var(--orange);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
.sidebar-cta-btn:hover { background: #fff; color: var(--orange-dark); text-decoration: none; }

.sidebar-related {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.sidebar-related h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 0 12px;
}
.sidebar-related ul { list-style: none; padding: 0; margin: 0; }
.sidebar-related li { border-bottom: 1px solid var(--border); }
.sidebar-related li:last-child { border-bottom: none; }
.sidebar-related a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  line-height: 1.4;
}
.sidebar-related a:hover { color: var(--blue); text-decoration: none; }

/* ════════════════════════════════════════
   FAQ SECTION
   ════════════════════════════════════════ */
.faq-section { margin-top: 2.5em; }
.faq-section h2 { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  gap: 12px;
}
.faq-icon {
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 16px;
  color: var(--body);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
.testimonial-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}
@media (min-width: 640px) { .testimonial-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .testimonial-row { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
  background: var(--bg);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
}
.t-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.t-quote { font-size: 15px; line-height: 1.7; color: var(--body); font-style: italic; margin-bottom: 14px; }
.t-author { font-size: 14px; font-weight: 700; color: var(--heading); }
.t-detail { font-size: 12px; color: var(--muted); }
.t-verified {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════ */
.breadcrumb-bar {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--faint); }

/* ════════════════════════════════════════
   PAGE SECTIONS
   ════════════════════════════════════════ */
.section    { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.section-lg { padding: 80px 0; }
.section-white  { background: var(--white); }
.section-light  { background: var(--bg); }
.section-dark   { background: var(--dark); color: var(--white); }
.section-blue   { background: var(--blue); color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }

.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 { margin-top: 0; margin-bottom: 10px; border: none; padding: 0; }
.section-header p  { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); text-decoration: none; }
.btn-secondary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); text-decoration: none; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); text-decoration: none; }
.btn-lg { padding: 14px 30px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 56px 0 24px;
  margin-top: 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr repeat(4,1fr); } }
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #94a3b8; font-size: 13px; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-logo-name { font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: -0.03em; }
.footer-tagline   { font-size: 12px; color: #64748b; margin: 4px 0 16px; }
.footer-about-text { font-size: 13px; line-height: 1.65; color: #64748b; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: #475569; margin: 0; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: #475569; }
.footer-legal a:hover { color: #94a3b8; text-decoration: none; }
.footer-disclosure {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ════════════════════════════════════════ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  padding: 12px 16px;
  z-index: 500;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}
.sticky-mobile-cta a {
  display: block;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 899px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* ════════════════════════════════════════
   UTILITY
   ════════════════════════════════════════ */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.text-sm     { font-size: 14px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
}
.tag {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.tag.tag-blue { background: var(--blue-light); color: var(--blue-dark); border-color: #bfdbfe; }
.tag.tag-orange { background: var(--orange-light); color: var(--orange-dark); border-color: #fed7aa; }
.tag.tag-green { background: var(--green-light); color: var(--green); border-color: #bbf7d0; }

/* ════════════════════════════════════════
   FOOTNOTES
   ════════════════════════════════════════ */
.footnotes {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.footnotes ol {
  padding-left: 1.2rem;
  margin: 0;
}
.footnotes li {
  margin-bottom: 4px;
}
.footnotes a {
  color: var(--muted);
  text-decoration: underline;
}
.footnotes a:hover { color: var(--blue); }
sup.ref {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  vertical-align: super;
  line-height: 0;
  cursor: default;
}
.listicle-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 14px 0 18px;
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 16px; }
  .article-layout { padding: 0 16px; }
  .article-header { padding: 24px 0 20px; }
  .listicle-item { grid-template-columns: 48px 1fr; gap: 0 16px; }
  .listicle-num { font-size: 40px; }
  .offer-box { flex-direction: column; gap: 14px; }
}
