:root {
  --dark-navy: #0f172a;
  --deep-purple: #271247;
  --magenta: #d41472;
  --pink: #ec4899;
  --hot-pink: #f43f8c;
  --yellow: #fbbf24;
  --orange: #f97316;
  --green: #22c55e;
  --red: #ef4444;
  --light-bg: #f8fafc;
  --text-dark: #111827;
  --text-muted: #64748b;
}

html {
  scroll-behavior: smooth;
}

/* Anti-copy CSS */
.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

body {
  font-family: 'Be Vietnam Pro', 'Inter', 'Arial', sans-serif;
  color: #334155;
  line-height: 1.7;
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: white; }
.text-yellow { color: var(--yellow); }
.text-pink { color: var(--hot-pink); }
.font-bold { font-weight: bold; }

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--magenta), var(--hot-pink));
  color: white;
  box-shadow: 0 4px 15px rgba(212, 20, 114, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 20, 114, 0.6);
}

.section {
  padding: 120px 0;
}

/* Sticky Countdown */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--magenta);
  color: white;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.countdown-block {
  display: flex;
  gap: 5px;
  align-items: center;
}

.countdown-item {
  background: rgba(0,0,0,0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.btn-sticky {
  background: var(--yellow);
  color: var(--dark-navy);
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s;
}
.btn-sticky:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  position: relative;
  margin-top: 40px; /* offset for sticky bar */
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--magenta) 60%, var(--hot-pink) 100%);
  color: white;
  min-height: 620px;
  padding: 120px 20px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 25px 25px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.hero-headline {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
}

.headline-line1 { color: white; display: block; }
.headline-huge { 
  font-size: 8rem; 
  display: block; 
  color: white; 
  line-height: 1; 
  margin: 10px 0; 
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.headline-line3 { color: var(--yellow); display: block; }

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 auto 40px;
  max-width: 700px;
  font-weight: 500;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(to right, var(--hot-pink), var(--orange));
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  margin-bottom: 10px;
}
.btn-hero:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(236, 72, 153, 0.6);
}

.hero-price-sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 600;
  display: block;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.badge-pill {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Pain Points Section Updates */
.pain-points { background: var(--light-bg); padding: 80px 0; }
.container-sm { max-width: 860px; margin: 0 auto; }
.pain-heading { font-size: 2rem; color: var(--dark-navy); margin-bottom: 40px; }
.text-pink { color: var(--magenta); }

.quote-card {
  background: white;
  border-left: 5px solid var(--magenta);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 40px;
  text-align: left;
}
.quote-text { font-size: 1.2rem; font-style: italic; color: var(--text-dark); margin-bottom: 15px; font-weight: 500; }
.quote-author { font-size: 0.95rem; color: var(--text-muted); margin: 0; font-weight: 600; }

.paragraph-text { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 25px; line-height: 1.8; }

.highlight-question-box {
  background: #fdf2f8; /* very light pink */
  border: 2px dashed var(--pink);
  color: var(--magenta);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  border-radius: 24px;
  margin-bottom: 25px;
}

.subtext { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }

.pain-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.pain-card {
  background: white;
  padding: 20px 25px;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.02);
  text-align: left;
}

.warning-card {
  background: #fefce8; /* light yellow */
  border: 1px solid #fef08a;
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 40px;
  text-align: left;
}
.warning-title { color: var(--orange); font-size: 1.25rem; margin-bottom: 15px; }
.warning-list { list-style: none; padding: 0; margin: 0; }
.warning-list li { margin-bottom: 12px; font-size: 1.05rem; color: var(--text-dark); }
.warning-list li:last-child { margin-bottom: 0; }

.closing-section { margin-top: 50px; }
.closing-text { font-size: 1.3rem; margin-bottom: 5px; }

.closing-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}
.pill {
  background: #fdf2f8;
  color: var(--magenta);
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  border: 1px solid #fbcfe8;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease;
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Discovery Story Section Updates */
.discovery-story {
  background: white;
  padding: 100px 0;
}
.discovery-header {
  margin-bottom: 50px;
}
.discovery-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.discovery-heading {
  font-size: 2.2rem;
  color: var(--dark-navy);
  line-height: 1.3;
}
.discovery-card {
  background: #fdf2f8; /* light pink */
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.04);
}
.discovery-content {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.8;
  text-align: left;
}
.discovery-content p {
  margin-bottom: 20px;
}
.discovery-content p:last-child {
  margin-bottom: 0;
}
.discovery-content strong {
  color: var(--magenta);
}
.discovery-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: block;
  object-fit: cover;
  background-color: #cbd5e1;
  min-height: 300px;
}

