/* ============================================================
   CoreRun Landing Page — Premium Design System
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette */
  --cr-orange: #FF6B35;
  --cr-orange-light: #FF8F5E;
  --cr-orange-dark: #E55A25;
  --cr-gold: #FFB347;
  --cr-navy: #1B2838;
  --cr-navy-light: #243447;
  --cr-navy-dark: #0F1923;
  --cr-green: #00C9A7;
  --cr-green-light: #33D4B8;

  /* Theme Accents */
  --cr-isha-purple: #611099;
  --cr-isha-gold: #E8B24F;
  --cr-aha-blue: #1070E8;
  --cr-aha-violet: #8720E0;

  /* Neutral */
  --bg-dark: #0A0E14;
  --bg-section: #0F1520;
  --bg-card: rgba(27, 40, 56, 0.6);
  --bg-glass: rgba(27, 40, 56, 0.4);
  --border-glass: rgba(255, 107, 53, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-primary: #F8F9FA;
  --text-secondary: rgba(248, 249, 250, 0.7);
  --text-muted: rgba(248, 249, 250, 0.45);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow: 0 0 60px rgba(255, 107, 53, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.heading-display {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.heading-xl {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
}

.heading-lg {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.heading-md {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

.text-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.text-md {
  font-size: 1rem;
  line-height: 1.6;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-gradient {
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--cr-green), var(--cr-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.section-padding {
  padding: var(--space-5xl) 0;
}

.section-padding-sm {
  padding: var(--space-4xl) 0;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children>* {
  transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

/* ---------- Keyframe Animations ---------- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
  }

  50% {
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.4);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes count-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-smooth);
  padding: 0 var(--space-lg);
}

.navbar.scrolled {
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  z-index: 1001;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cr-orange), var(--cr-gold));
  border-radius: 1px;
  transition: width var(--transition-smooth);
}

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

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

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-orange-dark));
  color: white !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 201, 167, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--cr-orange);
  top: -150px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--cr-green);
  bottom: -100px;
  left: -100px;
  animation: float 20s ease-in-out infinite reverse;
  opacity: 0.15;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--cr-gold);
  top: 40%;
  left: 30%;
  animation: float 18s ease-in-out infinite 3s;
  opacity: 0.08;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fade-in-up 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cr-orange-light);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cr-green);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  min-width: 180px;
}

.store-btn-primary {
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-orange-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.store-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 107, 53, 0.5);
}

.store-btn-secondary {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.store-btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--cr-orange);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.store-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn-label {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-btn-store {
  font-size: 1rem;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
}

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fade-in-up 1s ease-out 0.3s backwards;
}

.hero-phone {
  width: 100%;
  max-width: 420px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  border-radius: var(--radius-2xl);
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: -1;
}

/* ---------- Social Proof Bar ---------- */
.social-proof {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.social-proof .container {
  display: flex;
  justify-content: center;
  gap: var(--space-4xl);
  flex-wrap: wrap;
}

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

.proof-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.proof-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cr-orange);
  margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cr-orange));
}

.section-label::after {
  background: linear-gradient(90deg, var(--cr-orange), transparent);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-description {
  color: var(--text-secondary);
}

/* ---------- Features Section ---------- */
.features {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cr-orange), var(--cr-gold));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass);
  box-shadow: var(--shadow-glow);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

.feature-icon-orange {
  background: rgba(255, 107, 53, 0.12);
}

.feature-icon-green {
  background: rgba(0, 201, 167, 0.12);
}

.feature-icon-gold {
  background: rgba(255, 179, 71, 0.12);
}

.feature-icon-purple {
  background: rgba(97, 16, 153, 0.12);
}

.feature-icon-blue {
  background: rgba(16, 112, 232, 0.12);
}

.feature-icon-teal {
  background: rgba(0, 188, 212, 0.13);
}

/* Highlight variant — draws attention to the most impactful feature card */
.feature-card-highlight {
  border-color: rgba(0, 188, 212, 0.28);
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.06) 0%, var(--bg-card) 60%);
}

.feature-card-highlight::before {
  background: linear-gradient(90deg, #00bcd4, #00e5ff, #26c6da);
  opacity: 1 !important;
}

.feature-card-highlight:hover {
  border-color: rgba(0, 188, 212, 0.5);
  box-shadow: 0 8px 40px rgba(0, 188, 212, 0.18), var(--shadow-glow);
}

.feature-card-highlight .feature-tag {
  background: rgba(0, 188, 212, 0.1);
  border-color: rgba(0, 188, 212, 0.2);
  color: #4dd0e1;
}

/* AI badge pill — sits above the card title */
.feature-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(102, 51, 255, 0.18), rgba(0, 188, 212, 0.15));
  border: 1px solid rgba(102, 51, 255, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a78bfa;
  box-shadow: 0 0 12px rgba(102, 51, 255, 0.15);
}

.ai-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #a78bfa, #6633ff);
  animation: pulse-glow 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* AI-specific feature tag — glows purple/violet to stand out */
.feature-tag-ai {
  background: linear-gradient(135deg, rgba(102, 51, 255, 0.15), rgba(0, 188, 212, 0.1)) !important;
  border-color: rgba(102, 51, 255, 0.3) !important;
  color: #c4b5fd !important;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(102, 51, 255, 0.1);
}


.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.feature-tag {
  padding: 4px 12px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cr-orange-light);
}

/* ---------- Screenshots Gallery ---------- */
.screenshots-gallery {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.screenshot-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

.screenshot-scroll::-webkit-scrollbar {
  display: none;
}

.screenshot-track {
  display: flex;
  gap: var(--space-lg);
  padding: 0 var(--space-lg);
  width: max-content;
}

.screenshot-item {
  flex-shrink: 0;
  width: 280px;
  text-align: center;
  transition: transform var(--transition-smooth);
}

.screenshot-item:hover {
  transform: translateY(-8px);
}

.screenshot-item img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 53, 0.08);
  border: 1px solid var(--border-subtle);
  transition: box-shadow var(--transition-smooth);
}

.screenshot-item:hover img {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.15);
}

