/* ================================================
   PANIC DROP — BLACKROCK-INSPIRED DESIGN SYSTEM
   Dark Professional | Brand: #000 + #76FF03 Green
   ================================================ */

/* ── 1. RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #000;
  color: #f0f0f0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; }

/* ── 2. CSS VARIABLES ─────────────────────────── */
:root {
  /* Brand */
  --green:        #76FF03;
  --green-dark:   #5ACC00;
  --green-dim:    rgba(118, 255, 3, 0.08);
  --green-border: rgba(118, 255, 3, 0.25);

  /* Surfaces */
  --bg-0: #000000;
  --bg-1: #080808;
  --bg-2: #101010;
  --bg-3: #181818;
  --bg-4: #202020;

  /* Borders */
  --border:       rgba(255,255,255,0.07);
  --border-mid:   rgba(255,255,255,0.12);
  --border-high:  rgba(255,255,255,0.18);

  /* Text */
  --text-1: #ffffff;
  --text-2: #999999;
  --text-3: #555555;

  /* Legacy variable aliases (for inline styles in HTML pages) */
  --primary-bg:       #000000;
  --secondary-bg:     #080808;
  --card-bg:          #101010;
  --accent-primary:   #76FF03;
  --accent-secondary: #5ACC00;
  --accent-success:   #22CC00;
  --accent-danger:    #FF4444;
  --text-primary:     #ffffff;
  --text-secondary:   #999999;
  --text-muted:       #555555;
  --border-color:     rgba(255,255,255,0.07);
  --shadow-light:     0 2px 12px rgba(0,0,0,0.4);
  --shadow-medium:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-heavy:     0 8px 48px rgba(0,0,0,0.7);
  --border-radius:    2px;
  --border-radius-lg: 2px;
  --border-radius-xl: 2px;

  /* Layout */
  --max-w:  1240px;
  --nav-h:  72px;
}

/* ── 3. TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-1);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-2); line-height: 1.75; }
strong { color: var(--text-1); font-weight: 600; }

/* ── 4. LAYOUT UTILITIES ─────────────────────── */
.container,
.content-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

/* ── 5. NAVIGATION ────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--border-mid); }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo .logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-1); }
.nav-link.active { color: var(--green); }

/* Dropdown */
.nav-link.dropdown-toggle {
  cursor: pointer;
  gap: 0.4rem;
}
.nav-link.dropdown-toggle .main-link {
  color: inherit;
  text-decoration: none;
}
.nav-item.dropdown:hover .nav-link.dropdown-toggle { color: var(--text-1); }