/* Truth + Course Promise Section Updates */
.truth-section { background: white; padding: 100px 0; }
.truth-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.truth-card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  text-align: center;
  border-top: 4px solid var(--magenta);
}
.truth-badge {
  display: inline-block;
  background: var(--light-bg);
  color: var(--magenta);
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.truth-card p { font-size: 1.1rem; color: var(--text-dark); font-weight: 600; line-height: 1.5; margin: 0; }

.truth-subheading { font-size: 1.5rem; color: var(--text-muted); font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

.course-promise-box {
  background: linear-gradient(135deg, var(--deep-purple), var(--magenta));
  color: white;
  padding: 50px 30px;
  border-radius: 24px;
  max-width: 820px;
  margin: 0 auto 40px;
  box-shadow: 0 20px 40px rgba(212, 20, 114, 0.2);
}
.course-title { font-size: 2.8rem; margin-bottom: 10px; font-weight: 800; line-height: 1.2; text-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.course-subtitle { font-size: 1.5rem; color: var(--yellow); font-weight: 700; margin: 0; }

.benefit-list-container { max-width: 820px; margin: 0 auto 50px; text-align: left; }
.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 500;
  background: var(--light-bg);
  padding: 20px;
  border-radius: 16px;
}
.benefit-list li:last-child { margin-bottom: 0; }
.benefit-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }

.truth-cta-wrapper { text-align: center; }
.truth-cta-subtext { font-size: 1rem; color: var(--text-muted); font-weight: 500; margin-top: 10px; }

/* Core Skills Section */
.core-skills-section {
  position: relative;
  background: #0b1120;
  color: white;
  padding: 100px 0;
}
.core-skills-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--orange), var(--magenta));
}
.core-skills-header { margin-bottom: 60px; }
.core-skills-subheading { color: var(--magenta); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 15px; }
.core-skills-heading { font-size: 2.5rem; line-height: 1.3; margin-bottom: 20px; }
.core-skills-subtitle { font-size: 1.2rem; color: #cbd5e1; font-style: italic; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.skill-card {
  background: #1e293b; /* lighter navy */
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.skill-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.skill-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--pink);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}
.skill-title { font-size: 1.5rem; color: white; margin-bottom: 15px; position: relative; z-index: 1; }
.skill-desc { font-size: 1.1rem; color: #94a3b8; margin-bottom: 25px; line-height: 1.6; position: relative; z-index: 1; }

.skill-warning {
  background: rgba(253, 224, 71, 0.1); /* light yellow transparent */
  border-left: 4px solid var(--yellow);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #fef08a; /* light yellow text */
  position: relative;
  z-index: 1;
}

.core-skills-cta { text-align: center; }
.core-skills-cta-subtext { color: #94a3b8; margin-top: 15px; font-size: 1.05rem; }

/* Curriculum Section */
.curriculum-section {
  background: white;
  padding: 100px 0;
}
.curriculum-header { margin-bottom: 50px; }
.curriculum-badge {
  display: inline-block;
  background: #e0f2fe; /* light blue */
  color: #0284c7; /* dark blue */
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.curriculum-heading { font-size: 2.2rem; color: var(--dark-navy); line-height: 1.3; }

.curriculum-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--deep-purple), var(--magenta));
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(212, 20, 114, 0.2);
  overflow: hidden;
}
.curriculum-card-header {
  padding: 40px 40px 30px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.curriculum-title { font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 10px; }
.curriculum-meta { color: var(--yellow); font-size: 1.1rem; font-weight: 600; }

.curriculum-body { padding: 30px 40px 40px; }
.curriculum-part {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}
.curriculum-part:last-child { margin-bottom: 0; }
.part-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 15px;
}
.part-label-wrapper { display: flex; align-items: center; gap: 15px; }
.part-label {
  background: var(--yellow);
  color: var(--dark-navy);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
}
.part-name { font-size: 1.25rem; font-weight: 700; color: white; }
.part-lessons { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 600; }

.lesson-list { list-style: none; padding: 0; margin: 0; }
.lesson-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.lesson-list li:last-child { margin-bottom: 0; }
.lesson-list li span { color: var(--yellow); font-weight: bold; font-size: 1.2rem; line-height: 1.2; }

