:root {
  --bg-main: #0A0F1A; /* Very dark navy / charcoal */
  --bg-section: #0F172A; /* Slate 900 */
  --bg-card: #1E293B; /* Slate 800 */
  --bg-card-hover: #334155; /* Slate 700 */
  
  --gold-primary: #EAB308; /* Yellow 500 */
  --gold-light: #FDE047; /* Yellow 300 */
  --gold-dark: #A16207; /* Yellow 700 */
  --gold-gradient: linear-gradient(135deg, #FDE047, #EAB308, #A16207);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(161, 98, 7, 0.05));
  
  --text-main: #F8FAFC; /* Slate 50 */
  --text-muted: #94A3B8; /* Slate 400 */
  --text-dark: #0F172A; /* For text on gold */
  
  --accent-blue: #3B82F6;
  --accent-red: #EF4444;
  --accent-green: #10B981;
  
  --border-light: rgba(248, 250, 252, 0.08);
  --border-gold: rgba(234, 179, 8, 0.3);
  
  --shadow-gold: 0 10px 30px rgba(234, 179, 8, 0.15);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}



body {
  font-family: 'Be Vietnam Pro', 'Inter', 'Arial', sans-serif;
  color: var(--text-main);
  line-height: 1.7;
  background-color: var(--bg-main);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  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: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-main); }
.text-yellow { color: var(--gold-primary); }
.text-pink { color: var(--gold-light); } /* Repurposed to gold-light for existing classes */
.text-gold { color: var(--gold-primary); }
.font-bold { font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px; /* Corporate/Premium feel vs fully rounded */
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(234, 179, 8, 0.3);
  filter: brightness(1.1);
}

.section {
  padding: 120px 0;
}

/* Sticky Countdown */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-section);
  color: var(--text-main);
  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 4px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border-light);
}

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

.countdown-item {
  background: rgba(255,255,255,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold-light);
}

.btn-sticky {
  background: var(--gold-gradient);
  color: var(--text-dark);
  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;
  background: var(--bg-main);
  background-image: radial-gradient(circle at 60% 0%, #1e293b 0%, var(--bg-main) 70%);
  color: var(--text-main);
  padding: 100px 0 80px;
  overflow: hidden;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-image-col {
  position: relative;
  z-index: 1;
}


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

.headline-tag {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 25px;
  font-weight: 700;
  border: 1px solid var(--border-gold);
  padding: 6px 20px;
  border-radius: 20px;
  background: rgba(234, 179, 8, 0.08);
  box-shadow: 0 2px 10px rgba(234, 179, 8, 0.05);
}
.headline-title {
  font-size: 3.0rem;
  display: block;
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 800;
  margin: 10px 0 25px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.text-gradient-gold {
  color: transparent;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
}
.headline-line1 { color: var(--text-muted); display: block; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.headline-huge { 
  font-size: 7.5rem; 
  display: block; 
  color: transparent; 
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1; 
  margin: 10px 0; 
  text-shadow: 0 10px 30px rgba(234, 179, 8, 0.2);
}
.headline-line3 { color: var(--text-main); display: block; }

/* Highlight Row style */
.highlight-row {
  background: var(--gold-gradient-subtle);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 20px 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.highlight-row-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 0 30px;
  max-width: 520px;
  font-weight: 500;
  color: var(--text-muted);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 22px 48px;
  border-radius: 8px; /* Corporate/premium */
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-hero:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(234, 179, 8, 0.4);
  filter: brightness(1.1);
}

.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: var(--bg-card);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Pain Points Section Updates */
.pain-points { background: var(--bg-main); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.container-sm { max-width: 860px; margin: 0 auto; }
.pain-heading { font-size: 2.2rem; color: var(--text-main); margin-bottom: 50px; }
.text-pink { color: var(--gold-light); }

.quote-card {
  background: var(--bg-card);
  border-left: 4px solid var(--gold-primary);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-dark);
  margin-bottom: 50px;
  text-align: left;
  border: 1px solid var(--border-light);
}
.quote-text { font-size: 1.25rem; font-style: italic; color: var(--text-main); margin-bottom: 20px; font-weight: 400; line-height: 1.8; opacity: 0.9; }
.quote-author { font-size: 1rem; color: var(--gold-primary); margin: 0; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

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

.highlight-question-box {
  background: var(--bg-section);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 35px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.pain-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 50px; }
.pain-card {
  background: var(--bg-card);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--border-light);
  text-align: left;
  transition: transform 0.2s;
}
.pain-card:hover { transform: translateX(5px); border-color: rgba(255,255,255,0.15); }

.warning-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  text-align: left;
}
.warning-title { color: var(--accent-red); font-size: 1.35rem; margin-bottom: 20px; font-weight: 700; }
.warning-list { list-style: none; padding: 0; margin: 0; }
.warning-list li { margin-bottom: 15px; font-size: 1.1rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
.warning-list li:last-child { margin-bottom: 0; }

.closing-section { margin-top: 60px; }
.closing-text { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-main); }
.closing-text.text-pink { color: var(--gold-light); }

.closing-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}
.pill {
  background: var(--bg-card);
  color: var(--gold-primary);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  border: 1px solid var(--border-gold);
}

.card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
}

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

/* Discovery Story Section Updates */
.discovery-story {
  background: var(--bg-section);
  padding: 120px 0;
  border-bottom: 1px solid var(--border-light);
}
.discovery-header { margin-bottom: 50px; }
.discovery-icon { font-size: 3.5rem; margin-bottom: 15px; color: var(--gold-primary); }
.discovery-heading { font-size: 2.5rem; color: var(--text-main); line-height: 1.3; }
.discovery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px;
  box-shadow: var(--shadow-dark);
}
.discovery-content { font-size: 1.15rem; color: var(--text-muted); 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(--text-main); font-weight: 700; }
.discovery-image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); display: block; object-fit: cover; background-color: var(--bg-section); min-height: 300px; border: 1px solid var(--border-light); }

