/* ============================================
   EMAILS.ONLINEBONUSGET.COM — Main Stylesheet
   ============================================ */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:         #1B4FDB;
  --blue-dark:    #0D3199;
  --blue-darker:  #081E6B;
  --blue-light:   #EEF3FF;
  --yellow:       #F5C518;
  --yellow-dark:  #D4A800;
  --yellow-light: #FFFBEB;
  --text:         #0F172A;
  --text-muted:   #64748B;
  --border:       #E2E8F0;
  --white:        #FFFFFF;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(27,79,219,.10);
  --shadow-lg:    0 12px 40px rgba(27,79,219,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Utility ──────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue-darker);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,.40);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,79,219,.35);
}

.badge {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border: 1px solid #FDE68A;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title span { color: var(--blue); }
.section-title .accent { color: var(--yellow-dark); }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
}

/* ── HEADER ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue-darker);
  box-shadow: 0 2px 16px rgba(8,30,107,.30);
  transition: background .3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-darker);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
}

.logo-text span { color: var(--yellow); }

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.10);
}

.nav-links a.active { color: var(--yellow); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--blue-darker) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  background: var(--yellow-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--blue-darker);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(8,30,107,.3);
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul a {
  display: block;
  color: rgba(255,255,255,.85);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
}

.mobile-nav ul a:hover { background: rgba(255,255,255,.10); color: var(--white); }
.mobile-nav ul a.active { color: var(--yellow); }

.mobile-nav .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue) 60%, #2D6BE4 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 50%, rgba(245,197,24,.08) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(255,255,255,.05) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.3);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: .4px;
}

.hero-tag::before { content: '✉'; }

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--yellow);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-form {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.10);
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: border .2s;
}

.hero-form input::placeholder { color: rgba(255,255,255,.5); }
.hero-form input:focus { border-color: var(--yellow); }

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note::before { content: '🔒'; font-size: 12px; }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 36px;
}

.stat-item {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,.15);
  margin-right: 28px;
}

.stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.inbox-mockup {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(10px);
}

.inbox-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.inbox-dots { display: flex; gap: 6px; }
.inbox-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.inbox-dot:nth-child(1) { background: #FF5F57; }
.inbox-dot:nth-child(2) { background: #FFBD2E; }
.inbox-dot:nth-child(3) { background: #28C840; }

.inbox-title {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
}

.email-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: all .2s;
}

.email-item:last-child { border-bottom: none; }

.email-item:hover { background: rgba(255,255,255,.05); border-radius: 8px; padding-left: 8px; }

.email-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.email-icon.yellow { background: rgba(245,197,24,.2); }
.email-icon.blue   { background: rgba(27,79,219,.3); }
.email-icon.green  { background: rgba(34,197,94,.2); }
.email-icon.purple { background: rgba(168,85,247,.2); }

.email-content { flex: 1; min-width: 0; }

.email-from {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.email-subject {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.email-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.email-time {
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

.email-badge {
  background: var(--yellow);
  color: var(--blue-darker);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
}

/* ── FEATURES STRIP ───────────────────────── */
.features-strip {
  background: var(--yellow);
  padding: 20px 0;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-darker);
}

.strip-item .icon { font-size: 18px; }

/* ── HOW IT WORKS ─────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-sub { margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--blue) 100%);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue-light), var(--shadow);
  transition: all .3s;
}

.step-card:nth-child(2) .step-num { background: var(--yellow); color: var(--blue-darker); box-shadow: 0 0 0 3px var(--yellow-light), var(--shadow); }

.step-card:hover .step-num { transform: scale(1.1); box-shadow: 0 0 0 4px var(--blue-light), var(--shadow-lg); }

.step-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FEATURES ─────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--blue-light);
}

.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: scaleX(0);
  transition: transform .3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(5) .feature-icon { background: var(--yellow-light); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── BONUS TYPES ──────────────────────────── */
.bonus-types {
  padding: 100px 0;
  background: var(--white);
}

.bonus-header { margin-bottom: 56px; }

.bonus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s;
  cursor: default;
}

.bonus-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateX(6px);
}

.bonus-item-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.bonus-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.bonus-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Stats panel */
.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--blue-darker);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--white);
}

.stat-card:nth-child(1) { background: var(--blue-darker); }
.stat-card:nth-child(2) { background: var(--yellow); color: var(--blue-darker); }
.stat-card:nth-child(3) { background: var(--blue); }
.stat-card:nth-child(4) { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }

.stat-card .num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .label {
  font-size: 13px;
  opacity: .75;
  font-weight: 500;
}

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--blue-darker);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-title { color: var(--white); }
.testimonials-header .section-sub   { color: rgba(255,255,255,.6); margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-4px);
}

.stars {
  color: var(--yellow);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-darker);
  flex-shrink: 0;
}

.author-info .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.author-info .role {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ── CTA SECTION ──────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--yellow);
  text-align: center;
}

.cta-section .section-title { color: var(--blue-darker); margin-bottom: 12px; }

.cta-section .section-sub {
  color: rgba(8,30,107,.7);
  margin: 0 auto 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 50px;
  border: 2px solid rgba(8,30,107,.2);
  background: var(--white);
  font-size: 15px;
  outline: none;
  transition: border .2s;
  color: var(--text);
}

.cta-form input:focus { border-color: var(--blue); }

.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(8,30,107,.6);
}

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: var(--text);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .2s;
  color: rgba(255,255,255,.6);
}

.social-link:hover { background: var(--yellow); color: var(--blue-darker); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue) 100%);
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero .badge { margin-bottom: 16px; }

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto;
}

/* ── CONTENT PAGE BODY ────────────────────── */
.content-wrap {
  padding: 72px 0 100px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.prose {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

.prose .effective-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.prose section { margin-bottom: 40px; }
.prose section:last-child { margin-bottom: 0; }

.prose h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.prose h2 .sec-num {
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prose p {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}

.prose p:last-child { margin-bottom: 0; }

.prose ul, .prose ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.prose li {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 6px;
}

.prose strong { color: var(--text); }

.prose a {
  color: var(--blue);
  text-decoration: underline;
}

.prose a:hover { color: var(--blue-dark); }

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-card.highlight {
  background: var(--blue-darker);
  border-color: var(--blue-darker);
}

.sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.sidebar-card.highlight h4 { color: rgba(255,255,255,.6); }

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-list a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all .2s;
}

.toc-list a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.sidebar-card.highlight p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .bonus-layout   { grid-template-columns: 1fr; gap: 40px; }
  .stats-panel    { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar        { position: static; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }

  .hero        { padding: 60px 0 56px; }
  .hero-grid   { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-form   { flex-direction: column; }
  .hero h1     { font-size: 2.2rem; }

  .steps-grid         { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }

  .features-grid       { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .footer-inner        { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom       { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { gap: 12px; }

  .cta-form { flex-direction: column; }
  .cta-form input { border-radius: 12px; }
  .cta-form .btn  { border-radius: 12px; justify-content: center; }

  .prose { padding: 28px 20px; }

  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .stat-item  { border-right: none; margin-right: 0; padding-right: 0; flex: 0 0 auto; }

  .strip-inner { gap: 20px; }
  .how-it-works, .features, .bonus-types, .testimonials, .cta-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero h1    { font-size: 1.9rem; }
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .footer-bottom-links { flex-direction: column; gap: 8px; }
}