/* Bonus Section */
.bonus-section {
  background: white;
  padding: 100px 0;
}
.bonus-header { margin-bottom: 50px; }
.bonus-heading { font-size: 2.5rem; color: var(--magenta); margin-bottom: 10px; }
.bonus-subtitle { font-size: 1.2rem; color: var(--text-dark); font-weight: 600; }

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 860px;
  margin: 0 auto 60px;
}
.bonus-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.bonus-card-header {
  background: #fefce8; /* light yellow */
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fef08a;
}
.bonus-title-area { display: flex; align-items: center; gap: 15px; }
.bonus-label {
  background: var(--dark-navy);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
}
.bonus-name { font-size: 1.3rem; color: var(--text-dark); margin: 0; font-weight: 700; }
.bonus-price-badge {
  background: var(--orange);
  color: white;
  font-weight: 800;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 1rem;
}

.bonus-card-body { padding: 30px; }
.bonus-item { margin-bottom: 15px; display: flex; gap: 10px; font-size: 1.05rem; }
.bonus-item:last-child { margin-bottom: 0; }
.bonus-tag { font-weight: 700; flex-shrink: 0; }
.tag-problem { color: #e11d48; /* red/pink */ }
.tag-solution { color: #059669; /* green */ }
.tag-importance { color: #7c3aed; /* purple */ }
.bonus-text { color: var(--text-dark); font-weight: 500; }

.total-price-box {
  background: linear-gradient(135deg, var(--deep-purple), var(--magenta));
  max-width: 860px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(212, 20, 114, 0.15);
}
.price-box-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; opacity: 0.9; }
.price-strikethrough {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  text-decoration: line-through;
  margin-bottom: 5px;
}
.price-large {
  font-size: 4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.price-urgency { font-size: 1.1rem; margin-bottom: 30px; font-style: italic; }

.btn-full { width: 100%; display: block; box-sizing: border-box; }

/* Transformation Section */
.transformation-section {
  background: var(--light-bg);
  padding: 100px 0;
}
.trans-header { margin-bottom: 50px; }
.trans-heading { font-size: 2.5rem; color: var(--dark-navy); margin-bottom: 15px; }
.trans-subtitle { font-size: 1.25rem; color: var(--text-muted); font-weight: 500; }

.trans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.trans-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.trans-before { border-top: 5px solid #f43f5e; /* red/pink */ }
.trans-after { border-top: 5px solid #10b981; /* emerald green */ }

.trans-card-title { font-size: 1.5rem; margin-bottom: 25px; font-weight: 800; }
.trans-before .trans-card-title { color: #e11d48; }
.trans-after .trans-card-title { color: #059669; }

.trans-list { list-style: none; padding: 0; margin: 0; }
.trans-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.trans-list li:last-child { margin-bottom: 0; }
.trans-icon { flex-shrink: 0; font-size: 1.2rem; }
.icon-x { opacity: 0.8; }

.trans-cta-subtext { color: var(--text-muted); font-weight: 500; margin-top: 15px; font-size: 1.05rem; }

/* Instructor Section */
.instructor-section {
  background: white;
  padding: 100px 0;
}
.inst-header { margin-bottom: 50px; }
.inst-subheading { color: var(--magenta); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; font-weight: 700; }
.inst-heading { font-size: 2.5rem; color: var(--dark-navy); line-height: 1.3; }

.inst-card {
  background: #fdf2f8; /* very light pink */
  border-radius: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.inst-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.inst-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.inst-img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.inst-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--dark-navy);
  color: var(--yellow);
  padding: 10px 20px;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.inst-name { font-size: 2.5rem; color: var(--magenta); margin-bottom: 5px; font-weight: 900; }
.inst-title { font-size: 1.25rem; color: var(--text-dark); font-weight: 600; margin-bottom: 30px; }

.inst-credentials { list-style: none; padding: 0; margin: 0 0 40px 0; }
.inst-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.5;
}
.inst-credentials li span { font-size: 1.2rem; flex-shrink: 0; }

.contact-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}
.contact-box {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
}
.contact-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 5px; text-transform: uppercase; }
.contact-value { font-size: 1rem; color: var(--dark-navy); font-weight: 700; }

.inst-quote {
  position: relative;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--pink);
}
.quote-author { font-weight: 700; color: var(--text-dark); margin-top: 15px; font-style: normal; }

.inst-philosophy {
  background: linear-gradient(135deg, var(--magenta), var(--deep-purple));
  color: white;
  padding: 25px 30px;
  border-radius: 16px;
  text-align: center;
}
.phil-label { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; opacity: 0.8; font-weight: 600; }
.phil-text { font-size: 1.4rem; font-weight: 800; line-height: 1.4; color: var(--yellow); }

/* Proof Gallery */
.gallery-card {
  background: #fdf2f8; /* very light pink */
  border-radius: 32px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}
.gallery-main {
  margin-bottom: 20px;
}
.gallery-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  display: block;
}

/* Roadmap Section */
.roadmap-section {
  position: relative;
  background: var(--dark-navy);
  color: white;
  padding: 100px 0;
}
.roadmap-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--orange), var(--magenta));
}
.roadmap-header { margin-bottom: 60px; }
.roadmap-subheading { color: var(--magenta); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; font-weight: 700; }
.roadmap-heading { font-size: 2.5rem; line-height: 1.3; color: white; }

