@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Kanit:wght@300;400;500&family=Prompt:wght@400;600;700&display=swap');

:root {
  /* Primary Colors - Emerald */
  --color-bg-deep: #031A15;
  --color-bg-primary: #063B2E;
  --color-bg-highlight: #0E7A55;
  
  /* Metallic Gold */
  --color-gold-shadow: #AA771C;
  --color-gold-base: #D4AF37;
  --color-gold-light: #FDF0B0;
  
  /* Text Colors */
  --color-text-ivory: #FFF8E7;
  --color-text-cream: #D8C9A3;
  
  /* Shadows & Effects */
  --shadow-dark: rgba(2, 11, 9, 0.8);
  --gold-glow: rgba(230, 200, 120, 0.45);
  --glass-bg: rgba(6, 59, 46, 0.6);
  --glass-border: rgba(230, 200, 120, 0.2);
  
  /* Gradients */
  --gradient-bg: linear-gradient(145deg, #02110E 0%, #063B2E 50%, #0B5A42 100%);
  --gradient-gold: linear-gradient(110deg, #C89B3C 0%, #FDF0B0 30%, #D4AF37 50%, #FDF0B0 70%, #AA771C 100%);
  
  /* Fonts */
  --font-heading: 'Prompt', sans-serif;
  --font-body: 'Kanit', sans-serif;
  --font-number: 'Cinzel', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #010A08; /* Very dark background for desktop view */
}

body {
  font-family: var(--font-body);
  background: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--color-text-ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  
  /* Mobile Size Constraint */
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 50px rgba(6, 59, 46, 0.4);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.badge-top {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--color-gold-light);
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(2, 11, 9, 0.5);
}

.vip-number {
  font-family: var(--font-number);
  font-size: clamp(2.2rem, 9vw, 3rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin: 20px 0;
  position: relative;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 20px rgba(212, 175, 55, 0.4));
  animation: float 6s ease-in-out infinite;
}

.vip-number::after {
  content: '0 888 964 555';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-cream);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px var(--shadow-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(2, 11, 9, 0.9);
  border-color: rgba(230, 200, 120, 0.4);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-bg-deep);
  border: none;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  background-size: 200% auto;
  transition: 0.5s;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

/* Grid Layouts */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Badges List */
.badge-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  text-align: left;
  margin: 30px 0;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(3, 26, 21, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--color-gold-light);
}

/* Section Specifics */
.problem-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.problem-section p {
  font-size: 1.2rem;
  color: var(--color-text-cream);
  margin-bottom: 20px;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-wrapper svg {
  width: 30px;
  height: 30px;
  fill: var(--color-bg-deep);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 480px;
  background: rgba(3, 26, 21, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transform: translate(-50%, 100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translate(-50%, 0);
}

.price-tag {
  font-family: var(--font-number);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Check List for Pain Points */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin: 30px 0;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--color-text-cream);
  line-height: 1.5;
}

.check-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--color-gold-base);
  margin-top: 2px;
}

/* Horizontal Carousel for Audience */
.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 10px 20px 30px;
  margin: 0 -20px; /* Bleed to edge */
  -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  scroll-snap-align: center;
  flex: 0 0 85%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(16px);
  text-align: left;
}

.carousel-item h3 {
  font-size: 1.2rem;
  color: var(--color-gold-light);
  margin-bottom: 12px;
}

.carousel-item p {
  font-size: 1rem;
  color: var(--color-text-ivory);
  margin-bottom: 12px;
}

.carousel-item .highlight {
  font-size: 0.95rem;
  color: var(--color-text-cream);
  border-top: 1px dashed rgba(230, 200, 120, 0.3);
  padding-top: 12px;
  margin-top: 12px;
}

/* Business Grid for Badges */
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.business-badge {
  background: rgba(3, 26, 21, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(2, 11, 9, 0.5);
  transition: transform 0.2s ease;
}

.business-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 200, 120, 0.5);
}

.business-badge svg {
  width: 28px;
  height: 28px;
  fill: var(--color-gold-base);
}

.business-badge span {
  font-size: 0.95rem;
  color: var(--color-text-ivory);
  font-weight: 500;
}


