/* ===== LIFECHANGE — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Unbounded:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --black: #000000;
  --white: #FFFFFF;
  --off-white: #F0F0F0;
  --gray-100: #E5E5E5;
  --gray-200: #CCCCCC;
  --gray-400: #888888;
  --gray-600: #444444;
  --gray-800: #1A1A1A;
  --gray-900: #0D0D0D;
  --neon-magenta: #FF0055;
  --neon-magenta-glow: rgba(255, 0, 85, 0.4);
  --electric-cyan: #00F0FF;
  --electric-cyan-glow: rgba(0, 240, 255, 0.3);
  --lime: #AAFF00;
  --deep-purple: #3B0A23;
  
  /* Typography */
  --font-heading: 'Unbounded', 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 120px 60px;
  --section-padding-mobile: 80px 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-dramatic: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

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

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.loading-text-line {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(0);
  animation: loadingFadeIn 0.3s ease forwards;
}

.loading-text-line:nth-child(1) { animation-delay: 0.1s; }
.loading-text-line:nth-child(2) { animation-delay: 0.2s; }
.loading-text-line:nth-child(3) { animation-delay: 0.3s; }
.loading-text-line:nth-child(4) { animation-delay: 0.4s; }
.loading-text-line:nth-child(5) { animation-delay: 0.5s; }

@keyframes loadingFadeIn {
  to { opacity: 1; }
}

/* Glitch offset phase */
.loading-text-line.glitch-active:nth-child(1) {
  animation: glitchSlide1 0.4s ease forwards;
}
.loading-text-line.glitch-active:nth-child(2) {
  animation: glitchSlide2 0.4s ease forwards;
}
.loading-text-line.glitch-active:nth-child(3) {
  animation: glitchSlide3 0.4s ease forwards;
}
.loading-text-line.glitch-active:nth-child(4) {
  animation: glitchSlide4 0.4s ease forwards;
}
.loading-text-line.glitch-active:nth-child(5) {
  animation: glitchSlide5 0.4s ease forwards;
}

@keyframes glitchSlide1 {
  0% { transform: translateX(0); }
  30% { transform: translateX(-40px); }
  60% { transform: translateX(25px); }
  100% { transform: translateX(-60px); opacity: 0; }
}
@keyframes glitchSlide2 {
  0% { transform: translateX(0); }
  30% { transform: translateX(50px); }
  60% { transform: translateX(-30px); }
  100% { transform: translateX(70px); opacity: 0; }
}
@keyframes glitchSlide3 {
  0% { transform: translateX(0); }
  30% { transform: translateX(-35px); }
  60% { transform: translateX(20px); }
  100% { transform: translateX(-50px); opacity: 0; }
}
@keyframes glitchSlide4 {
  0% { transform: translateX(0); }
  30% { transform: translateX(45px); }
  60% { transform: translateX(-15px); }
  100% { transform: translateX(55px); opacity: 0; }
}
@keyframes glitchSlide5 {
  0% { transform: translateX(0); }
  30% { transform: translateX(-30px); }
  60% { transform: translateX(35px); }
  100% { transform: translateX(-45px); opacity: 0; }
}

/* ===== MAIN CONTENT ===== */
.main-content {
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
}

.main-content.visible {
  opacity: 1;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition-smooth);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-logo span {
  color: var(--neon-magenta);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-magenta);
  transition: width var(--transition-fast);
}

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

.nav-cta {
  padding: 10px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--neon-magenta);
  color: var(--white);
  box-shadow: 0 0 30px var(--neon-magenta-glow);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center bottom, var(--deep-purple) 0%, var(--black) 70%);
}

/* Topographic background lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(ellipse at 30% 50%, rgba(255, 0, 85, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 240, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Rotating word widget */
.rotating-widget {
  position: relative;
  width: 120px;
  height: 120px;
  border: 2px solid var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  overflow: hidden;
  cursor: default;
}

.rotating-widget::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--neon-magenta), var(--electric-cyan));
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: -1;
}

.rotating-widget:hover::before {
  opacity: 1;
}

