/* ==========================================================================
   JARI TALENTA — AGENT ACQUISITION PREMIUM DESIGN STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Brand Color Palette */
  --primary-navy: #002558;
  --primary-navy-dark: #00122B;
  --primary-navy-light: #003780;
  --secondary-cyan: #00AEEF;
  --secondary-cyan-light: #4CD1FF;
  --accent-gold: #D29C23;
  --accent-gold-light: #E9AF2B;
  
  /* Warm Premium Theme Backgrounds */
  --white: #FFFFFF;
  --bg-warm-light: #FDFBF7; /* Warm premium off-white */
  --bg-warm-alt: #F5EFE6;
  --bg-gradient-brand: linear-gradient(135deg, #002558 0%, #00122B 100%);
  --bg-gradient-soft: radial-gradient(circle at 80% 20%, #FDFBF7 0%, #FFFFFF 70%);
  --bg-gradient-gold-tint: linear-gradient(180deg, #FFFFFF 0%, #FDFBF7 100%);
  
  /* Typography & Neutrals */
  --text-dark: #1F2937;
  --text-muted: #4B5563;
  --text-light: #9CA3AF;
  
  /* Borders and Shadows */
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --border-light: rgba(0, 37, 88, 0.08);
  --border-focus: rgba(0, 174, 239, 0.4);
  
  /* Shadows */
  --box-shadow-subtle: 0 4px 20px -2px rgba(0, 37, 88, 0.03);
  --box-shadow-hover: 0 16px 36px -8px rgba(0, 37, 88, 0.08);
  --box-shadow-premium: 0 30px 60px -15px rgba(0, 37, 88, 0.12);
  --box-shadow-gold: 0 12px 30px -10px rgba(210, 156, 35, 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 54px;
}

/* ==========================================
   FIXED HORIZONTAL JUMP-NAV HEADER
   ========================================== */
.fixed-jump-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 37, 88, 0.08);
  box-shadow: 0 4px 18px rgba(0, 18, 43, 0.04);
}

.jump-nav-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1200px;
  margin: 0 auto;
}

.jump-nav-scroll::-webkit-scrollbar {
  display: none;
}

.jump-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.jump-nav-link:hover {
  color: var(--primary-navy);
  background: rgba(0, 37, 88, 0.05);
}

.jump-nav-link.active {
  background: #E8F4FC;
  border-color: rgba(0, 174, 239, 0.35);
  color: #0077B6;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.12);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold) !important;
}

.text-cyan {
  color: var(--secondary-cyan) !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: rgba(210, 156, 35, 0.08);
  border: 1px solid rgba(210, 156, 35, 0.25);
  color: var(--accent-gold);
}

.badge-cyan {
  background-color: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.25);
  color: var(--secondary-cyan);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--primary-navy);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.15rem;
  }
}

/* Glassmorphism Panel styles */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--box-shadow-subtle);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Dynamic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 52px;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--primary-navy);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0, 37, 88, 0.15);
}

.btn-primary:hover {
  background-color: var(--primary-navy-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 37, 88, 0.25);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-navy);
  color: var(--primary-navy);
}

.btn-secondary:hover {
  background-color: rgba(0, 37, 88, 0.04);
  transform: translateY(-3px);
  border-color: var(--primary-navy-light);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white);
  box-shadow: var(--box-shadow-gold);
}

.btn-gold:hover {
  background-color: var(--accent-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(210, 156, 35, 0.35);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px -10px rgba(0, 37, 88, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-link img {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.btn-header-cta {
  padding: 8px 20px;
  min-height: 40px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Hero Section */
.hero-section {
  display: block;
  min-height: auto;
  padding-top: 50px;
  padding-bottom: 100px;
  background: var(--bg-gradient-soft);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: none;
}

.hero-title {
  font-size: 3.75rem; /* Responsive sizing */
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background-color: rgba(210, 156, 35, 0.05);
  border: 1px solid rgba(210, 156, 35, 0.2);
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  margin-bottom: 30px;
}

.badge-price-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-price-badge .price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.original-price {
  text-decoration: line-through;
  color: #E63946; /* Premium discount red */
  opacity: 0.9;
  font-weight: 700;
}

.hero-price-badge .original-price {
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
}

.hero-price-badge .micro {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}

.cta-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glowing central background pulse */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, rgba(210, 156, 35, 0.05) 50%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.5; }
}

@keyframes cta-pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(210, 156, 35, 0.55); transform: scale(1); }
  50% { box-shadow: 0 0 0 12px rgba(210, 156, 35, 0); transform: scale(1.03); }
}

.cta-pulse {
  animation: cta-pulse-anim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-pulse:hover {
  animation: none;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  z-index: 2;
}

.main-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-premium);
  display: block;
}

