/* ══════════════════════════════════════════
   ROOT & RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #F5C518;
  --gold-light: #FFD84D;
  --gold-dark: #C9960A;
  --red: #FF3B3B;
  --bg-dark: #050810;
  --bg-card: #0C1120;
  --bg-card2: #111827;
  --border: rgba(245,197,24,0.18);
  --border-light: rgba(255,255,255,0.07);
  --text-white: #F0F4FF;
  --text-muted: #8A94AA;
  --gradient-gold: linear-gradient(135deg, #F5C518 0%, #FFD84D 50%, #C9960A 100%);
  --gradient-page: linear-gradient(180deg, #050810 0%, #080D1A 100%);
  --glow-gold: 0 0 30px rgba(245,197,24,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 30px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
s { opacity: 0.5; }

/* ══════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-red  { color: var(--red); }
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--text-white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ══════════════════════════════════════════
   BUTTONS / CTA
══════════════════════════════════════════ */
.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--gradient-gold);
  color: #000;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 40px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(245,197,24,0.4);
  border: none;
  text-align: center;
  line-height: 1.3;
}
.btn-cta i { margin-right: 8px; }
.btn-cta .btn-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245,197,24,0.55);
}

.btn-buy-now {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  background: var(--gradient-gold);
  color: #000;
  font-weight: 900;
  font-size: 1.15rem;
  padding: 20px 30px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(245,197,24,0.45);
  border: none;
  text-align: center;
  line-height: 1.3;
}
.btn-buy-now span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
}
.btn-buy-now i { margin-right: 8px; }
.btn-buy-now:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 45px rgba(245,197,24,0.6);
}

.btn-buy-large {
  max-width: 560px;
  font-size: 1.2rem;
  padding: 22px 40px;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,197,24,0.10) 0%, transparent 70%),
              var(--gradient-page);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.badge-top {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text-white); }

.hero-note {
  font-size: 0.95rem;
  color: #6B7A99;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-note i { color: var(--gold); }
.hero-note strong { color: var(--text-muted); }

.hero-cta {
  font-size: 1.15rem;
  padding: 20px 50px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 40px;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245,197,24,0.4);
  font-size: 1.2rem;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   STORY / PAIN SECTION
══════════════════════════════════════════ */
.story-section {
  padding: 90px 20px;
  background: var(--bg-dark);
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.3s, transform 0.2s;
}
.pain-card:hover {
  border-color: rgba(245,197,24,0.25);
  transform: translateY(-4px);
}
.pain-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(245,197,24,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.pain-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}
.pain-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.truth-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(245,197,24,0.07), rgba(245,197,24,0.02));
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius);
  padding: 30px 36px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.truth-icon {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.truth-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.truth-box strong { color: var(--text-white); }

/* ══════════════════════════════════════════
   SOLUTION SECTION
══════════════════════════════════════════ */
.solution-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #080D1A 0%, #050810 100%);
  text-align: center;
}

.solution-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: left;
}
.sol-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.sol-feature i { margin-top: 2px; flex-shrink: 0; font-size: 1rem; }
.sol-feature strong { color: var(--text-white); }

/* ══════════════════════════════════════════
   PILLARS SECTION
══════════════════════════════════════════ */
.pillars-section {
  padding: 90px 20px;
  background: var(--bg-dark);
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover {
  border-color: rgba(245,197,24,0.25);
  transform: translateY(-5px);
}
.pillar-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245,197,24,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.pillar-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.pillar-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}
.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pillar-card p strong { color: var(--gold); }

/* ══════════════════════════════════════════
   TEAM SECTION
══════════════════════════════════════════ */
.team-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #080D1A 0%, #050810 100%);
  text-align: center;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 50px 0 40px;
}

