:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #4ade80;
  --green-pale: rgba(34, 197, 94, 0.15);
  --bg: rgba(255, 255, 255, 0.02);
  --white: rgba(255, 255, 255, 0.05);
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(135deg, #111827, #1c2f1a);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
}

/* ---- STICKY BANNER ---- */
.sticky-top-bar {
  background: linear-gradient(90deg, #065f46, #064e3b);
  color: #d1fae5;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}

.sticky-top-bar {
  background: linear-gradient(90deg, #064e3b, #022c22);
  color: #d1fae5;
  font-size: 14px;
}
.sticky-top-bar span {
  color: #6ee7b7;
  font-weight: 700;
}

.ticker {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollTicker 12s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  padding-right: 40px; /* spacing between repeats */
  font-weight: 600;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- NAVBAR ---- */
.main-nav {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 44px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.nav-brand img {
  height: 50px; /* perfect navbar size */
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-cta {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero {
  background: transparent;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden; /* IMPORTANT */
}

.hero::before,
.hero::after {
  pointer-events: none;
  max-width: 100%;
}

.hero::before {
  content: "";
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero::after {
  content: "";
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-light);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: "🎯";
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 .highlight {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.hero p.subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: -8px;
  background: var(--green-pale);
}
.hero-trust .avatars span:first-child {
  margin-left: 0;
}
.btn-cta-hero {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
  text-decoration: none;
}
.btn-cta-hero:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.5);
}
.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #92400e;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  margin-left: 14px;
}
.urgency-tag::before {
  content: "⚡";
}
.hero-visual {
  background: var(--white);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  position: relative;
}
.hero-visual .live-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ef4444;
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-visual h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--text);
}
.workshop-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.workshop-detail:last-child {
  border-bottom: none;
}
.workshop-detail .icon {
  width: 38px;
  height: 38px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 18px;
  flex-shrink: 0;
}
.workshop-detail strong {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.price-tag {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-tag .old {
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.7;
}
.price-tag .new {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
}
.price-tag .save {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

/* ---- PRICE TAG ---- */
.price-tag {
  background: linear-gradient(135deg, #22c55e, #15803d);
  border-radius: 16px;
  padding: 22px 26px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.35);
  position: relative;
  overflow: hidden;
}

/* Glow overlay (premium effect) */
.price-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

/* LEFT SIDE */
.price-left {
  display: flex;
  flex-direction: column;
}

/* Old price */
.old {
  text-decoration: line-through;
  font-size: 14px;
  opacity: 0.7;
  color: #dcfce7;
}

/* New price */
.new {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* Label */
.label {
  font-size: 12px;
  color: #dcfce7;
  margin-top: 4px;
}

/* RIGHT SIDE BADGE */
.price-right .save {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(6px);
}

/* ---- SECTIONS GENERAL ---- */
section {
  padding: 72px 0;
}
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-light);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
}

/* ---- PROBLEM ---- */
.problem-section {
  background: transparent;
}
.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.problem-card h5 {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 700;
}
.problem-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.insight-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.insight-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}
.insight-box p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}
.insight-box span {
  color: var(--green-light);
  font-weight: 700;
}

/* ---- SOLUTION / ROADMAP ---- */
.solution-section {
  background: transparent;
}
.roadmap-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  margin-top: 40px;
}
.step-item {
  flex: 1;
  min-width: 130px;
  text-align: center;
  position: relative;
  padding: 24px 10px;
}
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -18px;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  z-index: 1;
}
.step-num {
  width: 50px;
  height: 50px;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
}
.step-item h6 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.step-item p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ---- WHAT YOU LEARN ---- */
.learn-section {
  background: transparent;
}
.learn-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.learn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  border-radius: 4px 0 0 4px;
}
.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  border-color: var(--green-light);
}
.learn-card .icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.learn-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.learn-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

/* ---- MENTOR ---- */
.mentor-section {
  background: linear-gradient(
    135deg,
    #042f1e 0%,
    #064e3b 35%,
    #0d3d2a 65%,
    #052e1c 100%
  );
  position: relative;
  overflow: hidden;
}
.mentor-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.08) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}
.mentor-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.07) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}
.mentor-section .section-label {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.mentor-section .section-title {
  color: #fff;
}
.mentor-section .section-title span {
  color: #4ade80;
}

/* Mentor image frame */
.mentor-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 320px;
}
.mentor-img-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(74, 222, 128, 0.4);
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.5);
  position: relative;
}
.mentor-img-frame img {
  width: 100%;
  display: block;
  border-radius: 17px;
  object-fit: cover;
}
.mentor-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 17px;
  background: linear-gradient(to top, rgba(4, 47, 30, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.mentor-name-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  padding: 10px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mentor-name-badge::before {
  content: "👨‍💼";
  font-size: 16px;
}

/* Stats row */
.mentor-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.mentor-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.mentor-stat-box:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-3px);
}
.mentor-stat-box .stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #4ade80;
  display: block;
  line-height: 1.1;
}
.mentor-stat-box .stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
  line-height: 1.3;
}

/* Mentor bio */
.mentor-bio-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 14px;
}
.mentor-bio-text strong {
  color: #fff;
}

/* Highlight pill */
.mentor-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Quote bar */
.mentor-quote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #4ade80;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  line-height: 1.7;
}
.mentor-quote span {
  color: #4ade80;
  font-style: normal;
  font-weight: 700;
}