.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 50px;
}
.roadmap-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}
.roadmap-card-header {
  background: linear-gradient(135deg, var(--deep-purple), var(--magenta));
  padding: 25px 30px;
}
.roadmap-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark-navy);
  font-weight: 800;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.roadmap-title { font-size: 1.6rem; color: white; margin: 0; font-weight: 800; }

.roadmap-card-body {
  background: #1e293b; /* Lighter navy */
  padding: 30px;
}
.roadmap-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 25px;
  font-style: italic;
  line-height: 1.5;
}
.roadmap-items { list-style: none; padding: 0; margin: 0; }
.roadmap-items li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: white;
  line-height: 1.5;
}
.roadmap-items li:last-child { margin-bottom: 0; }
.roadmap-items li span { flex-shrink: 0; font-size: 1.3rem; }

.roadmap-cta { margin-top: 20px; }

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--deep-purple), var(--magenta));
  color: white;
  padding: 100px 0;
}
.cta-header { margin-bottom: 50px; }
.cta-heading { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.cta-subtitle { font-size: 1.25rem; max-width: 800px; margin: 0 auto; line-height: 1.6; opacity: 0.9; }

.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  max-width: 1000px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
  color: var(--text-dark);
}
.form-card-left {
  background: #fdf2f8; /* very light pink */
  padding: 50px 40px;
}
.form-countdown-area { text-align: center; margin-bottom: 30px; }
.form-countdown-area p { font-weight: 700; color: var(--magenta); margin-bottom: 10px; font-size: 1.1rem; }
.form-countdown { font-size: 1.2rem; font-weight: 800; color: var(--dark-navy); background: white; display: inline-block; padding: 10px 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.form-price-box { text-align: center; margin-bottom: 30px; }
.form-price { font-size: 3rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 5px; }
.form-savings { background: var(--yellow); color: var(--dark-navy); display: inline-block; padding: 5px 15px; font-weight: 800; border-radius: 50px; font-size: 0.9rem; }

.form-benefits { margin-top: 20px; }
.benefits-title { font-weight: 700; margin-bottom: 15px; font-size: 1.1rem; }
.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefits-list li { margin-bottom: 12px; font-weight: 600; color: var(--text-dark); display: flex; gap: 10px; }
.benefits-list li:last-child { margin-bottom: 0; }

.form-card-right {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group { margin-bottom: 20px; position: relative; }
.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1.1rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.form-input:focus { outline: none; border-color: var(--magenta); }
.error-message { color: var(--red); font-size: 0.85rem; margin-top: 5px; font-weight: 600; display: none; }
.input-error { border-color: var(--red); }

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(236, 72, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

.btn-submit {
  width: 100%;
  background: linear-gradient(to right, var(--hot-pink), var(--orange));
  color: white;
  border: none;
  padding: 20px;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(212, 20, 114, 0.3);
  animation: pulse-glow 2s infinite;
}
.btn-submit:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 30px rgba(212, 20, 114, 0.5); animation: none; }

.trust-line {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.trust-card {
  background: rgba(255,255,255,0.1);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.trust-icon { font-size: 2.5rem; margin-bottom: 15px; }
.trust-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--yellow); }
.trust-desc { font-size: 0.95rem; line-height: 1.5; margin: 0; opacity: 0.9; }

/* Footer */
.footer {
  background: white;
  color: var(--text-muted);
  text-align: center;
  padding: 80px 0 40px;
  border-top: 1px solid #e2e8f0;
}
.footer-quote {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 40px;
  line-height: 1.5;
}
.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.8;
}
.footer-disclaimer p { margin-bottom: 15px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.95rem;
  font-weight: 600;
}
.footer-links a { color: var(--magenta); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-sep { color: #cbd5e1; }
.footer-copy { color: var(--text-dark); }

/* Tablet Responsive */
@media (max-width: 1199px) {
  .hero-headline { font-size: 2.2rem; }
  .headline-huge { font-size: 7.5rem; }
  .form-card-left, .form-card-right { padding: 40px 30px; }
}

@media (max-width: 991px) {
  .discovery-card { grid-template-columns: 1fr; gap: 30px; }
  .trans-grid { grid-template-columns: 1fr; gap: 30px; }
  .inst-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-card { grid-template-columns: 1fr; }
  .truth-cards { grid-template-columns: 1fr; }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .sticky-bar {
    flex-wrap: wrap;
    font-size: 0.85rem;
    gap: 8px;
    padding: 10px;
  }
  .sticky-bar > span:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 2px;
  }
  .hero-section { min-height: auto; padding-top: 80px; padding-bottom: 60px; }
  .hero-headline { font-size: 1.8rem; }
  .headline-huge { font-size: 6rem; margin: 0; }
  .btn-hero { width: 100%; padding: 15px 20px; font-size: 1.2rem; }
  .hero-badges { gap: 10px; }
  .badge-pill { font-size: 0.85rem; padding: 6px 12px; }
  .section { padding: 60px 0; }
  .registration-form { padding: 25px; }
  
  /* Pain Points Responsive */
  .pain-heading { font-size: 1.6rem; }
  .quote-text { font-size: 1.1rem; }
  .highlight-question-box { font-size: 1.2rem; }
  .pain-card { font-size: 1rem; padding: 15px; }
  .warning-list li { font-size: 0.95rem; }
  .pill { font-size: 0.95rem; padding: 10px 20px; }
  
  /* Discovery Story Responsive */
  .discovery-story { padding: 56px 0; }
  .discovery-heading { font-size: 1.8rem; }
  .discovery-card { grid-template-columns: 1fr; padding: 30px; gap: 30px; }
  .discovery-icon { font-size: 2.5rem; }
  
  /* Truth Section Responsive */
  .truth-cards { grid-template-columns: 1fr; gap: 20px; }
  .course-promise-box { padding: 30px 20px; }
  .course-title { font-size: 1.8rem; }
  .course-subtitle { font-size: 1.2rem; }
  .benefit-list li { font-size: 1.05rem; padding: 15px; }
  
  /* Core Skills Responsive */
  .core-skills-heading { font-size: 1.8rem; }
  .skills-grid { grid-template-columns: 1fr; gap: 20px; }
  .skill-card { padding: 25px; }
  .skill-number { font-size: 4rem; top: 10px; right: 15px; }
  
  /* Curriculum Responsive */
  .curriculum-card-header { padding: 30px 20px 20px; }
  .curriculum-title { font-size: 1.4rem; }
  .curriculum-body { padding: 20px; }
  .curriculum-part { padding: 20px; }
  .part-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .part-label-wrapper { flex-wrap: wrap; }
  
  /* Bonus Responsive */
  .bonus-heading { font-size: 1.8rem; }
  .bonus-card-header { flex-direction: column; align-items: flex-start; gap: 15px; padding: 20px; }
  .bonus-title-area { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bonus-card-body { padding: 20px; }
  .bonus-item { flex-direction: column; gap: 5px; }
  .total-price-box { padding: 30px 20px; }
  .price-large { font-size: 2.5rem; }
  
  /* Transformation Responsive */
  .trans-heading { font-size: 1.8rem; }
  .trans-grid { grid-template-columns: 1fr; gap: 20px; }
  .trans-card { padding: 30px 20px; }
  
  /* Instructor Responsive */
  .inst-heading { font-size: 1.8rem; }
  .inst-card { padding: 30px 20px; border-radius: 20px; }
  .inst-grid { grid-template-columns: 1fr; gap: 30px; }
  .inst-name { font-size: 2rem; }
  .contact-boxes { grid-template-columns: 1fr; }
  .inst-badge { right: 10px; }
  
  /* Gallery Responsive */
  .gallery-card { padding: 30px 20px; border-radius: 20px; }
  .gallery-sub { grid-template-columns: 1fr; }
  
  /* Roadmap Responsive */
  .roadmap-heading { font-size: 1.8rem; }
  .roadmap-card-header { padding: 20px; }
  .roadmap-card-body { padding: 25px 20px; }
  
  /* Final CTA Responsive */
  .cta-heading { font-size: 2rem; }
  .form-card { grid-template-columns: 1fr; border-radius: 20px; margin: 0 15px 40px; }
  .form-card-left { padding: 30px 20px; }
  .form-card-right { padding: 30px 20px; }
  .trust-cards-container { grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
  .trust-line { flex-direction: column; align-items: center; gap: 10px; }
  
  /* Footer Responsive */
  .footer-quote { font-size: 1.3rem; }
  .footer-links { flex-direction: column; gap: 10px; }
  .footer-sep { display: none; }
}
