/* ============================================================
   MoneyHelper v7 - Additions & Bug Fixes
   All new styles, dropdown, FAQ, calculators, credit cards
   ============================================================ */

/* ── Archive / Single alignment fix ─────────────────────── */
.archive-main { align-items: start !important; }
.single-main  { align-items: start !important; }
.archive-layout .sidebar,
.single-layout  .sidebar { position: sticky; top: 86px; align-self: start; }

/* ── Inner pages banner background ──────────────────────── */
.archive-hero,
.single-hero,
.page-hero,
.calc-hero,
.faq-hero,
.cc-hero {
  background: #f4f4f4 !important;
}
.archive-hero h1, .single-hero h1, .page-hero h1, .calc-hero h1, .faq-hero h1, .cc-hero h1,
.archive-hero p, .single-hero p, .page-hero p, .calc-hero p, .faq-hero p, .cc-hero p,
.archive-hero .archive-stat, .calc-hero .calc-hero-icon {
  color: var(--primary) !important;
}
.archive-hero::before, .calc-hero::before, .faq-hero::before, .cc-hero::before {
  display: none !important;
}

/* ── Headings letter spacing ────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.page-title,
.post-card__title {
  letter-spacing: -0.02em !important;
}

/* ── Remove blank border before related section ─────────── */
.related-section            { border-top: none; padding-top: 0; }
.related-section__inner     { padding-top: 40px; border-top: 1px solid var(--border); }