/* Overlapping premium cards styling */
.floating-card {
  position: absolute;
  padding: 14px 20px;
  border-radius: var(--border-radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  z-index: 10;
  box-shadow: 0 20px 40px -10px rgba(0, 37, 88, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: floating-bounce 6s ease-in-out infinite;
}

.floating-card svg {
  flex-shrink: 0;
}

.floating-card.card-completed {
  top: 10%;
  left: -15%;
  background: rgba(255, 255, 255, 0.9);
  color: #059669;
  border-left: 4px solid #059669;
}

.floating-card.card-report {
  bottom: 22%;
  left: -20%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-navy);
  border-left: 4px solid var(--secondary-cyan);
  animation-delay: 1.5s;
}

.floating-card.card-payment {
  top: 32%;
  right: -15%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-gold);
  border-left: 4px solid var(--accent-gold);
  animation-delay: 3s;
}

.floating-card.card-token {
  bottom: 10%;
  right: -10%;
  background: rgba(255, 255, 255, 0.9);
  color: #4B5563;
  border-left: 4px solid #9CA3AF;
  animation-delay: 4.5s;
}

@keyframes floating-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Trust Strip */
.trust-strip {
  background-color: var(--primary-navy-dark);
  color: var(--white);
  padding: 28px 0;
  position: relative;
  z-index: 10;
  border-bottom: 2px solid rgba(0, 174, 239, 0.1);
}

.trust-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item svg {
  color: var(--secondary-cyan);
  filter: drop-shadow(0 0 6px rgba(0, 174, 239, 0.4));
}

/* Why Parents Care Section */
.why-parents {
  background-color: var(--bg-warm-light);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
}

.why-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(210, 156, 35, 0.15);
}

.floating-insight {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 5;
  color: var(--primary-navy);
}

.floating-insight.strength {
  top: 15%;
  right: -5%;
  border-left: 3px solid var(--accent-gold);
}

.floating-insight.preference {
  bottom: 25%;
  left: -5%;
  border-left: 3px solid var(--secondary-cyan);
}

.floating-insight.talent {
  bottom: 10%;
  right: 10%;
  border-left: 3px solid #10B981;
}

.large-quote {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1.15;
  margin: 20px 0 25px;
  font-style: italic;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

/* Business Opportunity Section */
.opportunity-section {
  background-color: var(--white);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.opp-card {
  padding: 50px 35px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  background: var(--bg-gradient-gold-tint);
}

.opp-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: rgba(0, 174, 239, 0.08);
  color: var(--secondary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 20px -5px rgba(0, 174, 239, 0.2);
}

.opp-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.opp-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Economics Section */
.economics-section {
  background-color: var(--bg-warm-light);
}

.equation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin: 60px auto 40px;
  max-width: 960px;
}

.equation-card {
  flex: 1;
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border-light);
}

.equation-card h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.equation-card .price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.equation-card.highlighted-eq {
  background-color: var(--primary-navy);
  color: var(--white);
  border: 2px solid var(--accent-gold);
  box-shadow: var(--box-shadow-premium);
}

.equation-card.highlighted-eq h3 {
  color: var(--accent-gold);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.equation-card.highlighted-eq .price {
  color: var(--white);
  font-size: 3rem;
  text-shadow: 0 0 10px rgba(0, 174, 239, 0.2);
}

.equation-arrow {
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 900;
}

/* Income Simulator */
.simulator-section {
  background-color: var(--white);
}

.sim-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  background-color: var(--bg-warm-light);
  box-shadow: var(--box-shadow-hover);
}

