@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&f[]=clash-display@400,500,600,700&display=swap');

/* --------------------------------------------------
   DESIGN SYSTEM VARIABLES
-------------------------------------------------- */
:root {
  --bg-primary: #081623;
  --bg-secondary: #0E2235;
  --accent: #D9FF63;
  --accent-hover: #C7F64D;
  --accent-glow: rgba(217, 255, 99, 0.15);
  --accent-glow-strong: rgba(217, 255, 99, 0.4);
  --text-primary: #FFFFFF;
  --text-secondary: #A8B3BE;
  --card-bg: rgba(16, 38, 58, 0.45);
  --card-bg-solid: #10263A;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(217, 255, 99, 0.2);
  
  --font-heading: 'Clash Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --container-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-image: radial-gradient(circle at 10% 20%, rgba(22, 51, 75, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 90% 80%, rgba(217, 255, 99, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* --------------------------------------------------
   REUSABLE UTILITIES
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.badge-accent {
  background: rgba(217, 255, 99, 0.1);
  border-color: rgba(217, 255, 99, 0.2);
  color: var(--accent);
}

/* Glassmorphism card template */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow-strong);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* --------------------------------------------------
   NAVBAR
-------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 22, 35, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.header-scrolled {
  padding: 12px 0;
  background: rgba(8, 22, 35, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

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

.header-scrolled .nav-container {
  height: 60px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo span {
  font-weight: 400;
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-menu {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.8rem;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.85rem;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 6px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 20px;
  justify-content: space-between;
  z-index: 101;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Mobile Nav Open State */
.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .badge {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.avatars-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  object-fit: cover;
  margin-right: -12px;
}

.avatar:last-child {
  margin-right: 0;
}

.social-proof-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.social-proof-text strong {
  color: var(--text-primary);
}

.rating-stars {
  color: var(--accent);
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

/* Hero Right Side Visuals (Floating Cards & Apparel) */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central rotating/changing mockup item */
.mockup-item {
  width: 320px;
  height: 380px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5));
  animation: floatApparel 6s ease-in-out infinite;
}

@keyframes floatApparel {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Glow Circle Background */
.glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(217, 255, 99, 0.08) 0%, rgba(22, 51, 75, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

/* Floating Stats/Metrics Overlay Cards */
.floating-card {
  position: absolute;
  padding: 16px 20px;
  min-width: 180px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: floatCard 8s ease-in-out infinite;
}

.floating-card-1 {
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 22%;
  left: -2%;
  animation-delay: -2s;
}

.floating-card-3 {
  top: 45%;
  left: 5%;
  animation-delay: -4s;
}

.floating-card-4 {
  bottom: 10%;
  right: 0;
  animation-delay: -6s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-card .stat-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.floating-card .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Card custom styling elements */
.stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(217, 255, 99, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

/* --------------------------------------------------
   TRUST BAR
-------------------------------------------------- */
.trust-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 48px 0;
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 500;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-metric-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.trust-metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --------------------------------------------------
   SECTION 2 — WHAT YOU LEARN
-------------------------------------------------- */
.section {
  padding: 120px 0;
}

.section-secondary {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.learn-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.learn-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.learn-card:hover .learn-icon-wrap {
  background: rgba(217, 255, 99, 0.1);
  border-color: rgba(217, 255, 99, 0.3);
  box-shadow: 0 0 20px rgba(217, 255, 99, 0.1);
  color: var(--accent-hover);
  transform: scale(1.05);
}

.learn-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.learn-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --------------------------------------------------
   SECTION 3 — FOUNDER STORY
-------------------------------------------------- */
.founder-story {
  overflow: hidden;
}

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

.founder-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 600px;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.founder-image-container:hover .founder-img {
  transform: scale(1.03);
}

.founder-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(8, 22, 35, 0.9) 0%, rgba(8, 22, 35, 0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.founder-image-overlay .founder-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
}

.founder-image-overlay .founder-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.founder-story-content {
  display: flex;
  flex-direction: column;
}

.founder-story-content .badge {
  align-self: flex-start;
  margin-bottom: 24px;
}

.founder-headline {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.founder-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.founder-text p {
  margin-bottom: 20px;
}

.founder-text p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------
   SECTION 4 — RESULTS
-------------------------------------------------- */
.results-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 140px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.results-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results-number {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.results-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
}

/* --------------------------------------------------
   SECTION 5 — COMMUNITY BENEFITS
-------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.benefit-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  line-height: 1;
}

.benefit-card:hover .benefit-num {
  color: var(--accent);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --------------------------------------------------
   SECTION 6 — SUCCESS STORIES
-------------------------------------------------- */
.success-stories {
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  margin-top: 48px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 24px;
}

.carousel-slide {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
}

/* Testimonial Card */
.testimonial-card {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 3px solid var(--accent);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.testimonial-metric-box {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.testimonial-metric {
  flex: 1;
}

.testimonial-metric .metric-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonial-metric .metric-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.author-info .author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.author-info .author-brand {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* --------------------------------------------------
   SECTION 7 — OFFER STACK
-------------------------------------------------- */
.offer-section {
  position: relative;
}

.offer-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.toggle-label.active {
  color: var(--text-primary);
  font-weight: 700;
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  cursor: pointer;
}

.toggle-switch-handle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.toggle-switch.active .toggle-switch-handle {
  left: 31px;
}

.offer-toggle-container .save-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
  background-color: rgba(217, 255, 99, 0.1);
  border: 1px solid rgba(217, 255, 99, 0.2);
  color: var(--accent);
  border-radius: 4px;
  font-weight: 700;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
}

.offer-value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  align-items: flex-start;
}

.value-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(217, 255, 99, 0.1);
  border: 1px solid rgba(217, 255, 99, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.value-item-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-item-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Pricing Card Layout */
.pricing-card {
  padding: 48px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 255, 99, 0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, rgba(16, 38, 58, 0.8) 0%, rgba(8, 22, 35, 0.8) 100%);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(217, 255, 99, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.pricing-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.9;
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-features-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-action {
  width: 100%;
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* --------------------------------------------------
   SECTION 8 — FAQ ACCORDION
-------------------------------------------------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.faq-header-btn {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.faq-header-btn:hover {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

/* Active Open FAQ State */
.faq-item.active {
  background: rgba(16, 38, 58, 0.2);
  border-color: rgba(217, 255, 99, 0.15);
}

.faq-item.active .faq-header-btn {
  color: var(--accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--accent);
}

.faq-item.active .faq-icon::before, .faq-item.active .faq-icon::after {
  background-color: var(--bg-primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --------------------------------------------------
   FINAL CTA
-------------------------------------------------- */
.final-cta {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner {
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 65px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, rgba(8, 22, 35, 0.95) 0%, rgba(22, 51, 75, 0.95) 100%);
}

.cta-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background-color: var(--accent);
  filter: blur(140px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content .badge {
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-link-col h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------
   SCROLL REVEAL ANIMATIONS (JS TRIGGERED)
-------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------
   RESPONSIVE MEDIA QUERIES
-------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 40px;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .burger-btn {
    display: flex;
  }

  .hero-title {
    font-size: 3.2rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-social-proof {
    justify-content: center;
  }
  .hero-visual {
    height: 480px;
  }
  
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .founder-image-container {
    height: 450px;
    order: 2;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .founder-headline {
    font-size: 2.4rem;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .learn-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  .pricing-price-wrap {
    gap: 4px;
  }
  .price-amount {
    font-size: 3rem;
  }
  
  .cta-banner {
    padding: 48px 24px;
  }
  .cta-title {
    font-size: 2.2rem;
  }
}

/* --------------------------------------------------
   HERO BACKGROUND PATHS (KOKONUTD EFFECT)
-------------------------------------------------- */
.hero-background-paths {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-background-paths svg {
  width: 100%;
  height: 100%;
  display: block;
}

.background-path {
  stroke-linecap: round;
  animation: drawPath 35s linear infinite;
}

@keyframes drawPath {
  0% {
    stroke-dashoffset: 4000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