/* ── Ordered list counter - fix overlap ─────────────────── */
.entry-content ol {
  counter-reset: mh-ol;
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}
.entry-content ol li {
  counter-increment: mh-ol;
  position: relative;
  padding: 8px 0 8px 46px;
  color: #374151;
}
.entry-content ol li::before {
  content: counter(mh-ol);
  position: absolute;
  left: 0; top: 8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Post card title readability fix ─────────────────────── */
.post-card__title,
.post-card__title a {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.42;
  font-weight: 700;
  color: var(--primary);
}
.post-card__title a:hover { color: var(--accent); }

/* ── Logo wordmark ────────────────────────────────────────── */
.logo-wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #0f172a 0%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(74,222,128,0.3);
}
.logo-mark i { color: #4ade80; font-size: 0.88rem; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
}
.logo-text em { font-style: normal; color: var(--accent); }
.site-header--dark .logo-text { color: #fff; }

/* ============================================================
   CALCULATORS DROPDOWN
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  background: none; border: none;
  font-family: var(--font); cursor: pointer;
}
.nav-dropdown__arrow {
  font-size: 0.6rem !important;
  transition: transform 0.2s ease;
  margin-left: 2px;
  display: inline-block;
}
.nav-dropdown.open .nav-dropdown__arrow { transform: rotate(180deg); }
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 24px; }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 500px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
  padding: 12px;
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-dropdown__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}
.nav-dropdown__item:hover {
  background: var(--accent-light);
  border-color: rgba(0,182,122,0.15);
  color: var(--text);
}
.nav-dropdown__icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.85rem;
  flex-shrink: 0; transition: var(--transition);
}
.nav-dropdown__item:hover .nav-dropdown__icon {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.nav-dropdown__text { display: flex; flex-direction: column; gap: 1px; }
.nav-dropdown__text strong { font-size: 0.82rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.nav-dropdown__text small  { font-size: 0.71rem; color: var(--text-light); line-height: 1.3; font-weight: 400; }

/* ============================================================
   MOBILE ACCORDION (Calculators in drawer)
   ============================================================ */
.mob-link--accordion { width: 100%; text-align: left; font-family: var(--font); cursor: pointer; }
.mob-accordion__arrow { transition: transform 0.25s ease !important; }
.mob-link--accordion.open .mob-accordion__arrow { transform: rotate(90deg); }
.mob-accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; display: flex; flex-direction: column; gap: 4px; }
.mob-accordion__panel[aria-hidden="false"], .mob-accordion__panel.show { max-height: 1000px; }
.mob-link--sub { padding-left: 20px; }
.mob-link--sub .mob-link__icon { width: 28px; height: 28px; font-size: 0.75rem; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page { padding: 0 0 80px; }

.faq-hero {
  background: linear-gradient(150deg, #0f172a 0%, #0d2137 55%, #0a2a1c 100%);
  padding: 64px 0 72px;
  text-align: center;
  position: relative; overflow: hidden;
}
.faq-hero::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,182,122,0.15) 0%, transparent 65%);
  top: -150px; right: -100px; pointer-events: none;
}
.faq-hero h1 { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; position: relative; z-index: 1; }
.faq-hero p  { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }
.faq-body { padding: 60px 0; }
.faq-section { margin-bottom: 52px; }
.faq-section__title {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.05rem; font-weight: 800; color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.faq-icon { width: 36px; height: 36px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }

.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(0,182,122,0.3); box-shadow: 0 2px 12px rgba(0,182,122,0.08); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 20px; cursor: pointer;
  background: var(--bg-card); border: none; width: 100%; text-align: left;
  font-family: var(--font); font-size: 0.88rem; font-weight: 700; color: var(--primary);
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-item.open .faq-question { background: var(--accent-light); color: var(--accent); }
.faq-q-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-q-icon { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer__inner {
  padding: 14px 20px 18px;
  font-size: 0.87rem; color: var(--text-muted);
  line-height: 1.75; border-top: 1px solid var(--border);
}
.faq-answer__inner strong { color: var(--primary); }
.faq-answer__inner a { color: var(--accent); }

/* ============================================================
   CALCULATOR PAGES
   ============================================================ */
.calc-page { padding: 0 0 80px; }
.calc-hero {
  background: linear-gradient(150deg, #0f172a 0%, #0d2137 55%, #0a2a1c 100%);
  padding: 56px 0 64px; text-align: center; position: relative; overflow: hidden;
}
.calc-hero::before {
  content: ''; position: absolute; width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,182,122,0.15) 0%, transparent 65%);
  top: -120px; right: -80px; pointer-events: none;
}
.calc-hero-icon {
  width: 64px; height: 64px; border-radius: var(--radius-lg);
  background: rgba(0,182,122,0.15); border: 1px solid rgba(0,182,122,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #4ade80;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.calc-hero h1 { color: #fff; font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; position: relative; z-index: 1; }
.calc-hero p  { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }
.calc-body { padding: 48px 0; }
.calc-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .calc-grid { grid-template-columns: 1fr 1fr; } }
.calc-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.calc-card__hd { padding: 18px 24px; border-bottom: 1px solid var(--border); background: var(--bg); display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 0.95rem; color: var(--primary); letter-spacing: -0.01em; }
.calc-card__hd i { color: var(--accent); font-size: 1rem; }
.calc-card__body { padding: 24px; }
.calc-field { margin-bottom: 20px; }
.calc-field label { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.calc-field label i { color: var(--accent); font-size: 0.75rem; }
.calc-input-wrap { position: relative; }
.calc-prefix, .calc-suffix { position: absolute; top: 0; bottom: 0; display: flex; align-items: center; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); pointer-events: none; padding: 0 13px; }
.calc-prefix { left: 0; } .calc-suffix { right: 0; }
.calc-field input[type="number"], .calc-field select {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 10px 14px; font-family: var(--font); font-size: 0.9rem;
  color: var(--text); background: var(--bg-card); transition: var(--transition);
  appearance: none; -webkit-appearance: none;
}
.calc-field input[type="number"]:focus, .calc-field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,182,122,0.12);
}
.calc-field--prefix input[type="number"] { padding-left: 38px; }
.calc-field--suffix input[type="number"] { padding-right: 38px; }
.calc-btn {
  width: 100%; padding: 12px 20px; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-pill); font-family: var(--font);
  font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px; box-shadow: var(--shadow-green);
}
.calc-btn:hover { background: var(--accent-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,182,122,0.32); }
.calc-result {
  background: linear-gradient(135deg, #0f172a 0%, #0d2137 100%);
  border-radius: var(--radius-lg); padding: 24px; margin-top: 20px; display: none;
}
.calc-result.show { display: block; }
.calc-result__title { color: rgba(255,255,255,0.5); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.calc-result__rows { display: flex; flex-direction: column; gap: 12px; }
.calc-result__row { display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; }
.calc-result__label { color: rgba(255,255,255,0.55); font-weight: 500; }
.calc-result__value { color: #fff; font-weight: 700; }
.calc-result__value--accent { color: #4ade80; font-size: 1.1rem; }
.calc-result__divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 4px 0; }
.calc-bar-wrap { height: 8px; border-radius: 8px; background: rgba(255,255,255,0.1); overflow: hidden; margin: 16px 0 8px; display: flex; }
.calc-bar-principal { background: var(--accent); transition: width 0.5s ease; }
.calc-bar-interest  { background: var(--warning); transition: width 0.5s ease; }
.calc-bar-returns   { background: #818cf8; transition: width 0.5s ease; }
.calc-bar-legend { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 10px; }
.calc-bar-legend span { display: flex; align-items: center; gap: 5px; }
.calc-bar-legend .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.calc-note { background: #fffbeb; border: 1px solid #fcd34d; border-radius: var(--radius-md); padding: 14px 16px; font-size: 0.82rem; color: #92400e; line-height: 1.6; margin-top: 28px; display: flex; align-items: flex-start; gap: 10px; }
.calc-note i { flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; color: #d97706; }

/* ============================================================
   CREDIT CARDS PAGE
   ============================================================ */
.cc-page { padding: 0 0 80px; }
.cc-hero {
  background: linear-gradient(150deg, #0f172a 0%, #0d2137 55%, #0a2a1c 100%);
  padding: 64px 0 72px; position: relative; overflow: hidden;
}
.cc-hero::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,182,122,0.14) 0%, transparent 65%);
  top: -160px; right: -100px; pointer-events: none;
}
.cc-hero__inner { position: relative; z-index: 1; text-align: center; }
.cc-hero h1 { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.cc-hero p { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 580px; margin: 0 auto 28px; line-height: 1.7; }
.cc-hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.cc-hero-stat { text-align: center; }
.cc-hero-stat strong { display: block; color: #4ade80; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; }
.cc-hero-stat span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.cc-body { padding: 48px 0; }
.cc-listing { display: flex; flex-direction: column; gap: 36px; }
.cc-entry { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); }
.cc-entry:hover { border-color: rgba(0,182,122,0.25); box-shadow: var(--shadow-md); }
.cc-entry__hd { padding: 22px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: var(--bg); }
.cc-entry__hd-left { display: flex; align-items: center; gap: 16px; }
.cc-bank-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; border: 1.5px solid var(--border); background: #fff; }
.cc-entry__name { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 3px; letter-spacing: -0.02em; }
.cc-entry__bank { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.cc-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.cc-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: var(--radius-pill); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.cc-badge--rewards  { background: #f5f3ff; color: #6d28d9; }
.cc-badge--cashback { background: #ecfdf5; color: #059669; }
.cc-badge--travel   { background: #eff6ff; color: #2563eb; }
.cc-badge--fuel     { background: #fff7ed; color: #c2410c; }
.cc-badge--shopping { background: #fdf4ff; color: #a21caf; }
.cc-badge--lifestyle{ background: #f0fdf4; color: #15803d; }
.cc-badge--premium  { background: #1c1917; color: #fbbf24; }
.cc-entry__fee-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
@media (max-width: 640px) { .cc-entry__fee-wrap { align-items: flex-start; } }
.cc-fee-pill { background: var(--accent-light); color: var(--accent); font-size: 0.78rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); white-space: nowrap; }
.cc-joining-fee { font-size: 0.72rem; color: var(--text-light); }
.cc-entry__body { padding: 24px 28px; }
.cc-section-label { font-size: 0.72rem; font-weight: 800; color: var(--primary); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 6px; }
.cc-section-label i { color: var(--accent); }
.cc-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-bottom: 24px; }
.cc-detail-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.cc-detail-block ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }
.cc-detail-block ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }
.cc-charges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-bottom: 24px; }
.cc-charge-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; }
.cc-charge-item__label { font-size: 0.68rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.cc-charge-item__value { font-size: 0.88rem; font-weight: 700; color: var(--primary); }
.cc-eligibility { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 24px; }
.cc-eligibility table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.cc-eligibility th { background: #0f172a; color: #fff; padding: 10px 14px; text-align: left; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.cc-eligibility td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
.cc-eligibility tr:last-child td { border-bottom: none; }
.cc-eligibility td:first-child { color: var(--primary); font-weight: 600; width: 38%; }
.cc-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
@media (max-width: 600px) { .cc-pros-cons { grid-template-columns: 1fr; } }
.cc-pros { background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: var(--radius-md); padding: 16px; }
.cc-cons { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-md); padding: 16px; }
.cc-pros__title { color: #059669; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.cc-cons__title { color: #dc2626; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.cc-pros ul, .cc-cons ul { list-style: none; padding: 0; margin: 0; }
.cc-pros ul li, .cc-cons ul li { display: flex; align-items: flex-start; gap: 7px; font-size: 0.82rem; line-height: 1.5; color: var(--text); margin-bottom: 5px; }
.cc-pros ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #059669; flex-shrink: 0; margin-top: 7px; }
.cc-cons ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #dc2626; flex-shrink: 0; margin-top: 7px; }
.cc-entry__apply { padding: 16px 28px; border-top: 1px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cc-apply-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.cc-apply-note strong { color: var(--primary); }
.cc-apply-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; border-radius: var(--radius-pill); background: var(--accent); color: #fff; font-size: 0.85rem; font-weight: 700; white-space: nowrap; transition: var(--transition); box-shadow: var(--shadow-green); }
.cc-apply-btn:hover { background: var(--accent-mid); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,182,122,0.32); }

/* misc */
.mobile-menu { display: none !important; }

/* ============================================================
   FIX STATS COLORS FOR LIGHT HERO SECTIONS
   ============================================================ */
.archive-hero .hero-stat-num, 
.page-hero .hero-stat-num, 
.calc-hero .hero-stat-num, 
.cc-hero .cc-hero-stat strong,
.archive-hero .archive-stat strong,
.calc-hero .calc-stat strong {
  color: var(--primary) !important;
}

.archive-hero .hero-stat-label, 
.page-hero .hero-stat-label, 
.calc-hero .hero-stat-label, 
.cc-hero .cc-hero-stat span,
.archive-hero .archive-stat span,
.calc-hero .calc-stat span {
  color: var(--text-muted) !important;
}

/* ============================================================
   MOBILE MENU BREAKPOINT (1200px)
   ============================================================ */
@media (max-width: 1199px) {
  .desktop-nav { display: none !important; }
  .hamburger { display: flex !important; }
}
@media (min-width: 1200px) {
  .desktop-nav { display: flex !important; }
  .hamburger { display: none !important; }
}

/* ============================================================
   COOKIE CONSENT BAR (Creative Floating Style)
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: -150%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 700px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  z-index: 99999;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: bottom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-bar.show {
  bottom: 24px;
}
.cookie-bar__inner {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-bar__icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(135deg, #4ade80, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cookie-bar__text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.cookie-bar__text a {
  color: #4ade80;
  text-decoration: underline;
  text-decoration-color: rgba(74,222,128,0.4);
  font-weight: 600;
  transition: all 0.2s;
}
.cookie-bar__text a:hover {
  text-decoration-color: #4ade80;
}
.cookie-bar__actions {
  display: flex;
  align-items: center;
}
.cookie-bar__btn {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(74, 222, 128, 0.25);
}
.cookie-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}
@media (max-width: 640px) {
  .cookie-bar__inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .cookie-bar__icon {
    font-size: 2.2rem;
  }
  .cookie-bar__actions {
    width: 100%;
  }
  .cookie-bar__btn {
    width: 100%;
    padding: 12px;
  }
}