/* ---- COMPARISON ---- */
.diff-section {
  background: transparent;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.compare-card {
  border-radius: 16px;
  padding: 32px 28px;
}
.compare-card.bad {
  background: rgba(239, 68, 68, 0.05);
  border: 1.5px solid rgba(239, 68, 68, 0.2);
}
.compare-card.good {
  background: var(--green-pale);
  border: 1.5px solid rgba(34, 197, 94, 0.4);
}
.compare-card h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14.5px;
}
.compare-item .ci {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.bad .ci {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.good .ci {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-dark);
}

/* ---- BONUS ---- */
.bonus-section {
  background: transparent;
}
.bonus-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.bonus-tag {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.bonus-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.bonus-card h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.bonus-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.bonus-worth {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-radius: 14px;
  padding: 20px 28px;
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
  font-weight: 700;
}
.bonus-worth span {
  font-size: 1.5rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial-section {
  background: transparent;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.25s;

   display: flex;              /* ADD THIS */
  flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}
.testi-stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;  
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;

   margin-top: auto;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid var(--green-light);
}
.testi-author strong {
  font-size: 14px;
  display: block;
}
.testi-author small {
  font-size: 12px;
  color: var(--muted);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--green-light);
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- URGENCY ---- */
.urgency-section {
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.urgency-section h2 {
  color: #fff;
}
.urgency-section p {
  color: rgba(255, 255, 255, 0.7);
}
.urgency-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.urgency-stat {
  text-align: center;
}
.urgency-stat .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-light);
  display: block;
}
.urgency-stat small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- PRICING ---- */
.pricing-section {
  background: transparent;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--green-dark);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  transform-origin: center;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.pricing-includes li:last-child {
  border-bottom: none;
}
.pricing-includes li i {
  color: var(--green);
  font-size: 18px;
}
.price-display {
  text-align: center;
  margin: 32px 0;
}
.price-display .original {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--muted);
}
.price-display .current {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-dark);
  font-family: "Bricolage Grotesque", sans-serif;
  display: block;
  line-height: 1.1;
}
.price-display .save-badge {
  background: #fef3c7;
  color: #92400e;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-top: 8px;
}
.btn-cta-big {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: block;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
  text-decoration: none;
}
.btn-cta-big:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.5);
  color: #fff;
}
.guarantee-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

/* ---- FAQ ---- */
.faq-section {
  background: transparent;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.25s;
}
.faq-item:hover {
  border-color: var(--green-light);
}
.faq-question {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}
.faq-question .toggle-icon {
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 22px 20px;
}
.faq-item.open .toggle-icon {
  transform: rotate(45deg);
}

/* ---- FINAL CTA ---- */
.final-cta {
  background: transparent;
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 620px;
  margin: 0 auto 20px;
}
.final-cta p {
  color: var(--muted);
  margin-bottom: 36px;
}

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  z-index: 997;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}
.sticky-cta-mobile a {
  background: var(--green);
  color: #fff;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

/* ---- FOOTER ---- */
.footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 28px;
  font-size: 13px;
}
.footer span {
  color: var(--green-light);
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- PREMIUM STICKY BAR ---- */
.bottom-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: linear-gradient(90deg, #020617, #0f172a);
  border-top: 1px solid rgba(34, 197, 94, 0.25);

  backdrop-filter: blur(14px);
  z-index: 9999;
  padding: 12px 18px;

  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

/* Layout */
.sticky-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Text */
.sticky-text {
  font-size: 14px;
  color: #e5e7eb;
}

.sticky-text strong {
  color: #22c55e;
  font-size: 16px;
  font-weight: 800;
}

/* CTA BUTTON */
.sticky-btn {
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;

  padding: 12px 20px;
  border-radius: 12px;

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
  transition: all 0.25s ease;
}

/* Hover */
.sticky-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.7);
}

/* URGENCY BADGE */
.sticky-text::after {
  content: " ⚡ Filling Fast";
  margin-left: 8px;
  font-size: 12px;
  color: #fbbf24;
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: block;
  }
  .mentor-img-wrap {
    width: 260px;
  }
  .mentor-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .step-item:not(:last-child)::after {
    display: none;
  }
  section {
    padding: 52px 0;
  }
  .hero {
    padding: 52px 0 48px;
  }
  .pricing-card {
    padding: 32px 22px;
  }
  .urgency-stats {
    gap: 24px;
  }
  body {
    padding-bottom: 70px;
  }
  .sticky-top-bar {
    font-size: 12px;
  }
  .roadmap-steps {
    flex-direction: column;
    gap: 0;
  }
  .step-item {
    padding: 14px 10px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .price-display .current {
    font-size: 2.8rem;
  }
}


@media (max-width: 768px) {
  .main-nav {
    padding: 10px 0;
  }

  .nav-brand img {
    height: 36px; /* smaller logo */
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 8px;
  }

  .nav-cta span {
    display: none; /* optional if text is long */
  }
}

@media (max-width: 768px) {
  .bottom-sticky-bar {
    padding: 10px 12px;
  }

  .sticky-content {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .sticky-text {
    text-align: center;
    font-size: 13px;
  }

  .sticky-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {

  /* STEP CONTAINER */
  .roadmap-steps {
    gap: 18px;
    padding: 10px 0;
  }

  /* STEP ITEM */
  .step-item {
    padding: 18px 10px;
  }

  /* ICON BOX (BIG CHANGE) */
  .step-num {
    width: 64px;
    height: 64px;
    font-size: 26px;
    border-radius: 16px;
    margin-bottom: 12px;

    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  }

  /* TITLE */
  .step-item h6 {
    font-size: 15px;
    font-weight: 700;
  }

  /* SUBTEXT */
  .step-item p {
    font-size: 13px;
  }

}

.step-num {
  transition: all 0.3s ease;
}

.step-item:active .step-num {
  transform: scale(0.95);
}

.step-item:hover .step-num {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(34, 197, 94, 0.6);
}

body {
  padding-bottom: 75px; /* FIX */
}