.toggle-arrow {
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  display: inline-block;
  transition: transform 0.2s, margin-top 0.2s;
}
.nav-item.dropdown:hover .toggle-arrow {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--bg-3);
  border: 1px solid var(--border-mid);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, visibility 0.18s;
  z-index: 100;
}
.nav-item.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}
.dropdown-content a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-2);
  transition: color 0.15s, background 0.15s;
}
.dropdown-content a:hover {
  color: var(--green);
  background: var(--bg-4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.bar {
  width: 24px; height: 2px;
  background: var(--text-1);
  transition: all 0.28s ease;
  display: block;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. BUTTONS ───────────────────────────────── */
.cta-button,
.cta-button.primary,
.submit-btn,
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--green);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.cta-button:hover,
.cta-button.primary:hover,
.submit-btn:hover,
.home-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.cta-button.large,
.cta-button.extra-large { padding: 1rem 2.5rem; font-size: 0.95rem; }

.cta-button.secondary {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-mid) !important;
}
.cta-button.secondary:hover {
  background: transparent;
  border-color: var(--green) !important;
  color: var(--green);
  transform: translateY(-1px);
}

/* ── 7. HERO SECTION ──────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(118,255,3,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,255,3,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Green radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 5%; right: -15%;
  width: 55%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(118,255,3,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 580px; }

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.45;
}
.hero-description {
  font-size: 0.975rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.trust-indicators {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
}
.trust-badge i { color: var(--green); font-size: 0.7rem; }

/* Dashboard visual */
.hero-visual { display: flex; justify-content: center; }
.trading-dashboard {
  background: var(--bg-2);
  border: 1px solid var(--border-mid);
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.dashboard-header h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.status-indicator {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 0.2rem 0.55rem;
}
.dashboard-content {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.metric-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.metric-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.metric-value {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-1);
}
.metric-value.positive { color: var(--green); }
.dashboard-price {
  background: var(--bg-3);
  border: 1px solid var(--green-border);
  padding: 0.85rem;
  text-align: center;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.price-original {
  font-size: 0.95rem;
  color: var(--text-3);
  text-decoration: line-through;
}
.price-current {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.price-tag {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

/* ── 8. SOCIAL PROOF STRIP ────────────────────── */
.social-proof {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
/* Override flex version used in blog/contact pages */
section.social-proof {
  display: block;
  padding: 2.5rem 0;
}
.badges-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.badge {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0 1.75rem;
  border-right: 1px solid var(--border);
  background: transparent !important;
  color: var(--text-1) !important;
  border-radius: 0 !important;
  flex: unset !important;
  min-width: unset !important;
  text-align: left;
}
.badge:last-child { border-right: none; }
.badge > i {
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
}
.badge-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.badge-number {
  font-size: 1.7rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-1);
  line-height: 1;
  letter-spacing: -0.03em;
}
.badge-label {
  font-size: 0.7rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── 9. HOW IT WORKS ──────────────────────────── */
.how-it-works {
  padding: 7rem 0;
  background: var(--bg-0);
}
.section-header { margin-bottom: 3.5rem; max-width: 680px; }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 0.85rem;
  color: var(--text-1) !important;
  text-align: left;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.step {
  background: var(--bg-1);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.step:hover { background: var(--bg-2); }
.step-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.step-icon i { font-size: 1.4rem; color: var(--green); }
.step-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(118, 255, 3, 0.18);
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-left: auto;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-1);
}
.step-description {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}
.step-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.step-features li {
  font-size: 0.8rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.step-features li::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 10. CREDIBILITY ──────────────────────────── */
.credibility {
  padding: 7rem 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credibility-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.credibility-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
}
.credibility-text p {
  font-size: 0.975rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.credibility-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.stat {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  background: var(--bg-2);
}
.stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.credibility-image { display: flex; justify-content: center; }
.profile-card {
  background: var(--bg-2);
  border: 1px solid var(--border-mid);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-radius: 0 !important;
}
.profile-card .profile-photo,
.credibility .profile-photo {
  width: 88px; height: 88px;
  object-fit: cover;
  border: 2px solid var(--green);
  border-radius: 0 !important;
  flex-shrink: 0;
}
.profile-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.profile-info p { font-size: 0.83rem; color: var(--text-2); margin-bottom: 0.75rem; }
.elite-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 0.25rem 0.65rem;
  border-radius: 0 !important;
}
.elite-badge i { color: var(--green); }

/* ── 11. TESTIMONIALS ─────────────────────────── */
.testimonials {
  padding: 7rem 0;
  background: var(--bg-0);
}
.testimonials .section-title { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial {
  background: var(--bg-1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 0 !important;
  min-width: 0; /* Prevent grid blowout from long text */
}
.quote-icon i {
  font-size: 1.4rem;
  color: var(--green);
  opacity: 0.55;
  margin-bottom: 0.75rem;
  display: block;
}
.testimonial-content p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.78;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.author-info cite {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
  font-style: normal;
  margin-bottom: 0.18rem;
}
.author-info span {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rating { display: flex; gap: 2px; }
.rating i { font-size: 0.65rem; color: var(--green); }

/* ── 12. FINAL CTA ────────────────────────────── */
.final-cta,
.final-cta-section,
.cta-section {
  padding: 7rem 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-content { max-width: 680px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 1rem;
  color: var(--text-1) !important;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  line-height: 1.78;
}
.cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--text-2);
}
.benefit i { color: var(--green); font-size: 0.72rem; flex-shrink: 0; }
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-3);
  background: transparent !important;
  color: var(--text-3) !important;
  border-radius: 0 !important;
  padding: 0;
  font-weight: 400;
}
.guarantee i { color: var(--green); }

/* course.html guarantee block override */
.content-container .guarantee {
  background: var(--bg-2) !important;
  color: var(--text-2) !important;
  border: 1px solid var(--green-border);
  padding: 1.25rem 1.5rem;
}
.content-container .guarantee h3 { color: var(--green) !important; margin-bottom: 0.5rem; }
.content-container .guarantee p { color: var(--text-2) !important; }

.price-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.price-info .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.price-info .value {
  font-size: 0.85rem;
  color: var(--text-2);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* ── 13. FOOTER ───────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 0;
}
.footer-content { display: flex; flex-direction: column; gap: 3rem; }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo img { height: 34px; width: auto; }
.footer-logo .logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-description {
  font-size: 0.855rem;
  color: var(--text-2);
  line-height: 1.78;
  max-width: 300px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-column h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-column ul li a {
  font-size: 0.86rem;
  color: var(--text-2);
  transition: color 0.15s;
}
.footer-column ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-3);
  margin: 0;
}

/* ── 14. ABOUT PAGE ───────────────────────────── */
.about-hero {
  background: var(--bg-0);
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(118,255,3,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,255,3,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.about-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}
.about-intro {
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 0 !important;
}
.about-stats .stat { background: var(--bg-2); }
.about-image { display: flex; justify-content: center; align-items: flex-start; }
.about-image .profile-photo {
  position: relative;
  width: 100%;
  max-width: 340px;
  border: 1px solid var(--border-mid);
  border-radius: 0 !important;
  overflow: visible;
}
.about-image .profile-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
}
.about-image .elite-badge {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 0 !important;
}
.about-image .elite-badge i,
.about-image .elite-badge span { color: #000; }

/* Timeline */
.investment-journey {
  padding: 6rem 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.timeline {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  align-items: flex-start;
  transition: background 0.2s;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item:hover { background: var(--bg-2); }
.timeline-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.timeline-icon i { color: var(--green); font-size: 1.1rem; }
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.timeline-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.timeline-content p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }

/* Philosophy */
.philosophy {
  padding: 6rem 0;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}
.philosophy-intro {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.78;
  margin-top: 0.75rem;
  max-width: 600px;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.principle {
  background: var(--bg-1);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.principle:hover { background: var(--bg-2); }
.principle-icon { margin-bottom: 1.25rem; }
.principle-icon i {
  font-size: 1.5rem;
  color: var(--green);
}
.principle h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.65rem; }
.principle p { font-size: 0.875rem; color: var(--text-2); line-height: 1.72; }

/* Achievements */
.achievements {
  padding: 6rem 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.achievement-card {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
  border-radius: 0 !important;
}
.achievement-card:hover { background: var(--bg-3); }
.achievement-icon {
  margin-bottom: 1rem;
}
.achievement-icon i { font-size: 1.5rem; color: var(--green); }
.achievement-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.achievement-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.achievement-card p {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── 15. BLOG PAGE ────────────────────────────── */
.blog-hero {
  background: var(--bg-0) !important;
  padding: calc(var(--nav-h) + 4rem) 0 5rem !important;
  border-bottom: 1px solid var(--border);
  text-align: left !important;
  position: relative;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(118,255,3,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,255,3,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.blog-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 1.25rem;
  color: var(--text-1) !important;
  position: relative; z-index: 1;
}
.blog-hero p {
  font-size: 1.1rem !important;
  color: var(--text-2) !important;
  max-width: 620px;
  margin: 0 0 2rem !important;
  position: relative; z-index: 1;
}
.blog-hero .cta-button { position: relative; z-index: 1; }

/* Blog content article */
.blog-content {
  max-width: 860px !important;
  margin: 0 auto !important;
  padding: 4rem 2rem !important;
  background: var(--bg-0) !important;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
section.content-section { border-bottom: 1px solid var(--border); }
.content-section h2 {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--text-1) !important;
  margin: 2.5rem 0 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}
.content-section h2:first-child { margin-top: 0 !important; }
.content-section h2 i { color: var(--green) !important; font-size: 1.3rem !important; }
.content-section p {
  color: var(--text-2) !important;
  font-size: 1rem !important;
  line-height: 1.78 !important;
  margin-bottom: 1.25rem !important;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.25rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-2) !important;
  font-size: 0.96rem;
  line-height: 1.65;
}
.check-list i { color: var(--green) !important; margin-top: 3px; flex-shrink: 0; }

.quote-highlight {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: var(--bg-2) !important;
  border-left: 3px solid var(--green) !important;
  border-radius: 0 !important;
  text-align: left !important;
}
.quote-highlight p {
  font-size: 1.2rem !important;
  font-style: italic !important;
  color: var(--green) !important;
  margin: 0 !important;
  font-weight: 600 !important;
}

/* Insights / post grid */
.insights-section {
  padding: 6rem 0 !important;
  background: var(--bg-0) !important;
  border-top: 1px solid var(--border);
}
.insights-section .section-title { text-align: center; margin-bottom: 3rem; }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1px !important;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto !important;
}
.post-card {
  background: var(--bg-1) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 2rem !important;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  background: var(--bg-2) !important;
  transform: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
.post-card h3 {
  color: var(--text-1) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.65rem;
  line-height: 1.35 !important;
}
.post-card p {
  color: var(--text-2) !important;
  font-size: 0.875rem !important;
  margin-bottom: 1.25rem !important;
  flex: 1;
}
.post-card a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green) !important;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s;
  align-self: flex-start;
}
.post-card a:hover { color: var(--green-dark) !important; }

/* ── 15b. BLOG PAGE — EXTENDED ────────────────── */

/* Post category tag */
.post-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green-border);
  background: var(--green-dim);
  padding: 0.15rem 0.55rem;
  margin-bottom: 0.65rem;
  border-radius: 0 !important;
}

/* Post date */
.post-date {
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.6rem;
}

/* Featured post */
.featured-post {
  padding: 3.5rem 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}
.featured-post .section-label { margin-bottom: 1.5rem; display: block; }
.featured-card {
  background: var(--bg-2);
  border: 1px solid var(--border-mid);
  border-left: 3px solid var(--green);
  padding: 2.5rem 3rem;
  transition: background 0.2s;
  display: block;
  text-decoration: none;
}
.featured-card:hover { background: var(--bg-3); }
.featured-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  color: var(--text-1) !important;
  line-height: 1.18 !important;
  margin-bottom: 1rem !important;
  display: block !important;
}
.featured-card > p {
  font-size: 0.975rem !important;
  color: var(--text-2) !important;
  line-height: 1.78 !important;
  max-width: 720px;
  margin-bottom: 1.75rem !important;
}
.featured-card .read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

/* Content types grid (What's Inside) */
.content-types {
  padding: 5rem 0;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}
.content-types .section-title { margin-bottom: 3rem; }
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.type-card {
  background: var(--bg-1);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.type-card:hover { background: var(--bg-2); }
.type-card > i {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}
.type-card h3 {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  color: var(--text-1) !important;
  line-height: 1.3 !important;
}
.type-card p {
  font-size: 0.82rem !important;
  color: var(--text-2) !important;
  line-height: 1.65 !important;
  margin-bottom: 0.75rem !important;
}
.type-freq {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  display: block;
}

/* Newsletter / about section */
.newsletter-section {
  padding: 5rem 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.newsletter-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 1rem !important;
  color: var(--text-1) !important;
}
.newsletter-col p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 1rem;
}

/* Best-issue link list */
.best-issues {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 1.5rem;
  background: var(--border);
  border: 1px solid var(--border);
}
.best-issue-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-2);
  text-decoration: none;
  transition: background 0.2s;
}
.best-issue-link:hover { background: var(--bg-3); }
.best-issue-link > i {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.22rem;
  font-size: 0.75rem;
}
.best-issue-link strong {
  color: var(--text-1);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.18rem;
}
.best-issue-link span {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* Archive CTA */
.archive-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── 16. CONTACT PAGE ─────────────────────────── */
/* Contact page uses <section class="hero"> > <div class="container">
   Index uses <section class="hero"> > <div class="hero-container">
   We target .hero > .container to avoid breaking the index hero */
.hero > .container {
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  text-align: left;
}
.hero > .container h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-1);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.hero > .container h2 {
  font-size: 1.2rem;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero > .container p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 2rem;
}

.profile-section {
  padding: 4rem 0 !important;
  background: var(--bg-1) !important;
  border-bottom: 1px solid var(--border);
}
.profile-container {
  max-width: 820px !important;
  margin: 0 auto !important;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.profile-section .profile-photo {
  width: 120px !important;
  height: 120px !important;
  border-radius: 0 !important;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--green);
}
.profile-section .profile-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
.profile-section .profile-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-1) !important;
}
.profile-section .profile-info p {
  font-size: 0.9rem;
  color: var(--text-2) !important;
  line-height: 1.75;
}

.contact-form-section {
  padding: 5rem 0 !important;
  background: var(--bg-0) !important;
}
.contact-form {
  max-width: 600px !important;
  margin: 0 auto !important;
  padding: 0 2rem;
}
.contact-form h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: left;
  color: var(--text-1) !important;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2) !important;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-2) !important;
  border: 1px solid var(--border-mid) !important;
  border-radius: 0 !important;
  color: var(--text-1) !important;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green) !important; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3) !important; }