.slider-group {
  margin-bottom: 45px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.slider-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-navy);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-ctrl {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-navy);
  background: var(--white);
  color: var(--primary-navy);
  font-size: 1.35rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-ctrl:hover {
  background: var(--primary-navy);
  color: var(--white);
}

.sim-count-display {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  min-width: 90px;
  text-align: center;
}

.range-input {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background: #E5E7EB;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary-cyan);
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.4);
  transition: var(--transition-smooth);
}

.range-input::-webkit-slider-thumb:hover {
  background: var(--primary-navy);
  scale: 1.15;
}

.sim-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 35px;
}

.sim-res-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  min-width: 0; /* Enforce grid item shrinking for text wrapping */
}

.sim-res-card.total-margin {
  grid-column: span 2;
  background-color: var(--primary-navy);
  color: var(--white);
  text-align: center;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--box-shadow-premium);
}

.sim-res-card.total-margin h4 {
  color: var(--accent-gold);
}

.sim-res-card.total-margin .value {
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  margin-top: 10px;
  text-shadow: 0 0 15px rgba(0,174,239,0.3);
}

.sim-res-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.sim-res-card .value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-navy);
}

/* Starter Package Card & Side Visual */
.starter-section {
  background-color: var(--bg-warm-light);
}

.starter-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.pricing-card {
  padding: 60px 45px;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--accent-gold);
  position: relative;
  background-color: var(--white);
  box-shadow: var(--box-shadow-premium);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 45px;
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pricing-header h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--primary-navy);
  margin-bottom: 35px;
}

.starter-features {
  list-style: none;
  margin-bottom: 45px;
}

.starter-features li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.starter-features li strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.starter-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.pricing-card .btn {
  width: 100%;
}

.starter-economics-card {
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--box-shadow-hover);
  align-self: start;
}

.econ-flow {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 35px 0;
  position: relative;
}

/* Vertical timeline indicator line for flow */
.econ-flow::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--bg-warm-alt);
  z-index: 1;
}

.econ-step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.econ-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--secondary-cyan);
  color: var(--secondary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
}

.econ-desc {
  flex: 1;
}

.econ-desc h5 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.econ-desc p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.econ-result-highlight {
  background-color: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 24px;
  border-radius: var(--border-radius-md);
  margin-top: 15px;
}

.dream-price-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 12px 0 18px;
}

.dream-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #10B981;
  margin-bottom: 0 !important;
  line-height: 1.05;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #059669 0%, #10B981 35%, #34D399 70%, #F59E0B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dream-shimmer 4s ease-in-out infinite alternate;
}

@keyframes dream-shimmer {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.3));
  }
  100% {
    background-position: 100% 50%;
    filter: drop-shadow(0 6px 20px rgba(16, 185, 129, 0.6)) drop-shadow(0 0 16px rgba(245, 158, 11, 0.45));
  }
}

.sparkle-item {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sparkle-item svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sparkle-1 {
  top: -16px;
  right: -28px;
  width: 28px;
  height: 28px;
  animation: sparkle-twinkle-1 2.2s ease-in-out infinite;
}

.sparkle-2 {
  top: -12px;
  left: -24px;
  width: 22px;
  height: 22px;
  animation: sparkle-twinkle-2 2.7s ease-in-out infinite 0.4s;
}

.sparkle-3 {
  bottom: -6px;
  right: -22px;
  width: 18px;
  height: 18px;
  animation: sparkle-twinkle-1 2.5s ease-in-out infinite 1.1s;
}

.sparkle-4 {
  top: 40%;
  left: -30px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  animation: sparkle-twinkle-2 3.1s ease-in-out infinite 1.6s;
}

.sparkle-5 {
  bottom: -12px;
  left: 35%;
  width: 18px;
  height: 18px;
  animation: sparkle-twinkle-1 2.9s ease-in-out infinite 0.7s;
}

@keyframes sparkle-twinkle-1 {
  0%, 100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: scale(1.25) rotate(45deg);
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.8));
  }
  50% {
    transform: scale(0.85) rotate(90deg);
    opacity: 0.85;
  }
  75% {
    transform: scale(0.35) rotate(135deg);
    opacity: 0.3;
  }
}