/* Truth + Course Promise Section Updates */
.truth-section { background: var(--bg-main); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.truth-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px; }
.truth-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow-dark);
  text-align: center;
  border-top: 4px solid var(--gold-primary);
  border-bottom: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  transition: transform 0.3s;
}
.truth-card:hover { transform: translateY(-5px); border-color: var(--border-gold); }
.truth-badge {
  display: inline-block;
  background: var(--bg-section);
  color: var(--gold-primary);
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  border: 1px solid var(--border-gold);
}
.truth-card p { font-size: 1.1rem; color: var(--text-main); font-weight: 500; line-height: 1.6; margin: 0; }

.truth-subheading { font-size: 1.2rem; color: var(--gold-primary); font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }

.course-promise-box {
  background: var(--bg-section);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  padding: 60px 40px;
  border-radius: 16px;
  max-width: 860px;
  margin: 0 auto 50px;
  box-shadow: var(--shadow-gold);
}
.course-title { font-size: 3rem; margin-bottom: 15px; font-weight: 800; line-height: 1.2; background: var(--gold-gradient); -webkit-background-clip: text; color: transparent; }
.course-subtitle { font-size: 1.4rem; color: var(--text-muted); font-weight: 500; margin: 0; letter-spacing: 1px; }

.benefit-list-container { max-width: 860px; margin: 0 auto 60px; 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-main);
  font-weight: 500;
  background: var(--bg-card);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.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: 1.05rem; color: var(--text-muted); font-weight: 500; margin-top: 15px; }

/* Core Skills Section */
.core-skills-section { background: var(--bg-main); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.core-skills-divider { display: none; } /* Remove the colorful divider */
.core-skills-header { margin-bottom: 60px; }
.core-skills-subheading { color: var(--gold-primary); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 15px; text-transform: uppercase; }
.core-skills-heading { font-size: 2.5rem; line-height: 1.3; margin-bottom: 20px; color: var(--text-main); }
.core-skills-subtitle { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }

.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto 60px; }
.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: var(--shadow-dark);
}
.skill-card:hover { transform: translateY(-5px); border-color: var(--border-gold); }
.skill-number { font-size: 5rem; font-weight: 800; color: var(--gold-primary); opacity: 0.1; position: absolute; top: 10px; right: 20px; line-height: 1; }
.skill-title { font-size: 1.5rem; color: var(--text-main); margin-bottom: 15px; position: relative; z-index: 1; }
.skill-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; position: relative; z-index: 1; }

