/* ============================================
   resurface LANDING PAGE
   A warm, literary aesthetic with rich amber tones
   ============================================ */

/* CSS Variables */
:root {
  /* Colors - Warm amber/gold palette inspired by candlelight reading */
  --color-bg: #0C0A09;
  --color-bg-elevated: #1C1917;
  --color-bg-card: #292524;
  --color-surface: #1C1917;

  --color-amber-50: #FFFBEB;
  --color-amber-100: #FEF3C7;
  --color-amber-200: #FDE68A;
  --color-amber-300: #FCD34D;
  --color-amber-400: #FBBF24;
  --color-amber-500: #F59E0B;
  --color-amber-600: #D97706;
  --color-amber-700: #B45309;

  --color-gold: #D4A574;
  --color-gold-light: #E8C9A4;
  --color-gold-dark: #A67C52;

  --color-text-primary: #FAFAF9;
  --color-text-secondary: #A8A29E;
  --color-text-tertiary: #78716C;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Landing page container - override application layout */
.landing-page {
  position: relative;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -7rem;
  padding-top: 0;
}

/* Ambient Background Effects */
.ambient-glow {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(180, 83, 9, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(to bottom, rgba(12, 10, 9, 0.95) 0%, rgba(12, 10, 9, 0) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition-fast);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  border: 1px solid var(--color-gold-dark);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav {
    padding: var(--space-md) var(--space-md);
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .nav-logo-icon {
    width: 24px;
    height: 24px;
  }

  .nav-cta {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-xl);
  padding-top: calc(var(--space-5xl) + 80px);
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
  opacity: 0;
}

.title-line:nth-child(1) { --i: 1; }
.title-line:nth-child(2) { --i: 2; }
.title-line:nth-child(3) { --i: 3; }

.title-accent {
  color: var(--color-gold);
  font-style: italic;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow:
    0 0 0 1px rgba(212, 165, 116, 0.3),
    0 4px 16px rgba(212, 165, 116, 0.25),
    0 8px 32px rgba(212, 165, 116, 0.15);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(212, 165, 116, 0.4),
    0 8px 24px rgba(212, 165, 116, 0.3),
    0 16px 48px rgba(212, 165, 116, 0.2);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-bg-card);
}

.btn-ghost:hover {
  color: var(--color-text-primary);
  border-color: var(--color-text-tertiary);
  background: var(--color-bg-elevated);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.05rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-card), transparent);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

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

/* Phone Mockup */
.phone-mockup {
  position: relative;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 600px;
  background: var(--color-bg);
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 8px rgba(28, 25, 23, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--color-bg);
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0C0A09 0%, #1C1917 100%);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* App UI inside phone */
.app-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
}

.app-logo {
  width: 24px;
  height: 24px;
}

.app-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gold);
}

.app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.highlight-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  width: 100%;
  margin-bottom: var(--space-lg);
}

.highlight-quote-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0.6;
}

.highlight-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.highlight-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-book {
  font-size: 0.75rem;
  color: var(--color-gold);
  font-weight: 500;
}

.highlight-author {
  font-size: 0.7rem;
  color: var(--color-text-tertiary);
}

.app-actions {
  display: flex;
  gap: var(--space-md);
  width: 100%;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
}

.action-btn svg {
  width: 18px;
  height: 18px;
}

.action-next {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* App Navigation */
.app-nav {
  display: flex;
  justify-content: space-around;
  padding: var(--space-md) var(--space-lg);
  padding-bottom: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
  flex-shrink: 0;
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-text-tertiary);
  font-size: 0.65rem;
}

.app-nav-item svg {
  width: 20px;
  height: 20px;
}

.app-nav-item.active {
  color: var(--color-gold);
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.card-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 50%;
  color: var(--color-gold);
}

.card-icon svg {
  width: 14px;
  height: 14px;
}

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

.card-2 {
  bottom: 30%;
  left: -30px;
  animation-delay: -2s;
}