.form-group textarea {
  min-height: 120px !important;
  height: 120px !important;
  resize: vertical;
}
.submit-btn {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--green) !important;
  color: #000 !important;
  font-weight: 700;
  border-radius: 0 !important;
  border: none;
}
.submit-btn:hover { background: var(--green-dark) !important; }

.contact-methods {
  padding: 5rem 0 !important;
  background: var(--bg-1) !important;
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1000px;
  margin: 0 auto !important;
}
.contact-item {
  background: var(--bg-2) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 2rem 1.5rem !important;
  text-align: center;
  transition: background 0.2s;
}
.contact-item:hover {
  background: var(--bg-3) !important;
  transform: none !important;
  box-shadow: none !important;
}
.contact-item i {
  font-size: 1.75rem !important;
  color: var(--green) !important;
  margin-bottom: 0.85rem !important;
  display: block;
}
.contact-item h3 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--text-1) !important; }
.contact-item p { font-size: 0.85rem; color: var(--text-2) !important; margin-bottom: 1rem; }
.contact-item a { color: var(--green) !important; font-weight: 600; font-size: 0.85rem; }
.contact-item a:hover { color: var(--green-dark) !important; }

.substack-section {
  padding: 2.5rem 0 !important;
  background: var(--bg-0) !important;
  text-align: center;
  border-top: 1px solid var(--border);
}
.substack-section p { color: var(--text-2) !important; font-size: 0.9rem; }
.substack-section a { color: var(--green) !important; }