.skill-warning {
  background: rgba(234, 179, 8, 0.1);
  border-left: 4px solid var(--gold-primary);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

.core-skills-cta { text-align: center; }
.core-skills-cta-subtext { color: var(--text-muted); margin-top: 15px; font-size: 1.05rem; }

/* Curriculum Section */
.curriculum-section { background: var(--bg-section); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.curriculum-header { margin-bottom: 50px; }
.curriculum-badge {
  display: inline-block;
  background: var(--bg-main);
  color: var(--gold-primary);
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid var(--border-gold);
}
.curriculum-heading { font-size: 2.5rem; color: var(--text-main); line-height: 1.3; }

.curriculum-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.curriculum-card-header { padding: 40px 40px 30px; text-align: center; border-bottom: 1px solid var(--border-light); background: var(--bg-section); }
.curriculum-title { font-size: 1.8rem; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.curriculum-meta { color: var(--gold-primary); font-size: 1.1rem; font-weight: 600; }

.curriculum-body { padding: 30px 40px 40px; }
.curriculum-part {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid var(--border-light);
}
.curriculum-part:last-child { margin-bottom: 0; }
.part-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--border-light); padding-bottom: 15px; }
.part-label-wrapper { display: flex; align-items: center; gap: 15px; }
.part-label { background: var(--gold-gradient); color: var(--text-dark); font-weight: 800; padding: 6px 12px; border-radius: 6px; font-size: 0.9rem; }
.part-name { font-size: 1.35rem; font-weight: 700; color: var(--text-main); }
.part-lessons { font-size: 1.05rem; color: var(--text-muted); font-weight: 600; }

.lesson-list { list-style: none; padding: 0; margin: 0; }
.lesson-list li { display: flex; align-items: flex-start; gap: 15px; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 15px; line-height: 1.5; }
.lesson-list li:last-child { margin-bottom: 0; }
.lesson-list li span { color: var(--gold-primary); font-weight: bold; font-size: 1.2rem; line-height: 1.2; }

/* Bonus Section */
.bonus-section { background: var(--bg-main); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.bonus-header { margin-bottom: 60px; }
.bonus-heading { font-size: 2.5rem; color: var(--gold-primary); margin-bottom: 15px; }
.bonus-subtitle { font-size: 1.25rem; color: var(--text-muted); font-weight: 500; }

.bonus-list { display: flex; flex-direction: column; gap: 30px; max-width: 860px; margin: 0 auto 60px; }
.bonus-card { background: var(--bg-card); border-radius: 16px; box-shadow: var(--shadow-dark); border: 1px solid var(--border-light); overflow: hidden; }
.bonus-card-header { background: var(--bg-section); padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-light); }
.bonus-title-area { display: flex; align-items: center; gap: 15px; }
.bonus-label { background: var(--gold-gradient); color: var(--text-dark); font-size: 0.85rem; font-weight: 800; padding: 5px 12px; border-radius: 6px; text-transform: uppercase; }
.bonus-name { font-size: 1.35rem; color: var(--text-main); margin: 0; font-weight: 700; }
.bonus-price-badge { background: transparent; border: 1px solid var(--gold-primary); color: var(--gold-primary); font-weight: 800; padding: 6px 15px; border-radius: 8px; font-size: 1rem; }

.bonus-card-body { padding: 30px; }
.bonus-item { margin-bottom: 15px; display: flex; gap: 10px; font-size: 1.1rem; }
.bonus-item:last-child { margin-bottom: 0; }
.bonus-tag { font-weight: 700; flex-shrink: 0; }
.tag-problem { color: var(--accent-red); }
.tag-solution { color: var(--accent-green); }
.tag-importance { color: var(--accent-blue); }
.bonus-text { color: var(--text-muted); font-weight: 500; }

.total-price-box {
  background: var(--bg-section);
  border: 1px solid var(--border-gold);
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  color: var(--text-main);
  box-shadow: var(--shadow-gold);
}
.price-box-title { font-size: 1.4rem; font-weight: 600; margin-bottom: 15px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.price-strikethrough { font-size: 1.5rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 5px; }
.price-large { font-size: 4rem; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; color: transparent; line-height: 1; margin-bottom: 20px; }
.price-urgency { font-size: 1.15rem; margin-bottom: 35px; color: var(--text-main); font-weight: 500; }

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

/* Transformation Section */
.transformation-section { background: var(--bg-main); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.trans-header { margin-bottom: 60px; }
.trans-heading { font-size: 2.5rem; color: var(--text-main); 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: 40px; max-width: 900px; margin: 0 auto 50px; }
.trans-card { background: var(--bg-card); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-dark); border: 1px solid var(--border-light); }
.trans-before { border-top: 4px solid var(--accent-red); }
.trans-after { border-top: 4px solid var(--accent-green); }

.trans-card-title { font-size: 1.5rem; margin-bottom: 25px; font-weight: 800; }
.trans-before .trans-card-title { color: var(--accent-red); }
.trans-after .trans-card-title { color: var(--accent-green); }

.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-muted); line-height: 1.6; }
.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: 20px; font-size: 1.05rem; }

/* Instructor Section */
.instructor-section { background: var(--bg-section); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.inst-header { margin-bottom: 60px; }
.inst-subheading { color: var(--gold-primary); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; }
.inst-heading { font-size: 2.5rem; color: var(--text-main); line-height: 1.3; }

.inst-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 24px; max-width: 1100px; margin: 0 auto; padding: 50px; box-shadow: var(--shadow-dark); }
.inst-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }

.inst-image-wrapper { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.5); border: 1px solid var(--border-light); }
.inst-img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/5; filter: contrast(1.1) brightness(0.9); }
.inst-badge { position: absolute; bottom: 20px; right: -10px; background: var(--gold-gradient); color: var(--text-dark); padding: 10px 20px; font-weight: 800; font-size: 1.1rem; border-radius: 8px; box-shadow: var(--shadow-gold); }

.inst-name { font-size: 2.8rem; color: var(--gold-primary); margin-bottom: 5px; font-weight: 900; }
.inst-title { font-size: 1.3rem; color: var(--text-main); 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: 15px; font-size: 1.15rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.inst-credentials li span { font-size: 1.2rem; flex-shrink: 0; color: var(--gold-primary); }

.contact-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; }
.contact-box { background: var(--bg-section); padding: 25px; border-radius: 12px; border: 1px solid var(--border-light); 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: 1.1rem; color: var(--text-main); font-weight: 700; }

.inst-quote { position: relative; font-style: italic; font-size: 1.2rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 40px; padding-left: 25px; border-left: 4px solid var(--gold-primary); }
.quote-author { font-weight: 700; color: var(--gold-primary); margin-top: 20px; font-style: normal; display: block; }

.inst-philosophy { background: var(--bg-section); color: var(--text-main); border: 1px solid var(--border-gold); padding: 35px; border-radius: 12px; text-align: center; }
.phil-label { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; color: var(--text-muted); font-weight: 600; }
.phil-text { font-size: 1.5rem; font-weight: 800; line-height: 1.5; background: var(--gold-gradient); -webkit-background-clip: text; color: transparent; }

/* Proof Gallery */
.gallery-card { background: var(--bg-card); border-radius: 24px; max-width: 1100px; margin: 40px auto 0; padding: 50px; box-shadow: var(--shadow-dark); border: 1px solid var(--border-light); }
.gallery-main { margin-bottom: 30px; }
.gallery-sub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); display: block; border: 1px solid var(--border-light); }

/* Roadmap Section */
.roadmap-section { background: var(--bg-main); color: var(--text-main); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.roadmap-divider { display: none; }
.roadmap-header { margin-bottom: 60px; }
.roadmap-subheading { color: var(--gold-primary); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; }
.roadmap-heading { font-size: 2.5rem; line-height: 1.3; color: var(--text-main); }

.roadmap-list { display: flex; flex-direction: column; gap: 40px; max-width: 800px; margin: 0 auto 50px; }
.roadmap-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-dark); border: 1px solid var(--border-light); background: var(--bg-card); }
.roadmap-card-header { background: var(--bg-section); padding: 30px; border-bottom: 1px solid var(--border-light); }
.roadmap-badge { display: inline-block; background: var(--gold-gradient); color: var(--text-dark); font-weight: 800; padding: 8px 16px; border-radius: 6px; font-size: 0.95rem; margin-bottom: 15px; }
.roadmap-title { font-size: 1.6rem; color: var(--text-main); margin: 0; font-weight: 800; }

.roadmap-card-body { padding: 40px 30px; }
.roadmap-desc { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; font-style: italic; line-height: 1.6; }
.roadmap-items { list-style: none; padding: 0; margin: 0; }
.roadmap-items li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; color: var(--text-main); 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: var(--bg-section); color: var(--text-main); padding: 120px 0; border-bottom: 1px solid var(--border-light); }
.cta-header { margin-bottom: 60px; }
.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; color: var(--text-muted); }

.final-cta-image-wrapper {
  margin-top: 40px;
  margin-bottom: 50px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-dark);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.final-cta-image-wrapper:hover {
  transform: scale(1.005);
}