@keyframes sparkle-twinkle-2 {
  0%, 100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  30% {
    transform: scale(1.3) rotate(-45deg);
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(52, 211, 153, 0.8));
  }
  60% {
    transform: scale(0.75) rotate(-90deg);
    opacity: 0.7;
  }
  85% {
    transform: scale(0.2) rotate(-135deg);
    opacity: 0.15;
  }
}

.econ-result-highlight p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Setelah Token Habis Flow */
.topup-section {
  background-color: var(--white);
}

.topup-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.flow-visual {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  background-color: var(--bg-warm-light);
  box-shadow: var(--box-shadow-subtle);
}

.flow-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.flow-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-navy);
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  border: 1px solid var(--border-light);
}

.flow-step p {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary-navy);
}

.flow-arrow {
  color: var(--accent-gold);
  font-weight: 900;
  font-size: 1.5rem;
  animation: arrow-bounce 2s infinite;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Direct Cash Payment Advantage */
.cash-advantage {
  background-color: var(--primary-navy-dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.cash-advantage::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cash-advantage h2 {
  color: var(--white);
}

.cash-grid {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
}

.cash-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cash-info .section-subtitle {
  margin: 0 auto 20px;
  text-align: center;
  max-width: 720px;
}

.cash-info-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cash-visual {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 45px 40px;
  border-radius: var(--border-radius-lg);
  position: relative;
  box-shadow: var(--box-shadow-premium);
  width: 100%;
}

.cash-flow-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cash-node {
  background: var(--white);
  color: var(--primary-navy);
  padding: 24px 20px;
  border-radius: var(--border-radius-md);
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  min-width: 120px;
}

.cash-node.highlight-node {
  background: var(--accent-gold);
  color: var(--white);
  border: 2px solid var(--accent-gold-light);
}

.cash-line-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-cyan);
  font-size: 0.85rem;
  font-weight: 700;
}

.cash-line-flow span {
  font-size: 1.75rem;
  line-height: 1;
  margin-top: 4px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.cash-badge {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Who is this for */
.who-for-section {
  background-color: var(--bg-warm-light);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.who-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--box-shadow-subtle);
  display: flex;
  flex-direction: column;
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(0, 174, 239, 0.15);
}

.who-img-box {
  height: 220px;
  background-color: var(--bg-warm-alt);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-warm-alt) 0%, #EFE9DE 100%);
  overflow: hidden;
}

/* Constellation pattern bg for cards */
.who-img-box::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background-image: radial-gradient(var(--text-light) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
}

.who-img-box svg {
  color: var(--primary-navy);
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 37, 88, 0.15));
}

.who-meta {
  padding: 35px 30px;
  flex-grow: 1;
}

.who-meta h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.who-meta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Storytelling / One School */
.one-school-section {
  background-color: var(--white);
}

.school-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.school-visual-box {
  background-color: var(--bg-warm-light);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-hover);
}

.school-funnel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.funnel-level {
  display: flex;
  align-items: center;
  gap: 20px;
}

.funnel-tag {
  background: var(--primary-navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--border-radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  min-width: 170px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.funnel-tag.gold {
  background: var(--accent-gold);
}

.funnel-tag.cyan {
  background: var(--secondary-cyan);
}

.funnel-desc-text {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* Playbook / Roadmap Timeline */
.playbook-section {
  background-color: var(--bg-warm-light);
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

/* Roadmap line backdrop */
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: var(--border-light);
  z-index: 1;
}

.roadmap-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.roadmap-dot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--primary-navy);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(0,37,88,0.08);
  white-space: nowrap;
}

.roadmap-step:hover .roadmap-dot {
  background-color: var(--primary-navy);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(0,37,88,0.2);
}

.roadmap-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.roadmap-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* 3 Customer Challenge */
.challenge-section {
  background-color: var(--white);
}

.challenge-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--secondary-cyan);
  background-color: var(--bg-warm-light);
  text-align: center;
  box-shadow: var(--box-shadow-hover);
}

.challenge-card h3 {
  font-size: 1.75rem;
  color: var(--secondary-cyan);
  margin-bottom: 20px;
  font-weight: 800;
}

.challenge-tracker {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.challenge-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.challenge-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--text-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--text-light);
}