.widget-word {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  position: absolute;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.widget-word.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.widget-word.exit-up {
  opacity: 0;
  transform: translateY(-30px) scale(0.8);
}

.widget-word.enter-down {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
}

/* Organic blob outline */
.hero-blob {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  pointer-events: none;
  animation: blobMorph 12s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px;
  height: 450px;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-blob-2 {
  width: 650px;
  height: 550px;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -4s;
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%; }
  25% { border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
  50% { border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%; }
  75% { border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%; }
}

/* Collage text - "NOW I WILL CHANGE MY LIFE" */
.collage-text {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.collage-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.collage-letter {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  position: relative;
  color: var(--white);
  text-transform: uppercase;
}

/* Textured letters */
.letter-sky {
  background: url('assets/sky.png') center/cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.letter-grass {
  background: url('assets/grass.png') center/cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.letter-noise {
  background: url('assets/noise.png') center/cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.letter-glitch {
  color: var(--white);
  position: relative;
  animation: rgbShift 3s linear infinite;
}

.letter-glitch::before,
.letter-glitch::after {
  content: attr(data-letter);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.letter-glitch::before {
  color: #FF0000;
  z-index: -1;
  animation: glitchR 2s infinite steps(3);
}

.letter-glitch::after {
  color: #00FFFF;
  z-index: -1;
  animation: glitchC 2.5s infinite steps(3);
}

@keyframes glitchR {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(2px, -1px); }
  25% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 2px); }
  50% { clip-path: inset(50% 0 10% 0); transform: translate(1px, -2px); }
  75% { clip-path: inset(10% 0 40% 0); transform: translate(-2px, 1px); }
}

@keyframes glitchC {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(-2px, 1px); }
  25% { clip-path: inset(40% 0 20% 0); transform: translate(3px, -1px); }
  50% { clip-path: inset(10% 0 50% 0); transform: translate(-1px, 2px); }
  75% { clip-path: inset(60% 0 5% 0); transform: translate(2px, -2px); }
}

@keyframes rgbShift {
  0%, 100% { text-shadow: 2px 0 #FF0055, -2px 0 #00F0FF; }
  50% { text-shadow: -2px 0 #FF0055, 2px 0 #00F0FF; }
}

/* Letter block backgrounds (collage cutout look) */
.letter-block-black {
  background-color: var(--black);
  padding: 4px 2px;
}

.letter-block-white {
  background-color: var(--white);
  color: var(--black) !important;
  -webkit-text-fill-color: var(--black) !important;
  padding: 4px 2px;
}

.letter-block-magenta {
  background-color: var(--neon-magenta);
  padding: 4px 2px;
}

/* Hero subtitle */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--gray-400);
  margin-top: 40px;
  max-width: 500px;
  text-align: center;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--white);
  font-weight: 600;
}

/* Year tag */
.year-tag {
  position: absolute;
  top: 100px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gray-400);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-magenta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 60px;
  max-width: 700px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--neon-magenta), var(--electric-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-container {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 60px rgba(255, 0, 85, 0.1),
    0 0 120px rgba(0, 240, 255, 0.05);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(255, 0, 85, 0.4);
  background: var(--neon-magenta);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--black);
  margin-left: 4px;
  transition: fill var(--transition-fast);
}

.play-btn:hover svg {
  fill: var(--white);
}

.video-placeholder p {
  font-size: 0.85rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: var(--section-padding);
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 0, 85, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-magenta), var(--electric-cyan));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--neon-magenta), var(--electric-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===== STATS / SOCIAL PROOF ===== */
.stats-section {
  padding: 80px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white), var(--gray-200));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== WHAT YOU GET SECTION ===== */
.whatyouget-section {
  padding: var(--section-padding);
  max-width: 1100px;
  margin: 0 auto;
}

.whatyouget-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.whatyouget-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  cursor: default;
}

.whatyouget-item:hover {
  padding-left: 16px;
  border-color: var(--neon-magenta);
}

.whatyouget-item .item-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-magenta);
  margin-right: 32px;
  letter-spacing: 0.1em;
}

.whatyouget-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  flex: 1;
}

.whatyouget-item p {
  font-size: 0.9rem;
  color: var(--gray-400);
  max-width: 300px;
  text-align: right;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--gray-900);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scroll-track 30s linear infinite;
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--neon-magenta);
  background: rgba(255, 0, 85, 0.05);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-200);
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-magenta), var(--electric-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-400);
}

@keyframes scroll-track {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: var(--section-padding);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 240, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(160deg, rgba(255, 0, 85, 0.1), rgba(0, 240, 255, 0.05));
  border-color: var(--neon-magenta);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-magenta), var(--electric-cyan));
}

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--neon-magenta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 24px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card .price sup {
  font-size: 1.5rem;
  vertical-align: top;
  position: relative;
  top: 8px;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--gray-200);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-btn {
  width: 100%;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  display: block;
  transition: all var(--transition-smooth);
}

.pricing-btn.primary {
  background: var(--white);
  color: var(--black);
}

.pricing-btn.primary:hover {
  background: var(--neon-magenta);
  color: var(--white);
  box-shadow: 0 0 40px var(--neon-magenta-glow);
  transform: translateY(-2px);
}

.pricing-btn.featured-btn {
  background: linear-gradient(135deg, var(--neon-magenta), #CC0044);
  color: var(--white);
}

.pricing-btn.featured-btn:hover {
  box-shadow: 0 0 50px var(--neon-magenta-glow);
  transform: translateY(-2px);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-large.btn-magenta {
  background: linear-gradient(135deg, var(--neon-magenta), #CC0044);
  color: var(--white);
}

.btn-large.btn-magenta:hover {
  box-shadow: 0 0 60px var(--neon-magenta-glow);
  transform: translateY(-3px);
}

.btn-large.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-large.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-logo span {
  color: var(--neon-magenta);
}

.footer p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero {
    padding: 120px 20px 60px;
  }
  
  .rotating-widget {
    width: 90px;
    height: 90px;
    margin-bottom: 40px;
  }
  
  .widget-word {
    font-size: 0.7rem;
  }
  
  .collage-letter {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }
  
  .year-tag {
    top: 80px;
    left: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-grid {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 0 0 50%;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .whatyouget-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .whatyouget-item p {
    text-align: left;
    max-width: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .final-cta {
    padding: 80px 24px;
  }
  
  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .collage-letter {
    font-size: clamp(2rem, 15vw, 3.5rem);
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 0.85rem;
  }
}