.final-cta-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  max-width: 1040px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  color: var(--text-main);
}
.form-card-left { background: var(--bg-main); padding: 50px; border-right: 1px solid var(--border-light); }
.form-countdown-area { text-align: center; margin-bottom: 30px; }
.form-countdown-area p { font-weight: 700; color: var(--text-muted); margin-bottom: 15px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.form-countdown { font-size: 1.3rem; font-weight: 800; color: var(--gold-primary); background: var(--bg-section); display: inline-block; padding: 12px 25px; border-radius: 8px; border: 1px solid var(--border-gold); }

.form-price-box { text-align: center; margin-bottom: 40px; }
.form-price { font-size: 3.5rem; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; color: transparent; line-height: 1; margin-bottom: 15px; }
.form-savings { background: var(--bg-section); color: var(--gold-primary); border: 1px solid var(--border-gold); display: inline-block; padding: 6px 18px; font-weight: 800; border-radius: 6px; font-size: 0.95rem; }

.form-benefits { margin-top: 30px; }
.benefits-title { font-weight: 700; margin-bottom: 20px; font-size: 1.15rem; color: var(--text-main); }
.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefits-list li { margin-bottom: 15px; font-weight: 500; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.benefits-list li:last-child { margin-bottom: 0; }

.form-card-right { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.form-group { margin-bottom: 25px; position: relative; }
.form-input { width: 100%; padding: 18px 20px; border: 1px solid var(--border-light); border-radius: 8px; font-family: inherit; font-size: 1.1rem; transition: border-color 0.3s; box-sizing: border-box; background: var(--bg-section); color: var(--text-main); }
.form-input:focus { outline: none; border-color: var(--gold-primary); box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.2); }
.error-message { color: var(--accent-red); font-size: 0.85rem; margin-top: 8px; font-weight: 600; display: none; }
.input-error { border-color: var(--accent-red); }

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(234, 179, 8, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}

.btn-submit { width: 100%; background: var(--gold-gradient); color: var(--text-dark); border: none; padding: 22px; border-radius: 8px; font-size: 1.3rem; font-weight: 800; cursor: pointer; transition: all 0.3s; margin-top: 15px; box-shadow: var(--shadow-gold); animation: pulse-glow 2s infinite; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit:hover { transform: translateY(-5px); filter: brightness(1.1); animation: none; }

.trust-line { display: flex; justify-content: space-between; margin-top: 25px; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.trust-cards-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1040px; margin: 0 auto; }
.trust-card { background: var(--bg-card); padding: 35px 25px; border-radius: 12px; text-align: center; border: 1px solid var(--border-light); }
.trust-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--gold-primary); }
.trust-title { font-size: 1.25rem; margin-bottom: 15px; color: var(--text-main); font-weight: 700; }
.trust-desc { font-size: 1rem; line-height: 1.6; margin: 0; color: var(--text-muted); }

/* Testimonial Section */
.testimonial-section { background: var(--bg-section); padding: 120px 0; position: relative; overflow: hidden; border-bottom: 1px solid var(--border-light); }
.testi-bg-shape { display: none; }
.relative { position: relative; z-index: 1; }

.testimonial-header { margin-bottom: 60px; }
.testimonial-label { display: inline-block; background: var(--gold-gradient); color: var(--text-dark); font-size: 0.85rem; font-weight: 800; letter-spacing: 2px; padding: 7px 22px; border-radius: 6px; margin-bottom: 20px; text-transform: uppercase; }
.testimonial-heading { font-size: 2.8rem; color: var(--text-main); line-height: 1.2; margin-bottom: 15px; }
.testimonial-subtext { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 30px; line-height: 1.6; }
.testimonial-trust-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-card); padding: 8px 18px; border-radius: 6px; font-size: 0.95rem; font-weight: 600; color: var(--text-main); border: 1px solid var(--border-light); }
.chip-icon { font-size: 1.1rem; color: var(--gold-primary); }

.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1080px; margin: 0 auto; }
.testi-card { background: var(--bg-card); border-radius: 16px; padding: 35px; box-shadow: var(--shadow-dark); border: 1px solid var(--border-light); display: flex; flex-direction: column; transition: transform 0.3s; }
.testi-card:hover { transform: translateY(-5px); border-color: var(--border-gold); }
.testi-card--featured { border: 1px solid var(--gold-primary); box-shadow: var(--shadow-gold); }

.testi-card-quote { font-family: Georgia, serif; font-size: 4.5rem; color: var(--gold-primary); opacity: 0.1; position: absolute; top: 16px; right: 24px; line-height: 1; pointer-events: none; }
.testi-card--featured .testi-card-quote { opacity: 0.2; }