.screenshot-label {
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .screenshot-item {
    width: 220px;
  }
}

/* ---------- Mockup Cards (App Store Style) ---------- */
.mockup-card {
  flex-shrink: 0;
  width: 300px;
  min-height: 540px;
  border-radius: 28px;
  padding: 32px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.mockup-orange { background: linear-gradient(165deg, #FF6B35 0%, #E8450E 40%, #1B2838 100%); }
.mockup-navy { background: linear-gradient(165deg, #1B2838 0%, #0F1923 50%, #FF6B35 100%); }
.mockup-purple { background: linear-gradient(165deg, #8B5CF6 0%, #6D28D9 40%, #1B2838 100%); }
.mockup-blue { background: linear-gradient(165deg, #3B82F6 0%, #1D4ED8 40%, #0F1923 100%); }
.mockup-green { background: linear-gradient(165deg, #00C9A7 0%, #059669 40%, #1B2838 100%); }

.mockup-badge-pill {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  color: white;
}

.mockup-headline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: white;
}

.mockup-headline em {
  font-style: normal;
  color: #FFD700;
}

.mockup-subtext {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.4;
  max-width: 260px;
  margin: 0 auto 12px;
  color: white;
}

.mockup-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.mockup-pills span {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.mockup-phone {
  position: relative;
  width: 220px;
  margin-top: auto;
  flex-shrink: 0;
}

.mockup-phone img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Text-only mockup cards (no phone screenshot) */
.mockup-text-only {
  justify-content: flex-start;
  padding-bottom: 32px;
  min-height: auto;
}

.mockup-text-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  width: 100%;
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-text-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.mockup-text-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .mockup-card {
    width: 260px;
    min-height: 460px;
    padding: 24px 18px 0;
  }
  .mockup-phone {
    width: 180px;
  }
  .mockup-headline {
    font-size: 1.25rem;
  }
  .mockup-text-only {
    padding-bottom: 24px;
  }
  .mockup-text-feature {
    font-size: 0.72rem;
  }
}

/* ---------- Screenshot Gallery Grid (Full Mockup Images) ---------- */
.screenshot-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-mockup-img {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-mockup-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.15);
}

.screenshot-mockup-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .screenshot-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .screenshot-gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 320px;
  }
}

/* ---------- Widget Showcase Grid ---------- */
.widget-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.widget-demo {
  border-radius: 22px;
  padding: 20px;
  position: relative;
  color: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.widget-demo-large {
  min-height: 280px;
}

.widget-demo-medium {
  min-height: 200px;
}

.widget-demo-small {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.widget-bg-navy {
  background: linear-gradient(145deg, #1B2838 0%, #0F1923 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-bg-orange {
  background: linear-gradient(145deg, #FF6B35 0%, #E8450E 100%);
}

.widget-bg-green {
  background: linear-gradient(145deg, #00C9A7 0%, #059669 100%);
}

.widget-bg-dark {
  background: linear-gradient(145deg, #1B2838 0%, #243447 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-demo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.widget-demo-icon {
  font-size: 1.1rem;
}

.widget-demo-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
}

.widget-demo-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-habit-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  opacity: 0.85;
}

.widget-check {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.widget-check.done {
  background: rgba(0, 201, 167, 0.3);
  color: #00C9A7;
}

.widget-check:not(.done) {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.5rem;
}

.widget-demo-label {
  margin-top: 12px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  text-align: center;
}

.widget-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Streak widget */
.widget-streak-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.widget-streak-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.widget-streak-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* Fasting widget */
.widget-fasting-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.widget-fasting-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.widget-fasting-time {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.widget-fasting-status {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* IBO widget grid */
.widget-ibo-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget-ibo-pillar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.widget-ibo-pillar .pillar-name {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  min-width: 60px;
}

.pillar-dots {
  display: flex;
  gap: 6px;
}

.pillar-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.pillar-dots .dot.done {
  background: #FF6B35;
  border-color: #FF6B35;
}

/* Widget feature descriptions */
.widget-features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: var(--space-2xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.widget-feature-item {
  text-align: center;
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.widget-feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.widget-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

@media (max-width: 768px) {
  .widget-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .widget-stack {
    flex-direction: row;
  }
  .widget-stack .widget-demo-small {
    flex: 1;
  }
  .widget-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ---------- Feature Showcase (Image) ---------- */
.feature-showcase {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

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

.showcase-grid.reverse {
  direction: rtl;
}

.showcase-grid.reverse>* {
  direction: ltr;
}

.showcase-image {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  transition: transform var(--transition-smooth);
}

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

.showcase-content {
  max-width: 500px;
}

.showcase-content .feature-icon {
  width: 64px;
  height: 64px;
  font-size: 2rem;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.showcase-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(0, 201, 167, 0.15);
  color: var(--cr-green);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---------- How It Works ---------- */
.how-it-works {
  background: var(--bg-section);
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--cr-orange), var(--cr-gold), var(--cr-green));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-orange-dark));
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

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

/* ---------- Growth Tracks ---------- */
.growth-tracks {
  background: var(--bg-dark);
  position: relative;
}

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

.track-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.track-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.track-card:hover {
  transform: translateY(-8px);
}

.track-card-ibo {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 179, 71, 0.05));
  border-color: rgba(255, 107, 53, 0.2);
}

.track-card-ibo:hover {
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
}

.track-card-isha {
  background: linear-gradient(135deg, rgba(97, 16, 153, 0.08), rgba(232, 178, 79, 0.05));
  border-color: rgba(97, 16, 153, 0.2);
}

.track-card-isha:hover {
  box-shadow: 0 0 40px rgba(97, 16, 153, 0.15);
}

.track-card-aha {
  background: linear-gradient(135deg, rgba(16, 112, 232, 0.08), rgba(135, 32, 224, 0.05));
  border-color: rgba(16, 112, 232, 0.2);
}

.track-card-aha:hover {
  box-shadow: 0 0 40px rgba(16, 112, 232, 0.15);
}

.track-emoji {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.track-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.track-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.track-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.track-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.track-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* IBO Pillar Grid - 3-column alignment */
.track-features-pillars li {
  display: grid;
  grid-template-columns: 1.5rem auto 1fr;
  gap: 0 var(--space-sm);
  align-items: baseline;
}

.pillar-icon {
  font-size: 1rem;
  line-height: 1.4;
}

.pillar-label {
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.pillar-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.pillar-desc::before {
  content: '— ';
}

/* ---------- Widgets Section ---------- */
.widgets-section {
  background: var(--bg-section);
}

.widgets-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.widgets-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.widgets-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
}

.widgets-content {
  max-width: 500px;
}

.widget-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.widget-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.widget-item:hover {
  border-color: var(--border-glass);
  transform: translateX(8px);
}

.widget-item-icon {
  font-size: 1.5rem;
  min-width: 32px;
}

.widget-item-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.widget-item-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Premium Section ---------- */
.premium {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card.featured {
  border-color: var(--cr-orange);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: '⭐ Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-gold));
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.pricing-plan {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--cr-orange);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li .check {
  color: var(--cr-green);
  font-weight: 700;
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all var(--transition-fast);
  display: block;
}

.pricing-btn-primary {
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-orange-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45);
}

.pricing-btn-secondary {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
}

.pricing-btn-secondary:hover {
  border-color: var(--cr-orange);
  transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg-section);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-smooth);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-md);
}

.testimonial-card {
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  text-align: center;
  backdrop-filter: blur(10px);
}

.testimonial-quote {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--cr-orange);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cr-orange), var(--cr-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.testimonial-dot.active {
  background: var(--cr-orange);
  width: 32px;
  border-radius: 5px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg-dark);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-glass);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  font-family: var(--font-heading);
}

.faq-question:hover {
  color: var(--cr-orange);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr-orange);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--cr-navy-dark), var(--cr-navy));
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(0, 201, 167, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  margin-bottom: var(--space-md);
}

.final-cta-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cr-orange);
}

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--cr-orange);
  border-color: var(--cr-orange);
  color: white;
  transform: translateY(-3px);
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-image {
    order: -1;
  }

  .hero-phone {
    max-width: 320px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .showcase-grid.reverse {
    direction: ltr;
  }

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

  .widgets-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Large phones */
@media (max-width: 768px) {
  :root {
    --space-5xl: 80px;
    --space-4xl: 64px;
    --space-3xl: 48px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 14, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl);
    transition: right var(--transition-smooth);
    gap: var(--space-xl);
    border-left: 1px solid var(--border-subtle);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .steps-grid::before {
    display: none;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .social-proof .container {
    gap: var(--space-2xl);
  }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --space-5xl: 64px;
    --space-4xl: 48px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }

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

  .social-proof .container {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .store-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Ultra-wide */
@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-phone {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--cr-orange);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Print */
@media print {

  .navbar,
  .hero-orb,
  .hero-glow,
  .testimonials-carousel,
  .final-cta {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .feature-card,
  .track-card,
  .pricing-card {
    border: 1px solid #ccc;
    background: white;
  }
}