/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #0f172a;
  line-height: 1.6;
  background: #ffffff;
}

/* =========================
   PRODUCT HERO
========================= */
/* .product-hero {
  padding: 90px 20px 70px;
  background: linear-gradient(
    to bottom,
    #0f172a 0%,
    #111827 100%
  );
  color: #ffffff;
  text-align: center;
}

.product-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-hero p {
  font-size: 18px;
  max-width: 820px;
  margin: 0 auto 28px;
  color: #e5e7eb;
}

.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: #cbd5f5;
} */

/* =========================
   CTA BUTTON (REUSED)
========================= */
/* .cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 22px;
  background: linear-gradient(135deg, #facc15, #fde047);
  color: #0f172a;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.35);
  transition: all 0.25s ease;
  text-align: center;
}

.cta-btn span {
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
  color: #3f3f46;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(250, 204, 21, 0.45);
} */

/* =========================
   GENERIC SECTION
========================= */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 24px;
  text-align: center;
}

/* =========================
   PROBLEM LIST
========================= */
.problem-list {
  max-width: 700px;
  margin: auto;
  list-style: none;
}

.problem-list li {
  font-size: 17px;
  padding: 10px 0;
}

.section-text {
  margin-top: 20px;
  max-width: 760px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #374151;
}

/* =========================
   LIGHT BACKGROUND SECTIONS
========================= */
.bg-light {
  background: #f8fafc;
}

/* =========================
   FEATURES GRID
========================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.feature-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #374151;
}

/* =========================
   STEPS
========================= */
.steps {
  max-width: 700px;
  margin: auto;
  padding-left: 18px;
}

.steps li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* =========================
   REVIEWS
========================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.review-video {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  text-align: center;
}



.video-placeholder {
  height: 180px;
  background: #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: 600;
  color: #6b7280;
}
.video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================
   PRICING
========================= */
.pricing {
  background: #0f172a;
  color: #ffffff;
  text-align: center;
}

.price-box {
  max-width: 360px;
  margin: 30px auto 0;
  background: #111827;
  padding: 30px;
  border-radius: 14px;
}

.old-price2 {
  text-decoration: line-through;
  color: #ffffff;
}

.new-price2 {
  color: #f8f2f2;
  font-size: 40px;
  font-weight: 700;
  margin: 6px 0;
}
#price5{
  text-decoration: line-through;
  color: #ffffff;
}
#price6{
  color: #f8f2f2;
  font-size: 40px;
  font-weight: 700;
  margin: 6px 0;
}

#price7{
  color: #f8f2f2;
  font-size: 10px;
}

.price-note {
  font-size: 14px;
  
  margin-bottom: 20px;
  color: #f32424;
}

/* =========================
   FAQ
========================= */
details {
  max-width: 700px;
  margin: 14px auto;
  padding: 14px 18px;
  background: #f8fafc;
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin-top: 10px;
  font-size: 15px;
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #111827,
    #0f172a
  );
  color: #ffffff;
}

.final-cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto 26px;
  color: #e5e7eb;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .product-hero h1 {
    font-size: 30px;
  }

  .section h2 {
    font-size: 24px;
  }

  .new-price {
    font-size: 32px;
  }
}

.landing-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
  padding: 100px 20px 140px;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(250, 204, 21, 0.15);
  color: #facc15;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}

.landing-hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.landing-hero h1 span {
  color: #facc15;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 24px;
  color: #cbd5f5;
}

.hero-problems p {
  font-size: 15px;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.hero-assurance {
  margin-top: 14px;
  font-size: 16px;
  color: #facc15;
  font-weight: 500;
}

.hero-description {
  margin-top: 16px;
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.6;
}

.hero-highlight {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 600;
}

.hero-actions {
  margin-top: 32px;
}

.primary-btn {
  display: inline-block;
  background: #facc15;
  color: #020617;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.35);
}

.limited-note {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .landing-hero {
    padding: 80px 20px 120px;
  }

  .landing-hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

.problem-section {
  padding: 90px 20px;
  background: #f8fafc;
}

.problem-container {
  max-width: 1100px;
  margin: auto;
}

.problem-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.problem-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.problem-header p {
  font-size: 16px;
  color: #475569;
}

.problem-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.problem-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.problem-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.problem-card h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #b91c1c;
}

.problem-card ul {
  padding-left: 18px;
}

.problem-card li {
  margin-bottom: 8px;
  color: #334155;
}

.warning-list li {
  color: #b91c1c;
  font-weight: 500;
}

.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 22px 0;
}

.quote-card blockquote {
  margin: 18px 0;
  padding-left: 18px;
  border-left: 4px solid #facc15;
  font-style: italic;
  color: #0f172a;
}

.quote-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #64748b;
}

.problem-footer {
  margin-top: 50px;
  text-align: center;
}

.problem-footer p {
  font-size: 18px;
  font-weight: 600;
}

.problem-footer span {
  color: #facc15;
  background: #0f172a;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .problem-header h2 {
    font-size: 26px;
  }
}