.testi-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; position: relative; z-index: 1; }
.testi-avatar { width: 50px; height: 50px; background: var(--gold-gradient); color: var(--text-dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; }
.testi-user { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.testi-name { font-size: 1.15rem; font-weight: 800; color: var(--text-main); line-height: 1.3; }
.testi-desc { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.testi-badge { font-size: 0.75rem; font-weight: 800; padding: 5px 10px; border-radius: 4px; text-transform: uppercase; margin-top: 4px; display: inline-block; }

.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-highlight { background: rgba(234, 179, 8, 0.1); color: var(--gold-primary); border: 1px solid var(--border-gold); }
.badge-neutral { background: var(--bg-section); color: var(--text-muted); border: 1px solid var(--border-light); }
.badge-primary { background: rgba(59, 130, 246, 0.1); color: var(--accent-blue); border: 1px solid rgba(59, 130, 246, 0.2); }

.testi-stars { color: var(--gold-primary); font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 2px; }
.testi-content { font-size: 1.05rem; color: var(--text-main); line-height: 1.7; margin: 0; flex: 1; }
.testi-card--featured .testi-content { font-size: 1.1rem; }

.testi-result { margin-top: 25px; font-size: 0.95rem; font-weight: 700; color: var(--text-main); background: var(--bg-section); padding: 12px 16px; border-radius: 8px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; border: 1px solid var(--border-light); }
.testi-card--featured .testi-result { background: rgba(234, 179, 8, 0.05); color: var(--gold-primary); border-color: var(--border-gold); }
.result-icon { font-size: 1.1rem; color: var(--gold-primary); }

/* Footer */
.footer { background: var(--bg-main); color: var(--text-muted); text-align: center; padding: 80px 0 40px; border-top: 1px solid var(--border-light); }
.footer-quote { font-size: 1.5rem; font-style: italic; font-weight: 700; color: var(--text-main); 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-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(--gold-primary); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; color: var(--gold-light); }
.footer-sep { color: var(--border-light); }
.footer-copy { color: var(--text-muted); }

/* Tablet Responsive */
@media (max-width: 1199px) {
  .hero-headline { font-size: 2.2rem; }
  .headline-huge { font-size: 7.5rem; }
  .headline-title { font-size: 3rem; }
  .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; }
  .testi-grid { grid-template-columns: repeat(2, 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; }
  .headline-title { font-size: 2.2rem; }
  .headline-tag { font-size: 0.8rem; letter-spacing: 1.5px; padding: 4px 12px; }
  .btn-hero { width: 100%; padding: 15px 20px; font-size: 1.2rem; }
  .hero-badges { gap: 10px; }
  .badge-pill { font-size: 0.85rem; padding: 6px 12px; }
  .highlight-row { padding: 15px 0; font-size: 0.95rem; }
  .highlight-row-container { gap: 15px; }
  .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; }
  
  /* Testimonial Responsive */
  .testimonial-heading { font-size: 2rem; }
  .testimonial-subtext { font-size: 1rem; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .testi-card { padding: 28px 22px; border-radius: 18px; }
  .testi-avatar { width: 44px; height: 44px; font-size: 1.1rem; }
  .testi-name { font-size: 1rem; }
  
  /* 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; }
}

@media (max-width: 820px) {
  .testi-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Custom styles for copy rewrite */
.trans-lines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .trans-lines-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ==================================================
   NEW OPPORTUNITY SECTION (CƠ HỘI 2026)
   ================================================== */
.opportunity-section {
  background: var(--bg-main);
  padding: 120px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: flex-start;
  padding: 0 20px;
}

.opportunity-left {
  text-align: left;
}

.opportunity-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opportunity-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 15px;
  display: block;
}

.opportunity-heading {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--text-main);
}

.opportunity-line-decor {
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 20px 0 25px;
  border-radius: 2px;
}

.opportunity-subheading {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 600;
}

.opportunity-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.opportunity-closing {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
  margin-top: 30px;
}

.opportunity-closing p {
  margin-bottom: 15px;
}

.opportunity-closing strong {
  color: var(--gold-primary);
}

.opportunity-closing-lines {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
}

.opportunity-closing-line {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.opportunity-closing-line span {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.opportunity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: left;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
}

.opportunity-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.opportunity-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.opportunity-cta-wrapper {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.btn-opportunity {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--text-dark);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.2;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s, filter 0.2s;
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.btn-opportunity:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-opportunity span {
  display: block;
}

.opportunity-cta-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.opportunity-cta-sub:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

/* Responsive for opportunity section */
@media (max-width: 991px) {
  .opportunity-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }
  .opportunity-left {
    text-align: center;
  }
  .opportunity-line-decor {
    margin: 20px auto 25px;
  }
  .opportunity-closing-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .opportunity-cta-wrapper {
    align-items: center;
    width: 100%;
  }
  .btn-opportunity {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .opportunity-section {
    padding: 60px 0;
  }
  .opportunity-grid {
    padding: 0 15px;
  }
  .opportunity-heading {
    font-size: 1.8rem;
  }
  .opportunity-subheading {
    font-size: 1.1rem;
  }
  .opportunity-intro {
    font-size: 1rem;
  }
  .opportunity-card {
    padding: 20px;
  }
  .opportunity-card-title {
    font-size: 1.1rem;
  }
  .opportunity-card-desc {
    font-size: 0.95rem;
  }
  .btn-opportunity {
    font-size: 1.15rem;
    padding: 15px 20px;
  }
}

/* ==================================================
   HERO GRID & CUSTOM LAYOUT ADDITIONS
   ================================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-card {
  position: relative;
  background: rgba(15, 20, 30, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  padding: 56px 48px;
  overflow: hidden;
}

.hero-card-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(16, 27, 48, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr; /* 52% / 48% ratio approximate */
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.headline-tag {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 700;
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(234, 179, 8, 0.08);
}

.hero-headline {
  margin-bottom: 20px;
}

.headline-title {
  font-size: 52px;
  display: block;
  color: var(--text-main);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  max-width: 600px;
  letter-spacing: -0.5px;
}

.nowrap {
  white-space: nowrap;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #E2E8F0;
  margin-bottom: 16px;
  max-width: 580px;
  font-weight: 400;
}

.hero-audience-box {
  border-left: 2px solid rgba(234, 179, 8, 0.4);
  padding-left: 16px;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-audience {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Offer Block */
.hero-offer-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.15);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  background: var(--gold-gradient);
  color: #111;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.25);
  transition: all 0.3s ease;
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.35);
}

.btn-hero-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
}

.hero-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-original {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.price-badge-gold {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.25);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-highlight {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.hero-microcopy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* Benefit Chips */
.hero-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 20, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 500;
}

.chip-icon {
  font-size: 0.85rem;
}

/* Hero Image Visual Card */
.hero-card-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.visual-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.visual-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(212, 175, 55, 0.05);
  width: 100%;
  max-width: 620px;
  aspect-ratio: 4/3;
  z-index: 1;
}

.visual-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Nỗi Lo Image */
.pain-image-wrapper {
  margin-top: 45px;
  margin-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-dark);
  transition: transform 0.35s ease;
  position: relative;
}
.pain-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 25%;
  background: linear-gradient(to top, rgba(10,15,26,0.5) 0%, transparent 100%);
  pointer-events: none;
}
.pain-image-wrapper:hover {
  transform: scale(1.006);
}
.pain-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* Cơ Hội Image */
.opportunity-image-wrapper {
  margin-top: 0;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
  transition: transform 0.35s ease;
  position: relative;
}
.opportunity-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(10,15,26,0.55) 0%, transparent 100%);
  pointer-events: none;
}
.opportunity-image-wrapper:hover {
  transform: scale(1.005);
}
.opportunity-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* ==================================================
   RESPONSIVE BREAKPOINTS
   ================================================== */

