/* ============================================
   BONUSFOREX100.COM — HOT PINK + GOLD BONUS THEME
   Fonts: Syne (headings) + Work Sans (body)
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  --bg: #0b0b12;
  --surface: #12121c;
  --card: #18182a;
  --card-hover: #1e1e34;
  --border: #2a2a42;
  --primary: #f43f5e;
  --primary-dark: #be123c;
  --primary-glow: rgba(244, 63, 94, 0.18);
  --gold: #fbbf24;
  --gold-dark: #d97706;
  --gold-glow: rgba(251, 191, 36, 0.15);
  --text: #f1f1f5;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --white: #f8fafc;
  --danger: #ef4444;
  --success: #22c55e;
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.25s ease;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --max-width: 1200px;
  --article-width: 820px;
}

/* --- RESET --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  padding-left: 1.5rem;
}

/* --- BACKGROUND GRID PATTERN --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(ellipse 600px 400px at 20% 10%, rgba(244, 63, 94, 0.06), transparent),
    radial-gradient(ellipse 500px 300px at 80% 80%, rgba(251, 191, 36, 0.04), transparent),
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* --- CONTAINER --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.header__logo:hover {
  color: var(--white);
}

.header__logo span {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

/* --- NAV --- */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
  background: rgba(244, 63, 94, 0.08);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.nav__cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

/* --- MOBILE NAV --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
  }

  .nav.active {
    display: flex;
  }

  .nav__link {
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .nav__cta {
    margin: 0.5rem 0 0 0;
    justify-content: center;
  }
}

/* --- HERO --- */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(244, 63, 94, 0.12), transparent 60%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero__title span {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- COUNTDOWN BAR --- */
.countdown-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--gold-dark));
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.countdown-bar span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 0 0.15rem;
  background: rgba(0,0,0,0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 2px 12px var(--primary-glow);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--primary-glow);
}

.btn--gold {
  color: #0b0b12;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 2px 12px var(--gold-glow);
}

.btn--gold:hover {
  color: #0b0b12;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.btn--outline {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.btn--outline:hover {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary-glow);
}

.btn--large {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* --- BONUS BADGE SYSTEM --- */
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
}

.bonus-badge--hot {
  background: rgba(244, 63, 94, 0.15);
  color: var(--primary);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.bonus-badge--exclusive {
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.bonus-badge--new {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.bonus-badge--limited {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* --- STATS BAR --- */
.section--bordered {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* --- SECTION HEADINGS --- */
.section {
  padding: 4rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- BONUS CARDS (Featured Offers) --- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.bonus-card:hover {
  border-color: rgba(244, 63, 94, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bonus-card__broker {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.bonus-card__amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.bonus-card__type {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.bonus-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.bonus-card__features li {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bonus-card__features li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
}

.bonus-card__cta {
  display: flex;
  gap: 0.75rem;
}

/* --- ARTICLE CARDS --- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: rgba(244, 63, 94, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.article-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.article-card__meta {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* --- CTA SECTION (inline in articles / homepage) --- */
.cta-box {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.08), rgba(251, 191, 36, 0.06));
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-box__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-box__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- INLINE CTA (mid-article) --- */
.inline-cta {
  background: var(--card);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.inline-cta__text {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}

/* --- ARTICLE PAGE LAYOUT --- */
.article-hero {
  padding: 3rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.article-hero__breadcrumb {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.article-hero__breadcrumb a {
  color: var(--text-dim);
}

.article-hero__breadcrumb a:hover {
  color: var(--primary);
}

.article-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.15;
}

.article-hero__meta {
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- ARTICLE CONTENT --- */
.article-content {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}

.article-content p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content strong {
  color: var(--text);
  font-weight: 600;
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(244, 63, 94, 0.3);
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: var(--gold);
  text-decoration-color: rgba(251, 191, 36, 0.3);
}

/* --- COMPARISON TABLE --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}

.comparison-table th {
  background: var(--card);
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--primary);
}

.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.comparison-table tr:hover td {
  background: rgba(244, 63, 94, 0.04);
}

.comparison-table .highlight {
  color: var(--primary);
  font-weight: 600;
}

/* --- TABLE OF CONTENTS --- */
.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.toc__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.toc ol {
  counter-reset: toc-counter;
  list-style: none;
  padding: 0;
}

.toc li {
  counter-increment: toc-counter;
  margin-bottom: 0.4rem;
}

.toc li::before {
  content: counter(toc-counter) '. ';
  color: var(--primary);
  font-weight: 700;
}

.toc a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.toc a:hover {
  color: var(--primary);
}

/* --- FAQ ACCORDION --- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(244, 63, 94, 0.04);
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.25rem 1rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- RISK DISCLAIMER --- */
.risk-disclaimer {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.risk-disclaimer__title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--danger);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.risk-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* --- FOOTER --- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__brand span {
  color: var(--gold);
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.4rem;
}

.footer__links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer__legal a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* --- URGENCY STRIP --- */
.urgency-strip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.urgency-strip__icon {
  font-size: 2rem;
}

.urgency-strip__text {
  flex: 1;
}

.urgency-strip__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.urgency-strip__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- RESPONSIVE OVERRIDES --- */
@media (max-width: 600px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .urgency-strip {
    flex-direction: column;
    text-align: center;
  }

  .comparison-table {
    font-size: 0.78rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.5rem;
  }
}

/* --- CROSSLINKS FOOTER BAR --- */
.crosslinks {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.crosslinks__title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.crosslinks__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
}

.crosslinks__list a {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.crosslinks__list a:hover {
  color: var(--primary);
}

/* --- OVERFLOW TABLE WRAPPER (mobile) --- */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  -webkit-overflow-scrolling: touch;
}

/* --- PRINT --- */
@media print {
  body::before,
  .header,
  .back-to-top,
  .countdown-bar,
  .crosslinks { display: none; }
  body { background: #fff; color: #111; }
  .article-content a { color: #111; text-decoration: underline; }
}