.card-3 {
  bottom: 15%;
  right: -10px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Mobile Hero */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--space-3xl) + 80px);
    min-height: auto;
    gap: var(--space-2xl);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: var(--space-lg);
  }

  .phone-frame {
    width: 220px;
    height: 460px;
    border-radius: 36px;
    padding: 8px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .phone-notch {
    width: 80px;
    height: 24px;
    top: 12px;
  }

  .app-header {
    padding: var(--space-2xl) var(--space-md) var(--space-sm);
  }

  .app-logo {
    width: 20px;
    height: 20px;
  }

  .app-title {
    font-size: 1rem;
  }

  .app-content {
    padding: var(--space-md);
  }

  .highlight-card {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .highlight-quote-icon {
    width: 24px;
    height: 24px;
    margin-bottom: var(--space-sm);
  }

  .highlight-text {
    font-size: 0.8rem;
    margin-bottom: var(--space-sm);
  }

  .highlight-book {
    font-size: 0.65rem;
  }

  .highlight-author {
    font-size: 0.6rem;
  }

  .app-actions {
    gap: var(--space-sm);
  }

  .action-btn {
    padding: var(--space-sm);
    font-size: 0.7rem;
  }

  .action-btn svg {
    width: 14px;
    height: 14px;
  }

  .app-nav {
    padding: var(--space-sm) var(--space-md);
    padding-bottom: var(--space-md);
  }

  .app-nav-item {
    font-size: 0.55rem;
  }

  .app-nav-item svg {
    width: 16px;
    height: 16px;
  }

  .floating-cards {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    padding: var(--space-md);
    padding-top: calc(var(--space-2xl) + 70px);
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
  }

  .hero-actions {
    margin-bottom: var(--space-xl);
  }

  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.85rem;
  }

  .btn-icon {
    width: 16px;
    height: 16px;
  }

  .hero-stats {
    gap: var(--space-md);
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .stat-divider {
    height: 30px;
  }

  .phone-frame {
    width: 200px;
    height: 420px;
    border-radius: 32px;
  }

  .phone-screen {
    border-radius: 26px;
  }
}

/* ============================================
   VALUE SECTION
   ============================================ */
.value-section {
  position: relative;
  z-index: 2;
  padding: var(--space-5xl) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.section-title em {
  color: var(--color-gold);
  font-style: italic;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card {
  padding: var(--space-2xl);
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.value-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps-section {
  position: relative;
  z-index: 2;
  padding: var(--space-5xl) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
}

.step:nth-child(even) {
  direction: rtl;
}

.step:nth-child(even) > * {
  direction: ltr;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--color-gold-dark);
  line-height: 1;
  opacity: 0.6;
}

.step-content {
  max-width: 400px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.step-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.step-visual {
  width: 280px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-illustration {
  width: 100%;
  height: 100%;
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

/* Sync Illustration */
.sync-illustration {
  gap: var(--space-lg);
}

.sync-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
}

.sync-dots {
  display: flex;
  gap: var(--space-sm);
}

.sync-dots span {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: syncPulse 1.5s ease-in-out infinite;
}

.sync-dots span:nth-child(2) { animation-delay: 0.2s; }
.sync-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes syncPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

/* Books Illustration */
.books-illustration {
  flex-direction: column;
  gap: var(--space-md);
}

.book-stack {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-end;
}

.book {
  width: 20px;
  height: 60px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
}

.book-1 { height: 50px; }
.book-2 { height: 65px; }
.book-3 { height: 55px; }

.highlight-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.count-label {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
}

/* Review Illustration */
.review-illustration {
  flex-direction: column;
  gap: var(--space-md);
}

.review-card {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
}

.review-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
  opacity: 0.5;
  line-height: 1;
}

.review-lines {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.review-lines span {
  height: 8px;
  background: var(--color-text-tertiary);
  border-radius: 4px;
  opacity: 0.3;
}

.review-lines span:nth-child(1) { width: 100%; }
.review-lines span:nth-child(2) { width: 85%; }
.review-lines span:nth-child(3) { width: 60%; }

.review-actions {
  display: flex;
  gap: var(--space-sm);
}

.review-btn {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 500;
}

.review-btn.skip {
  background: var(--color-bg-card);
  color: var(--color-text-tertiary);
}

.review-btn.favorite {
  background: var(--color-gold);
  color: var(--color-bg);
}

@media (max-width: 900px) {
  .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .step:nth-child(even) {
    direction: ltr;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .step-content {
    max-width: 100%;
  }

  .step-visual {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  position: relative;
  z-index: 2;
  padding: var(--space-5xl) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial {
  padding: var(--space-2xl);
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.15);
}

.testimonial-featured {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), transparent);
  border-color: rgba(212, 165, 116, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.author-role {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  z-index: 2;
  padding: var(--space-5xl) var(--space-xl);
}

.cta-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-4xl);
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .cta-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .cta-container {
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
  }

  .cta-glow {
    width: 280px;
    height: 150px;
  }
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.2), transparent 70%);
  pointer-events: none;
}

.cta-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  position: relative;
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

.cta-section .btn {
  position: relative;
}

.cta-note {
  position: relative;
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
  margin-top: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4xl);
  /*margin-bottom: var(--space-3xl);*/
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-tertiary);
}

.footer-links {
  display: flex;
  gap: var(--space-4xl);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-column h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.footer-column a {
  font-size: 0.9rem;
  color: var(--color-text-tertiary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-text-primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border-radius: 50%;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-links {
    gap: var(--space-2xl);
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}