/* Tablet and below */
@media (max-width: 1024px) {
  .hero-card {
    padding: 40px 32px;
  }
  .hero-card-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-card-content {
    align-items: center;
    text-align: center;
    order: 1;
  }
  .headline-title {
    font-size: 44px;
    max-width: 100%;
  }
  .nowrap {
    white-space: normal;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-audience-box {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-top: 2px solid rgba(234, 179, 8, 0.4);
    text-align: left;
    padding-left: 0;
    padding-top: 16px;
  }
  .hero-offer-block {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .hero-price-row {
    justify-content: center;
  }
  .hero-microcopy {
    text-align: center;
  }
  .hero-benefits-grid {
    align-items: center;
  }
  .benefit-row {
    justify-content: center;
  }
  .hero-card-visual {
    order: 2;
    justify-content: center;
  }
  .visual-wrapper {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section {
    padding: 70px 0 60px;
  }
  .hero-container {
    padding: 0 20px;
    gap: 35px;
  }
  .headline-title {
    font-size: 2rem;
    line-height: 1.25;
  }
  .hero-image-col {
    max-width: 100%;
  }
  .hero-img {
    aspect-ratio: 4/3;
  }
  .hero-image-wrapper {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  }
  .pain-image {
    aspect-ratio: 4/3;
  }
  .pain-image-wrapper {
    border-radius: 14px;
  }
  .opportunity-image {
    aspect-ratio: 4/3;
  }
  .opportunity-image-wrapper {
    border-radius: 14px;
  }
  .discovery-card {
    grid-template-columns: 1fr !important;
    padding: 30px 20px !important;
    gap: 25px !important;
  }
  .trans-grid {
    grid-template-columns: 1fr !important;
  }
  .trans-lines-grid {
    grid-template-columns: 1fr !important;
  }
  .skills-grid {
    grid-template-columns: 1fr !important;
  }
  .truth-cards {
    grid-template-columns: 1fr !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .headline-title {
    font-size: 1.8rem;
  }
  .hero-benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-chip {
    justify-content: center;
  }
  .hero-price-badge {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
}

/* Mobile Specific Hero Adjustments */
@media (max-width: 767px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  .hero-card {
    padding: 32px 20px;
    border-radius: 24px;
  }
  .headline-title {
    font-size: 34px;
    line-height: 1.15;
  }
  .btn-hero-primary {
    padding: 14px 16px;
  }
  .btn-hero-title {
    font-size: 1.05rem;
  }
  .hero-price-row {
    flex-direction: column;
    gap: 8px;
  }
  .benefit-row {
    flex-direction: column;
    width: 100%;
  }
  .benefit-chip {
    width: 100%;
    justify-content: center;
  }
  .visual-wrapper {
    border-radius: 16px;
  }
}

/* ==================================================
   STICKY BOTTOM OFFER BAR
   ================================================== */
.sticky-offer-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(55, 15, 45, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-offer-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-offer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.sticky-offer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sticky-price-group {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.sticky-price-current {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.sticky-price-old {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-weight: 500;
}

.sticky-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.sticky-offer-right {
  flex-shrink: 0;
  margin-left: 20px;
}

.btn-sticky-cta {
  display: inline-block;
  background: var(--gold-gradient);
  color: #111;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
}

/* Tablet & Mobile Adjustments */
@media (max-width: 991px) {
  .sticky-offer-container {
    padding: 14px 20px;
  }
  .sticky-price-current {
    font-size: 1.4rem;
  }
  .sticky-desc {
    font-size: 0.85rem;
  }
  .btn-sticky-cta {
    padding: 12px 24px;
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  .sticky-offer-bar {
    bottom: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    transform: translateX(-50%) translateY(100%);
    transition: all 0.35s ease-out;
  }
  .sticky-offer-bar.visible {
    transform: translateX(-50%) translateY(0);
  }
  .sticky-offer-container {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .sticky-offer-left {
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 6px;
  }
  .sticky-price-group {
    justify-content: center;
    margin-bottom: 2px;
  }
  .sticky-price-current {
    font-size: 1.5rem;
  }
  .sticky-desc {
    font-size: 0.9rem;
    max-width: 90%;
  }
  .sticky-offer-right {
    width: 100%;
    margin-left: 0;
  }
  .btn-sticky-cta {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.25);
  }
}

/* ==================================================
   CONVERSION STRUCTURE UPGRADE STYLES
   ================================================== */

/* Opportunity Section */
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.opp-card {
  background: rgba(15, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}
.opp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 179, 8, 0.3);
  box-shadow: 0 10px 30px rgba(234, 179, 8, 0.1);
}
.opp-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.opp-title {
  color: var(--gold-primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.opp-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.opp-card-full {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.closing-quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

/* Roadmap Visual Section */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  z-index: 0;
}
.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255,255,255,0.02);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(234, 179, 8, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.roadmap-step:hover {
  transform: translateX(10px);
  background: rgba(234, 179, 8, 0.05);
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}
.step-content h4 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* System Section (Modules) */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.module-card {
  background: linear-gradient(145deg, rgba(30, 25, 45, 0.6) 0%, rgba(15, 20, 30, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.module-card:hover {
  border-color: rgba(234, 179, 8, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.module-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(234, 179, 8, 0.15);
  color: var(--gold-primary);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.module-title {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 12px;
}
.module-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.module-card-full {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(234, 179, 8, 0.1) 0%, rgba(15, 20, 30, 0.8) 100%);
  border-color: rgba(234, 179, 8, 0.3);
}

/* Toolkit Section (Bonus) */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.toolkit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}
.toolkit-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}
.toolkit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.toolkit-title {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.toolkit-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Final Offer Section */
.offer-panel {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.95) 0%, rgba(10, 15, 25, 0.95) 100%);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.offer-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold-gradient);
}
.offer-title {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}
.offer-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}
.offer-breakdown {
  display: flex;
  gap: 40px;
  align-items: center;
  background: rgba(0,0,0,0.2);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
}
.offer-price-box {
  flex: 1;
  text-align: center;
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.offer-price-original {
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.offer-price-original span {
  text-decoration: line-through;
}
.offer-price-current {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 8px;
}
.offer-price-current .highlight {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(234, 179, 8, 0.2);
}
.offer-price-savings {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
}
.offer-includes {
  flex: 1.5;
}
.includes-title {
  color: var(--text-main);
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.includes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.btn-offer-cta {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  background: var(--gold-gradient);
  color: #111;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 20px 32px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(234, 179, 8, 0.3);
  transition: all 0.3s ease;
}
.btn-offer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(234, 179, 8, 0.4);
}
.offer-trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .offer-breakdown {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .offer-price-box {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .roadmap-timeline::before {
    left: 24px;
  }
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .includes-list {
    grid-template-columns: 1fr;
  }
  .offer-panel {
    padding: 32px 20px;
  }
  .offer-title {
    font-size: 1.5rem;
  }
  .offer-price-current .highlight {
    font-size: 2.2rem;
  }
  .btn-offer-cta {
    font-size: 1.1rem;
    padding: 16px;
  }
  .offer-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
