/* =============================================
   DEVTRADER FULLSTACK — DESIGN SYSTEM
   Dark Green + Claymorphism
   ============================================= */

/* --- TOKENS --- */
:root {
  --bg-base:         #050c0a;
  --bg-surface:      #0a1812;
  --bg-card:         #0d1f18;
  --bg-card-hover:   #112619;

  --green-primary:   #00c96f;
  --green-bright:    #00ff9d;
  --green-dim:       rgba(0, 201, 111, 0.12);
  --green-border:    rgba(0, 201, 111, 0.22);
  --green-border-h:  rgba(0, 201, 111, 0.45);

  --red-err:         #ff4d6d;
  --blue-accent:     #3b82f6;
  --purple-accent:   #a855f7;
  --orange-accent:   #f97316;

  --text-primary:    #f0fdf4;
  --text-secondary:  #94a3b8;
  --text-dim:        #475569;

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
  --radius-xl:  36px;

  --shadow-clay:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 4px 20px rgba(0, 201, 111, 0.07),
    inset 0 1px 0 rgba(0, 201, 111, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  --shadow-clay-hover:
    0 28px 80px rgba(0, 0, 0, 0.65),
    0 8px 32px rgba(0, 201, 111, 0.14),
    inset 0 1px 0 rgba(0, 201, 111, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.text-green { color: var(--green-primary); }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-align: center;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* --- CLAY CARD --- */
.clay-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--green-border);
  box-shadow: var(--shadow-clay);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.clay-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,201,111,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.clay-card:hover {
  box-shadow: var(--shadow-clay-hover);
  border-color: var(--green-border-h);
  transform: translateY(-2px);
}
.clay-card--featured {
  border-color: rgba(0, 201, 111, 0.4);
  background: linear-gradient(135deg, #0d2419 0%, #0a1812 100%);
}
.clay-card--highlight {
  border-color: rgba(0, 201, 111, 0.5);
  background: linear-gradient(135deg, #0e2b1c 0%, #0a1812 100%);
}
.clay-card--glow {
  border-color: rgba(0, 201, 111, 0.35);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--green-primary);
  color: #050c0a;
  padding: 12px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(0, 201, 111, 0.35), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 6px 36px rgba(0, 201, 111, 0.55), 0 1px 0 rgba(255,255,255,0.2) inset;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 24px;
  font-size: 0.95rem;
  border: 2px solid rgba(240, 253, 244, 0.15);
}
.btn-ghost:hover {
  border-color: var(--green-border-h);
  color: var(--green-primary);
}
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  padding: 13px 28px;
  font-size: 0.95rem;
  border: 2px solid var(--green-border);
}
.btn-outline:hover {
  background: var(--green-dim);
  border-color: var(--green-primary);
}
.btn-lg { padding: 15px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-xl { padding: 18px 48px; font-size: 1.15rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(0, 201, 111, 0.35), 0 1px 0 rgba(255,255,255,0.15) inset; }
  50% { box-shadow: 0 4px 40px rgba(0, 201, 111, 0.65), 0 1px 0 rgba(255,255,255,0.2) inset; }
}
@media (prefers-reduced-motion: no-preference) {
  .pulse-btn { animation: pulse-glow 2.5s ease-in-out infinite; }
}

/* ==============================================
   NAVBAR
   ============================================== */
#navbar {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 50;
  background: rgba(5, 12, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-border);
  transition: box-shadow var(--transition), background var(--transition);
}
#navbar.scrolled {
  background: rgba(5, 12, 10, 0.96);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.nav-logo strong { font-weight: 800; color: var(--green-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-cta { margin-left: 8px; padding: 9px 20px; font-size: 0.88rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(5, 12, 10, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 10px 24px;
}
.mobile-menu .btn { margin-top: 16px; font-size: 1rem; padding: 14px 36px; }

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(0, 201, 111, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-primary);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 820px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text-primary); }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.avatars { display: flex; }
.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  margin-left: -8px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
.social-proof-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.social-proof-text span { font-size: 0.85rem; color: var(--text-secondary); }
.social-proof-text strong { color: var(--text-primary); }

/* Terminal */
.hero-terminal {
  width: 100%;
  max-width: 680px;
  padding: 0;
  overflow: hidden;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--green-border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red   { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-left: 8px;
}
.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.8;
  min-height: 180px;
  text-align: left;
  color: var(--text-secondary);
}
.terminal-body .c-comment { color: #4b6f52; }
.terminal-body .c-keyword { color: #c084fc; }
.terminal-body .c-type    { color: #60a5fa; }
.terminal-body .c-string  { color: #86efac; }
.terminal-body .c-number  { color: #fb923c; }
.terminal-body .c-fn      { color: var(--green-primary); }
.terminal-body .c-op      { color: var(--text-secondary); }
.terminal-cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  background: var(--green-primary);
  border-radius: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Stats Bar */
.stats-bar {
  margin-top: 72px;
  background: rgba(0,201,111,0.06);
  border-top: 1px solid var(--green-border);
}
.stats-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 40px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-secondary); }
.stat-divider {
  width: 1px;
  background: var(--green-border);
  align-self: stretch;
  margin: 16px 0;
}

/* ==============================================
   PAIN POINTS
   ============================================== */
.pain { background: var(--bg-surface); }
.pain .section-title, .pain .section-badge { text-align: center; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.pain-card { padding: 28px; }
.pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 77, 109, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pain-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ==============================================
   SOLUTION
   ============================================== */
.solution-card { padding: 48px; }
.solution-card.clay-card--featured { display: flex; align-items: flex-start; gap: 60px; flex-wrap: wrap; }
.solution-content { flex: 1; min-width: 300px; }
.solution-content .section-title { text-align: left; }
.solution-desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; font-size: 1rem; }
.solution-list { display: flex; flex-direction: column; gap: 14px; }
.solution-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.solution-list svg { flex-shrink: 0; }

.solution-visual { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 20px; }
.tech-stack { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  min-width: 88px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: default;
  flex: 1;
}
.chart-preview { padding: 20px; }
.chart-label { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 12px; }
.chart-svg { width: 100%; height: 100px; display: block; }
.chart-footer { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-size: 0.8rem; color: var(--text-secondary); }
.chart-footer .text-green { font-weight: 700; }
.chart-img { width: 100%; border-radius: var(--radius-sm); display: block; }

/* ==============================================
   FOR WHOM
   ============================================== */
.for-whom { background: var(--bg-surface); }
.for-whom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.for-whom-col {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--green-border);
  box-shadow: var(--shadow-clay);
}
.col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.col-yes { color: var(--green-primary); }
.col-no  { color: var(--red-err); }
.for-whom-list { display: flex; flex-direction: column; gap: 12px; }
.for-whom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 4px;
}

/* ==============================================
   MODULES
   ============================================== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.module-card { padding: 28px 28px 24px; cursor: default; position: relative; }
.module-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0.7;
}
.module-icon {
  width: 52px;
  height: 52px;
  background: var(--green-dim);
  border-radius: var(--radius-sm);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.module-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.module-card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.module-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 4px 10px;
  background: rgba(0,201,111,0.08);
  border: 1px solid rgba(0,201,111,0.18);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.03em;
}
.module-badge-star {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-primary);
  color: #050c0a;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ==============================================
   INSTRUCTOR
   ============================================== */
.instructor-card {
  padding: 48px;
  display: flex;
  gap: 52px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.instructor-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-shrink: 0; }
.instructor-photo-ring {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--green-primary), #006f3d);
  box-shadow: 0 0 40px rgba(0, 201, 111, 0.3);
}
.instructor-photo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-card);
}
.instructor-badges { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.badge-pill {
  padding: 5px 14px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-primary);
  text-align: center;
  white-space: nowrap;
}
.instructor-content { flex: 1; min-width: 280px; }
.instructor-name {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.instructor-role { font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; }
.instructor-bio { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.instructor-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px; }
.i-stat { display: flex; flex-direction: column; gap: 4px; }
.i-stat-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}
.i-stat-label { font-size: 0.78rem; color: var(--text-secondary); }