.team-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: left;
  transition: border-color 0.3s, transform 0.2s;
}
.team-card:hover {
  border-color: rgba(245,197,24,0.2);
  transform: translateY(-4px);
}
.team-card--highlight {
  border-color: rgba(245,197,24,0.3);
  background: linear-gradient(135deg, rgba(245,197,24,0.05), var(--bg-card2));
}

.team-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.team-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(245,197,24,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.team-group {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.team-header h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}
.team-count {
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.team-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.team-list li i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.team-total {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(245,197,24,0.1), rgba(245,197,24,0.03));
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius);
  padding: 24px 60px;
}
.total-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.total-num {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.total-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   BONUS SECTION
══════════════════════════════════════════ */
.bonus-section {
  padding: 90px 20px;
  background: var(--bg-dark);
  text-align: center;
}

.bonus-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50px;
  padding: 8px 22px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold);
}
.bonus-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.bonus-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #000;
  background: var(--gradient-gold);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.bonus-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-white);
}
.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.bonus-value {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.bonus-value span {
  font-weight: 800;
  color: var(--gold);
  font-size: 1rem;
}

/* ══════════════════════════════════════════
   BEFORE / AFTER SECTION
══════════════════════════════════════════ */
.transformation-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #080D1A 0%, #050810 100%);
  text-align: center;
}

.before-after {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.ba-col {
  flex: 1;
  padding: 36px 32px;
  text-align: left;
}
.ba-before {
  background: rgba(255,59,59,0.05);
  border-right: 1px solid var(--border-light);
}
.ba-after {
  background: rgba(50,205,50,0.04);
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ba-before .ba-header i { color: var(--red); font-size: 1.6rem; }
.ba-after  .ba-header i { color: #32CD32;  font-size: 1.6rem; }
.ba-header h3 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-white);
}

.ba-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ba-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.ba-before ul li i { color: var(--red);   font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.ba-after  ul li i { color: #32CD32; font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--bg-card);
  font-size: 1.8rem;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   ROADMAP SECTION
══════════════════════════════════════════ */
.roadmap-section {
  padding: 90px 20px;
  background: var(--bg-dark);
  text-align: center;
}

.roadmap-timeline {
  position: relative;
  max-width: 720px;
  margin: 50px auto 50px;
  text-align: left;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(245,197,24,0.1) 100%);
}

.road-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}
.road-item:last-child { margin-bottom: 0; }

.road-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(245,197,24,0.4);
}
.road-dot span {
  font-size: 1rem;
  font-weight: 900;
  color: #000;
}

.road-content {
  flex: 1;
  padding: 4px 0;
}
.road-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.road-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}
.road-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.road-content p strong { color: var(--text-white); }

/* ══════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════ */
.pricing-section {
  padding: 90px 20px 70px;
  background: linear-gradient(180deg, #080D1A 0%, #050810 100%);
  text-align: center;
}

.pricing-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  background: rgba(255,59,59,0.07);
  border: 1px solid rgba(255,59,59,0.2);
  border-radius: 50px;
  padding: 8px 20px;
}
.pricing-urgency i { color: var(--red); }
.pricing-urgency strong { color: var(--red); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 50px;
  align-items: start;
}

/* --- Card chung --- */
.price-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  position: relative;
}
.price-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.miss-tag {
  background: rgba(255,59,59,0.12);
  border: 1px solid rgba(255,59,59,0.3);
  color: var(--red);
}
.buy-tag {
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.35);
  color: var(--gold);
}

/* --- Card MISS --- */
.price-card--miss {
  background: rgba(255,59,59,0.04);
  border: 1px solid rgba(255,59,59,0.2);
}
.price-miss-icon {
  font-size: 2.2rem;
  color: rgba(255,59,59,0.4);
  margin-bottom: 12px;
}
.price-card--miss h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.miss-price-show {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.miss-cost {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.7;
}
.miss-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.miss-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
}
.miss-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.miss-list li i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.miss-list li strong { color: rgba(255,255,255,0.65); }
.miss-total {
  font-size: 0.88rem;
  color: var(--red);
  opacity: 0.8;
  font-weight: 700;
  border-top: 1px solid rgba(255,59,59,0.15);
  padding-top: 14px;
}
.miss-total strong { font-size: 1rem; }