.challenge-dot.checked .challenge-circle {
  border-color: #10B981;
  background-color: rgba(16, 185, 129, 0.08);
  color: #10B981;
  box-shadow: 0 0 15px rgba(16,185,129,0.2);
}

.challenge-label-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.challenge-dot.checked .challenge-label-text {
  color: #10B981;
}

/* Referral Opportunity */
.referral-section {
  background-color: var(--bg-warm-light);
}

.referral-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.referral-visual {
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-hover);
}

.ref-node-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.ref-node {
  background: var(--bg-warm-light);
  padding: 20px 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid var(--border-light);
  min-width: 160px;
}

.ref-node.main-node {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
  box-shadow: 0 8px 20px rgba(0,37,88,0.15);
}

/* Product Demo (Journey) */
.product-demo {
  background-color: var(--white);
}

.demo-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.demo-step {
  text-align: center;
  position: relative;
}

.demo-visual-box {
  height: 130px;
  border-radius: var(--border-radius-md);
  background-color: var(--bg-warm-light);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-subtle);
}

.demo-step h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.demo-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Report Preview Section */
.report-preview-section {
  background-color: var(--bg-warm-light);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.preview-mockup-frame {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid var(--border-light);
}

.preview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 18px;
  margin-bottom: 24px;
  gap: 12px;
}

.preview-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent-gold-light);
  letter-spacing: -0.01em;
}

.preview-card-badge {
  font-size: 0.8rem;
  background: rgba(0, 174, 239, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--secondary-cyan-light);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .preview-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .preview-card-title {
    font-size: 1rem;
  }
}

.preview-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.preview-item {
  padding: 20px 24px;
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.preview-item:hover, .preview-item.active {
  border-color: var(--secondary-cyan);
  background-color: rgba(0, 174, 239, 0.04);
}

.preview-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 800;
}

.preview-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* FAQ Accordions */
.faq-grid {
  max-width: 840px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  border-radius: var(--border-radius-md);
  background: var(--bg-warm-light);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.15rem;
  color: var(--primary-navy);
  font-weight: 800;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  transition: var(--transition-smooth);
  line-height: 1;
}

.faq-content {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
}

.faq-card.open {
  background: var(--white);
  border-color: var(--primary-navy-light);
  box-shadow: var(--box-shadow-hover);
}

.faq-card.open .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-navy);
}

.faq-card.open .faq-content {
  padding: 12px 32px 36px;
}

/* Comparison Table */
.comparison-section {
  background-color: var(--white);
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 50px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-hover);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--white);
}

.comparison-table th, .comparison-table td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.comparison-table td {
  font-size: 0.975rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--bg-warm-light);
}

/* Mobile Comparison Cards Alternate Layout */
.comparison-cards-mobile {
  display: none;
}

@media (max-width: 768px) {
  .table-wrapper {
    display: none !important;
  }

  .comparison-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .comp-mobile-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-subtle);
    overflow: hidden;
  }

  .comp-mobile-header {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    text-align: center;
  }

  .comp-mobile-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .comp-mobile-row {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
  }

  .comp-mobile-row.conventional {
    background-color: rgba(75, 85, 99, 0.05);
    border-left: 3px solid var(--text-light);
  }

  .comp-mobile-row.jaritalenta {
    background-color: rgba(210, 156, 35, 0.05);
    border-left: 3px solid var(--accent-gold);
  }

  .comp-mobile-row .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }

  .comp-mobile-row.conventional .label {
    color: var(--text-muted);
  }

  .comp-mobile-row.jaritalenta .label {
    color: var(--accent-gold);
  }

  .comp-mobile-row p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
  }
}

/* Emotional Story */
.emotional-story {
  position: relative;
  background: var(--bg-gradient-brand);
  color: var(--white);
  text-align: center;
  z-index: 2;
}

.emotional-story h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.emotional-story p {
  font-size: 1.2rem;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
}

/* Agent Community */
.community-section {
  background-color: var(--bg-warm-light);
}