.instructors-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.instructor-photo-ring--placeholder {
  background: linear-gradient(135deg, rgba(0,201,111,0.2), rgba(0,111,61,0.3));
}
.instructor-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--bg-card);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials { background: var(--bg-surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card { padding: 28px; }
.testimonial-card--highlight { border-color: rgba(0,201,111,0.45); }
.t-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.t-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-author img { border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.t-author strong { display: block; font-size: 0.9rem; color: var(--text-primary); margin-bottom: 2px; }
.t-author span { font-size: 0.78rem; color: var(--text-secondary); }

/* ==============================================
   BONUSES
   ============================================== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.bonus-card { padding: 28px; }
.bonus-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.bonus-icon.green  { background: rgba(0,201,111,0.12); color: var(--green-primary); border: 1px solid rgba(0,201,111,0.2); }
.bonus-icon.blue   { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
.bonus-icon.purple { background: rgba(168,85,247,0.12); color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }
.bonus-icon.orange { background: rgba(249,115,22,0.12); color: #fb923c; border: 1px solid rgba(249,115,22,0.2); }
.bonus-value {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-decoration: line-through;
}
.bonus-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.bonus-card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.65; }
.bonuses-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.bonus-total {
  margin-top: 36px;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.bonus-total-stack {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.bonus-stack-val {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.bonus-stack-divider {
  height: 1px;
  background: var(--green-border);
  margin: 4px 0;
}
.bonus-stack-total {
  font-size: 1rem !important;
}
.bonus-stack-total .bonus-stack-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}
.bonus-total-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
}
.bonus-total-note { font-size: 0.82rem; color: var(--text-secondary); }
@media (max-width: 768px) {
  .bonuses-grid--3col { grid-template-columns: 1fr; }
}

/* ==============================================
   PRICING
   ============================================== */
.pricing { background: var(--bg-surface); }
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.urgency-bar strong { color: var(--text-primary); }
.countdown {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fb923c;
  background: rgba(249, 115, 22, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.pricing-card { padding: 32px 28px; display: flex; flex-direction: column; }
.pricing-card--featured {
  border-color: var(--green-primary);
  background: linear-gradient(135deg, #0d2b1e 0%, #0a1812 100%);
  transform: scale(1.02);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 8px 32px rgba(0, 201, 111, 0.2),
    inset 0 1px 0 rgba(0, 201, 111, 0.25);
}
.pricing-card--featured:hover { transform: scale(1.02) translateY(-3px); }
.plan-badge-popular {
  display: inline-block;
  background: var(--green-primary);
  color: #050c0a;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 16px;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.plan-price { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.plan-price-old {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.plan-price-main {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.plan-price-or { font-size: 0.8rem; color: var(--text-secondary); }
.plan-features { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.plan-features svg { flex-shrink: 0; }
.feature-disabled { color: var(--text-dim) !important; }
.plan-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--green-primary);
  margin-top: 12px;
}
.pricing-single-wrap {
  display: flex;
  justify-content: center;
}
.pricing-card--single {
  width: 100%;
  max-width: 680px;
  text-align: center;
}
.pricing-card--single .plan-price {
  align-items: center;
}
.pricing-card--single .plan-badge-popular {
  align-self: center;
}
.plan-features-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 28px;
}
.plan-features-heading {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}
.plan-features-group .plan-features { margin-bottom: 0; }
@media (max-width: 560px) {
  .plan-features-cols { grid-template-columns: 1fr; gap: 16px; }
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-badge {
  padding: 5px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ==============================================
   GUARANTEE
   ============================================== */
.guarantee-card {
  padding: 52px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.guarantee-icon { flex-shrink: 0; }
.guarantee-content h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.guarantee-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

/* ==============================================
   FAQ
   ============================================== */
.faq { background: var(--bg-surface); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq-item { padding: 0; overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-primary); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==============================================
   FINAL CTA
   ============================================== */
.final-cta-card {
  padding: 72px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  position: relative;
}
.final-cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 201, 111, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}
.final-cta-btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.final-cta-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--green-primary);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: #030805;
  border-top: 1px solid var(--green-border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; max-width: 320px; }
.footer-links-group h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 0.87rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-links-group a:hover { color: var(--green-primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-disclaimer { font-size: 0.75rem !important; }

/* ==============================================
   STICKY CTA (mobile)
   ============================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(5, 12, 10, 0.97);
  border-top: 1px solid var(--green-border);
  z-index: 30;
  display: none;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
  .solution-card.clay-card--featured { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .stat-divider { display: none; }
  .stat-item { padding: 20px 24px; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .instructor-card { padding: 24px 16px; flex-direction: column; align-items: center; text-align: center; }
  .instructor-stats { justify-content: center; }
  .guarantee-card { flex-direction: column; text-align: center; align-items: center; padding: 36px 24px; }
  .guarantee-content .btn { width: 100%; }
  .solution-card { padding: 24px 16px; }
  .solution-content { min-width: unset; }
  .solution-visual { min-width: unset; width: 100%; }
  .final-cta-card { padding: 52px 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card--featured { transform: scale(1); }
  .stats-inner { justify-content: center; flex-wrap: wrap; overflow-x: unset; }
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 110px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .modules-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .bonus-total { flex-direction: column; }
  .instructor-content { text-align: center; }
  .solution-content .section-title { text-align: center; }
}

/* ==============================================
   SCROLL REVEAL ANIMATIONS
   ============================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}