.about-program {
  padding: 90px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-header {
  text-align: center;
  max-width: 780px;
  margin: auto;
}

.about-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.about-header p {
  font-size: 16px;
  color: #475569;
}

.about-header span {
  color: #16a34a;
  font-weight: 600;
}

.about-content {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.about-intro {
  font-size: 16px;
  margin-bottom: 24px;
  color: #334155;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.about-points li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 15px;
  color: #0f172a;
}

.about-points span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  font-size: 12px;
  margin-right: 12px;
}

.about-note {
  font-size: 15px;
  color: #475569;
  font-style: italic;
}

/* Visual Side */
.about-visual {
  position: relative;
}

.circle-bg {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #dcfce7, transparent 70%);
  position: absolute;
  top: -40px;
  right: 0;
}

.visual-card {
  position: relative;
  background: #0f172a;
  color: #e5e7eb;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.visual-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #facc15;
}

.visual-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-header h2 {
    font-size: 26px;
  }

  .about-visual {
    margin-top: 40px;
  }
}

.what-you-get {
  padding: 100px 20px;
  background: #f8fafc;
}

.features-container {
  max-width: 1200px;
  margin: auto;
}

.features-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.features-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.features-header p {
  font-size: 16px;
  color: #475569;
}

.features-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: transform 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 14px;
}

.feature-small {
  font-size: 14px;
  color: #475569;
  margin-bottom: 12px;
}

.feature-card ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

.feature-card li {
  margin-bottom: 8px;
  font-size: 14.5px;
  color: #334155;
}

.feature-note {
  font-size: 14px;
  color: #475569;
  font-style: italic;
}

.feature-warning {
  font-size: 14px;
  color: #b91c1c;
  font-weight: 600;
}

.feature-dark {
  background: #0f172a;
  color: #e5e7eb;
}

.feature-dark li,
.feature-dark .feature-note {
  color: #cbd5f5;
}

/* Responsive */
@media (max-width: 768px) {
  .features-header h2 {
    font-size: 28px;
  }
}

.who-for {
  padding: 90px 20px;
  background: #ffffff;
}

.who-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.who-header {
  text-align: center;
  max-width: 780px;
  margin: auto;
}

.who-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #0f172a;
}

.who-header p {
  font-size: 16px;
  color: #475569;
}

/* Grid */
.who-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Cards */
.who-card {
  background: #f8fafc;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.who-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #0f172a;
}

/* List */
.who-card ul {
  list-style: none;
  padding: 0;
}

.who-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
}

.who-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: bold;
}

/* Footer Line */
.who-footer {
  margin-top: 50px;
  text-align: center;
}

.who-footer p {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.who-footer span {
  display: inline-block;
  margin-left: 6px;
  background: #0f172a;
  color: #facc15;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .who-header h2 {
    font-size: 26px;
  }

  .who-footer p {
    font-size: 16px;
  }
}


.trust-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.trust-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.trust-header {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.trust-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #0f172a;
}

.trust-header p {
  font-size: 16px;
  color: #475569;
}

/* Grid */
.trust-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* Cards */
.trust-card {
  background: #ffffff;
  padding: 34px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.trust-card h3 {
  font-size: 21px;
  margin-bottom: 16px;
  color: #0f172a;
}

.trust-intro {
  font-size: 15px;
  color: #334155;
  margin-bottom: 14px;
}

.trust-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.trust-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #334155;
}

.trust-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: bold;
}

.trust-note {
  font-size: 14px;
  color: #475569;
  font-style: italic;
}

/* Mentor Highlight */
.mentor-text {
  font-size: 15px;
  color: #334155;
  margin-bottom: 14px;
}

.mentor-highlight {
  margin-top: 22px;
  padding: 16px;
  background: #0f172a;
  border-radius: 14px;
  text-align: center;
}

.mentor-highlight p {
  color: #facc15;
  font-size: 16px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-header h2 {
    font-size: 26px;
  }
}

.pricing-faq {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.pf-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* PRICING */

.faq-box h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0f172a;
}


.pricing-box h2{
  font-size: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}

.pricing-subtitle {

  margin-bottom: 24px;
}

#price4{
  color: white;
  font-size: 15px;
}

.price-card {
  background: #0f172a;
  color: #e5e7eb;
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.old-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 18px;
}

.new-price {
  font-size: 44px;
  font-weight: 800;
  color: #facc15;
  margin: 6px 0;
}

.offer-text {
  font-size: 14px;
  margin-bottom: 14px;
}

.limit-note {
  font-size: 14px;
  background: rgba(250,204,21,0.1);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.pricing-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #facc15;
  color: #020617;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250,204,21,0.35);
}

.cta-subtext {
  margin-top: 10px;
  font-size: 12px;
  color: #cbd5f5;
  text-align: center;
}

/* FAQ */
.faq-box {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.faq-item {
  margin-bottom: 22px;
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f172a;
}

.faq-item p {
  font-size: 14.5px;
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .pf-container {
    grid-template-columns: 1fr;
  }

  .pricing-box h2,
  .faq-box h2 {
    font-size: 26px;
  }
}

.final-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #e5e7eb;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: 18px;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.cta-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 16px;
}

.cta-points span {
  display: inline-block;
  color: #facc15;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-primary {
  background: #facc15;
  color: #020617;
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(250,204,21,0.35);
}

.cta-secondary {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid #334155;
  padding: 16px 26px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.05);
}

.cta-brand h4 {
  font-size: 18px;
  color: #facc15;
  margin-bottom: 6px;
}

.cta-brand p {
  font-size: 14px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }
}