.community-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-subtle);
}

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Final Conversion Section */
.final-conversion {
  background: var(--bg-gradient-brand);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Constellation element backdrop for final conversion */
.final-conversion::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background-image: radial-gradient(rgba(0, 174, 239, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.final-conversion h2 {
  color: var(--white);
  font-size: 3.25rem;
  font-weight: 900;
  margin-bottom: 24px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.final-conversion p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 45px;
}

.final-price-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  padding: 24px 50px;
  border-radius: var(--border-radius-lg);
  display: inline-block;
  margin-bottom: 40px;
}

.final-price-box .price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--white);
}

.final-price-box .sub {
  font-size: 0.95rem;
  color: var(--accent-gold-light);
  margin-top: 6px;
  font-weight: 700;
}

.final-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.final-trigger-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 45px;
}

.trigger-step {
  padding: 12px 22px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.trigger-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
}

.trigger-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

.trigger-step.profit-step {
  background-color: var(--accent-gold);
  box-shadow: 0 6px 20px rgba(210, 156, 35, 0.4);
}

.trigger-step.profit-step .trigger-label {
  color: var(--primary-navy-dark);
  font-size: 0.95rem;
}

.trigger-step.profit-step .trigger-sub {
  color: rgba(0, 18, 43, 0.7);
}

.trigger-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-weight: bold;
}

/* Footer Section */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: var(--white);
  padding: 70px 0 250px;
  border-top: 2px solid rgba(0, 174, 239, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.65rem;
  font-weight: 800;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 340px;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: var(--secondary-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================
   PREMIUM FIXED FLOATING FOOTER (PROMO AGUSTUS)
   ========================================== */
.sticky-promo-card {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  width: calc(100% - 32px);
  max-width: 860px;
  background: linear-gradient(180deg, #051a3a 0%, #020f24 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 37, 88, 0.4);
  border-radius: 24px;
  padding: 16px 24px 12px;
  z-index: 9999;
  box-sizing: border-box !important;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.sticky-promo-card.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.promo-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.promo-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.promo-badge-tag {
  background-color: #E63946;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.promo-card-title {
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  margin: 0;
  line-height: 1.2;
}

.promo-card-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin: 3px 0 0;
}

.promo-divider-v {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.12);
}

.promo-price-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.promo-old-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  text-decoration-color: #E63946;
  font-weight: 600;
}

.promo-current-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #F59E0B;
  line-height: 1.1;
  margin: 2px 0 4px;
}