/* Contact page social proof badges (flex layout) */
.social-proof .badge {
  background: var(--bg-2) !important;
  color: var(--text-1) !important;
  border: 1px solid var(--border-mid) !important;
  border-radius: 0 !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem !important;
  text-align: center;
  min-width: 180px !important;
}
.social-proof .badge i { color: var(--green) !important; font-size: 1.25rem; margin-bottom: 0.5rem; }

.final-cta-section p {
  max-width: 580px !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* ── 17. COURSE PAGE ──────────────────────────── */
.course-hero {
  background: var(--bg-0) !important;
  padding: calc(var(--nav-h) + 4rem) 0 5rem !important;
  text-align: center !important;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.course-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(118,255,3,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,255,3,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.course-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 1rem;
  color: var(--text-1) !important;
  position: relative; z-index: 1;
}
.course-hero h2 {
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  color: var(--text-2) !important;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.course-description {
  font-size: 1rem;
  color: var(--text-2) !important;
  max-width: 720px;
  margin: 0 auto 2rem !important;
  line-height: 1.78;
  position: relative; z-index: 1;
}
.course-description p { color: var(--text-2) !important; }
.course-hero .cta-button { position: relative; z-index: 1; }

.content-section {
  padding: 4rem 0 !important;
  background: var(--bg-0) !important;
}
.content-section:nth-child(even) { background: var(--bg-1) !important; }

/* Module */
.module {
  padding: 1.75rem 2rem !important;
  margin-bottom: 1px !important;
  background: var(--bg-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  border-bottom-width: 1px !important;
  transition: background 0.2s;
}
.module:hover { background: var(--bg-3) !important; }
.module h3 {
  color: var(--green) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem;
}
.module p { color: var(--text-2) !important; font-size: 0.875rem !important; line-height: 1.7 !important; }

/* Bonus */
.bonus {
  padding: 1.5rem 2rem !important;
  border: 1px solid var(--border) !important;
  background: var(--bg-2) !important;
  margin-bottom: 1px !important;
  border-radius: 0 !important;
  display: grid;
  grid-template-columns: 110px 1fr;
  grid-template-rows: auto auto;
  column-gap: 2rem;
  row-gap: 0.25rem;
  align-items: start;
  transition: background 0.2s;
}
.bonus:hover { background: var(--bg-3) !important; }
/* Value badge spans both rows so title + description sit neatly beside it */
.bonus-value {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: var(--green) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}
.bonus h3 {
  grid-column: 2;
  color: var(--text-1) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  margin-bottom: 0;
  align-self: end;
}
.bonus p {
  grid-column: 2;
  color: var(--text-2) !important;
  font-size: 0.855rem !important;
  margin: 0 !important;
  align-self: start;
}

/* Total bonus callout */
.content-container > div[style*="background: var(--accent-primary)"] {
  background: var(--green-dim) !important;
  color: var(--green) !important;
  border: 1px solid var(--green-border) !important;
  border-radius: 0 !important;
  padding: 1rem 1.5rem !important;
  font-size: 0.9rem !important;
}

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
details {
  margin-bottom: 1px !important;
  background: var(--bg-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
details[open] { border-color: var(--green-border) !important; }
summary {
  font-weight: 600 !important;
  color: var(--text-1) !important;
  cursor: pointer !important;
  padding: 1.25rem 1.5rem !important;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}
details[open] summary::after { content: '−'; }
details p {
  color: var(--text-2) !important;
  line-height: 1.72 !important;
  margin: 0 !important;
  padding: 0 1.5rem 1.25rem !important;
  font-size: 0.9rem;
}

/* Pricing */
.pricing-section {
  padding: 6rem 0 !important;
  background: var(--bg-0) !important;
  text-align: center;
  border-top: 1px solid var(--border);
}
.pricing-card {
  max-width: 560px;
  margin: 0 auto !important;
  background: var(--bg-2) !important;
  border: 1px solid var(--green-border) !important;
  border-radius: 0 !important;
  padding: 3rem !important;
}
.pricing-card h3 { color: var(--text-1) !important; margin-bottom: 0.5rem; }
.price-display {
  font-size: 4rem !important;
  color: var(--green) !important;
  font-weight: 800 !important;
  margin: 1.5rem 0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.04em;
}
.value-comparison {
  background: var(--bg-3) !important;
  border-radius: 0 !important;
  padding: 1rem 1.25rem !important;
  margin: 1.25rem 0 !important;
  border: 1px solid var(--border);
}
.value-comparison p { color: var(--text-2) !important; margin: 0 !important; }
.value-comparison strong { color: var(--green) !important; }
.pricing-card .cta-button { width: 100%; margin: 1.25rem 0 !important; }

/* ── 18. THANK YOU PAGE ───────────────────────── */
.thank-you-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  text-align: center;
  background: var(--bg-0);
  position: relative;
}
.thank-you-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(118,255,3,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,255,3,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.thank-you-hero .container { position: relative; z-index: 1; }
.success-icon { font-size: 3.5rem; color: var(--green); margin-bottom: 1.5rem; }
.thank-you-hero h1 { margin-bottom: 1rem; }
.thank-you-hero p { font-size: 1rem; color: var(--text-2); max-width: 540px; margin: 0 auto; }

.additional-info {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.additional-info h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.additional-info p { font-size: 0.975rem; color: var(--text-2); max-width: 560px; margin: 0 auto 2.5rem; }
.quick-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--border-mid);
  background: var(--bg-2);
  font-size: 0.85rem;
  color: var(--text-2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 0 !important;
}
.quick-link:hover { border-color: var(--green); color: var(--green); }
.quick-link i { color: var(--green); font-size: 0.85rem; }

/* ── 19. RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .credibility-content { grid-template-columns: 1fr; gap: 3rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-content { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr) !important; }
  /* Stack all testimonials so none are hidden on mid-range screens */
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonial { max-width: 680px; margin: 0 auto; width: 100%; }
  /* Blog extended */
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-grid { grid-template-columns: 1fr; gap: 3rem; }
  .featured-card { padding: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Remove backdrop-filter on mobile — in Safari/WebKit it creates a containing block
     for position:fixed children, trapping the nav-menu inside the 60px navbar and
     giving it 0 height. The background is already opaque so blur is not needed. */
  .navbar {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Switch from transform-slide to display toggle — avoids all transform/stacking
     context issues across browsers. Fade-in animation keeps UX smooth. */
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--bg-1);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    z-index: 99999;
  }
  .nav-menu.active {
    display: flex !important;
    animation: mobileMenuIn 0.22s ease;
  }
  @keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-item { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-link { padding: 0.9rem 0; width: 100%; font-size: 0.95rem; }
  .dropdown-content {
    position: static;
    transform: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    border: none;
    padding: 0;
    background: transparent;
    min-width: unset;
    top: unset;
  }
  .dropdown-content.active { display: block; }
  .dropdown-content a { padding: 0.6rem 1rem; }
  .hamburger { display: flex; }

  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .badge { border-right: none !important; border-bottom: 1px solid var(--border); padding: 1.25rem !important; }
  .badge:nth-child(even) { border-bottom: none; }
  .badge:last-child { border-bottom: none; }

  .steps-grid,
  .testimonials-grid,
  .post-grid { grid-template-columns: 1fr !important; }
  .principles-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .credibility-stats { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-benefits { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-container { padding: 3.5rem 2rem; }
  .profile-container { flex-direction: column; align-items: center; text-align: center; }
  .bonus { grid-template-columns: 1fr; }
  .trust-indicators { flex-direction: column; gap: 0.75rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .quick-links { gap: 0.5rem; }
}

@media (max-width: 480px) {
  .badges-grid { grid-template-columns: 1fr; }
  .badge { border-bottom: 1px solid var(--border) !important; }
  .badge:last-child { border-bottom: none !important; }
  .achievements-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .credibility-stats { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr !important; }
  .featured-card { padding: 1.5rem 1.25rem; }
}

/* ── 20. ANIMATIONS ───────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

/* ── 21. METEOR BACKGROUND CANVAS ──────────── */
#meteorCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}