/* --- Card BUY --- */
.price-card--buy {
  background: linear-gradient(160deg, #12192E 0%, #0C1120 100%);
  border: 2px solid rgba(245,197,24,0.5);
  box-shadow: 0 0 50px rgba(245,197,24,0.12), var(--shadow-card);
}
.price-badge-hot {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 0.08em;
}
.price-card--buy h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}
.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.price-main {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.price-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-once {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.price-save-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #000;
  background: var(--gradient-gold);
  border-radius: 6px;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.buy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.buy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.buy-list li i { color: #32CD32; margin-top: 2px; flex-shrink: 0; }
.buy-list li strong { color: var(--text-white); }

.price-note-digital {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(245,197,24,0.05);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.price-note-digital i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.price-note-digital strong { color: var(--text-white); }

/* --- Countdown --- */
.countdown-wrap {
  text-align: center;
  margin-top: 20px;
}
.countdown-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.countdown-label i { color: var(--gold); margin-right: 6px; }
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  min-width: 80px;
}
.cd-box span {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.cd-box small {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cd-sep {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════
   FINAL CTA SECTION
══════════════════════════════════════════ */
.finalcta-section {
  padding: 90px 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245,197,24,0.08) 0%, transparent 70%), var(--bg-dark);
  text-align: center;
}
.finalcta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}
.finalcta-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.finalcta-desc strong { color: var(--text-white); }
.finalcta-section .btn-buy-now { margin: 0 auto; }
.final-small-note {
  font-size: 0.8rem;
  color: #4A5568;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.final-small-note i { color: #4A5568; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  padding: 36px 20px;
  background: #030508;
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: #3A4258;
}

/* ══════════════════════════════════════════
   STICKY BAR
══════════════════════════════════════════ */
#sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0C1120 0%, #12192E 100%);
  border-bottom: 1px solid rgba(245,197,24,0.3);
  padding: 10px 20px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
#sticky-bar.bar-visible {
  transform: translateY(0);
}
.sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-text i { color: var(--gold); }
.sticky-text strong { color: var(--text-white); }
.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.4);
}
@media (max-width: 480px) {
  .sticky-text { font-size: 0.78rem; }
  .sticky-btn  { font-size: 0.76rem; padding: 7px 14px; }
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .pillars-grid       { grid-template-columns: 1fr 1fr; }
  .teams-grid         { grid-template-columns: 1fr 1fr; }
  .pain-grid          { grid-template-columns: 1fr 1fr; }
  .solution-features  { grid-template-columns: 1fr; }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 520px; }
  .price-card--buy    { order: -1; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
══════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-stats         { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .stat-divider       { width: 60px; height: 1px; }
  .stat-item          { padding: 0; }

  .pain-grid          { grid-template-columns: 1fr; }
  .pillars-grid       { grid-template-columns: 1fr; }
  .teams-grid         { grid-template-columns: 1fr; }
  .bonus-grid         { grid-template-columns: 1fr; }

  .before-after {
    flex-direction: column;
  }
  .ba-arrow {
    padding: 14px 0;
    font-size: 1.4rem;
    transform: rotate(90deg);
  }
  .ba-before { border-right: none; border-bottom: 1px solid var(--border-light); }

  .road-item          { gap: 18px; }
  .roadmap-timeline::before { left: 20px; }

  .hero-cta { padding: 16px 24px; font-size: 1rem; }
  .btn-buy-large { padding: 18px 24px; font-size: 1rem; }

  .countdown { gap: 6px; }
  .cd-box { padding: 10px 16px; min-width: 65px; }
  .cd-box span { font-size: 1.6rem; }

  .truth-box { flex-direction: column; text-align: center; }
}