.promo-save-pill {
  background-color: #FFFFFF;
  color: #E63946;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.promo-countdown-col {
  background: rgba(0, 10, 26, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.countdown-heading {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 5px;
}

.countdown-timer-display {
  display: flex;
  align-items: center;
  gap: 4px;
}

.time-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-val {
  background-color: #020b18;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 3px 6px;
  border-radius: 5px;
  min-width: 28px;
  text-align: center;
  font-family: 'Outfit', monospace;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.time-lbl {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.time-sep {
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  font-size: 0.95rem;
  margin-top: -10px;
}

.promo-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #F59E0B;
  color: #020f24;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-action-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.6);
}

.promo-card-notice-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}

.promo-card-notice-row .notice-icon {
  font-size: 0.85rem;
}

@media (max-width: 820px) {
  .sticky-promo-card {
    width: calc(100% - 20px);
    bottom: 10px;
    padding: 12px 14px 8px;
    border-radius: 18px;
  }

  .promo-divider-v {
    display: none;
  }

  .promo-card-main {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
  }

  .promo-countdown-col {
    display: none; /* Keep clean on smaller tablets/mobile */
  }

  .promo-card-title {
    font-size: 0.98rem;
  }

  .promo-card-subtitle {
    font-size: 0.72rem;
  }

  .promo-current-price {
    font-size: 1.25rem;
  }

  .promo-action-btn {
    width: 44px;
    height: 44px;
  }

  .trust-badge-item {
    font-size: 0.68rem;
    gap: 4px;
  }
}

@media (max-width: 440px) {
  .trust-badge-item span {
    font-size: 0.64rem;
  }
}

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

@media (max-width: 992px) {
  .hero-section {
    display: block !important; /* Disable flex centering on mobile to prevent vertical clipping */
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding-top: 40px !important;
    padding-bottom: 60px !important;
  }

  .hero-grid, .why-grid, .starter-grid, .topup-grid, .cash-grid, .school-grid, .referral-grid, .preview-grid, .community-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }
  
  .hero-title {
    font-size: 2.85rem;
    text-align: center;
  }
  
  .hero-content {
    order: 1 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-price-badge {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .cta-subtext {
    text-align: center;
    margin-left: 0;
  }
  
  .hero-visual {
    order: 2 !important;
    margin-top: 20px;
  }
  
  .opportunity-grid, .who-grid, .demo-flow, .roadmap-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .roadmap-timeline::before {
    display: none;
  }
  
  .equation-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .equation-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px; /* Safe padding spacing for sticky bottom mobile CTA */
  }

  .cash-flow-diagram {
    flex-direction: column;
    gap: 20px;
  }
  
  .cash-line-flow {
    flex-direction: column;
    gap: 4px;
  }
  
  .cash-line-flow div {
    transform: rotate(90deg);
    margin-top: 4px;
  }
  
  .final-trigger-flow {
    flex-direction: column;
    gap: 15px;
  }
  
  .trigger-arrow {
    transform: rotate(90deg);
  }

  .flow-visual {
    flex-direction: column;
    gap: 15px;
    padding: 24px !important;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    animation: arrow-bounce-down 2s infinite;
  }

  .nav-container {
    height: 64px;
  }

  .logo-link img {
    height: 38px;
  }

  .btn-header-cta {
    padding: 7px 14px;
    min-height: 34px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2.25rem; /* Matches mobile 38-44px target */
  }
  
  .opportunity-grid, .who-grid, .demo-flow, .roadmap-timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .sim-results {
    grid-template-columns: minmax(0, 1fr);
  }

  .sim-res-card.total-margin {
    grid-column: span 1;
  }

  .ref-node-flow {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .funnel-level {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  
  .funnel-tag {
    width: 100%;
    min-width: 0;
    padding: 10px 15px;
    font-size: 1.05rem;
  }

  .slider-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .slider-label {
    font-size: 1.1rem !important;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .floating-card {
    font-size: 0.75rem !important;
    padding: 8px 12px !important;
    gap: 6px !important;
    box-shadow: 0 10px 20px rgba(0, 37, 88, 0.08) !important;
  }
  
  .floating-card.card-completed {
    left: -10px !important;
    top: 6% !important;
  }
  
  .floating-card.card-report {
    left: -15px !important;
    bottom: 24% !important;
  }
  
  .floating-card.card-payment {
    right: -10px !important;
    top: 32% !important;
  }
  
  .floating-card.card-token {
    right: -15px !important;
    bottom: 12% !important;
  }
  
  .floating-insight {
    font-size: 0.75rem !important;
    padding: 8px 12px !important;
  }
  
  .floating-insight.strength {
    right: -10px !important;
  }
  
  .floating-insight.preference {
    left: -10px !important;
  }
  
  .floating-insight.talent {
    right: 5px !important;
  }
  
  .section-title {
    font-size: 1.85rem !important;
  }
  
  .starter-economics-card,
  .school-visual-box,
  .referral-visual,
  .cash-visual,
  .challenge-card,
  .preview-mockup-frame,
  .opp-card,
  .sim-container {
    padding: 24px !important;
  }
  
  .sim-res-card {
    padding: 20px !important;
  }
  
  .sim-res-card h4 {
    font-size: 0.8rem !important;
  }
  
  .sim-res-card .value {
    font-size: 1.5rem !important;
  }
  
  .sim-res-card.total-margin .value {
    font-size: 2.25rem !important;
  }
  
  .dream-price {
    font-size: 2.35rem !important;
  }
  
  .pricing-card {
    padding: 40px 20px !important;
  }
  
  .faq-header {
    padding: 20px 24px !important;
  }
  
  .faq-content {
    padding: 0 24px !important;
  }
  
  .faq-card.open .faq-content {
    padding: 10px 24px 28px !important;
  }
}

/* Scroll reveal entry/exit transitions fallback */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  /* Disable scroll-driven timelines from style.css to keep opacity solid and colors vibrant */
  animation: none !important;
  animation-timeline: none !important;
}

.scroll-reveal.is-in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes arrow-bounce-down {
  0%, 100% { transform: rotate(90deg) translateX(0); }
  50% { transform: rotate(90deg) translateX(5px); }
}
