/* ============================================================
   TEMPO — Landing Page Design System
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --color-primary: #fe5d39;
  --color-primary-light: #ff8a6a;
  --color-primary-dark: #e04a28;
  --color-secondary: #7b61ff;
  --color-secondary-light: #a18aff;
  --color-accent-green: #34c759;
  --color-accent-yellow: #f5c542;

  /* Neutrals */
  --color-bg: #faf9f7;
  --color-bg-alt: #f3f1ed;
  --color-surface: #ffffff;
  --color-text: #1a1a2e;
  --color-text-secondary: #6b7280;
  --color-text-muted: #9ca3af;
  --color-border: rgba(0, 0, 0, 0.06);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #fe5d39 0%, #ff8a6a 100%);
  --gradient-secondary: linear-gradient(135deg, #7b61ff 0%, #a18aff 100%);
  --gradient-hero-bg: radial-gradient(ellipse at 50% 0%, rgba(254, 93, 57, 0.08) 0%, transparent 60%),
                      radial-gradient(ellipse at 80% 50%, rgba(123, 97, 255, 0.06) 0%, transparent 50%);
  --gradient-features-bg: radial-gradient(ellipse at 20% 80%, rgba(123, 97, 255, 0.06) 0%, transparent 50%),
                          radial-gradient(ellipse at 80% 20%, rgba(254, 93, 57, 0.05) 0%, transparent 50%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.10), 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-phone: 0 30px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-glow-primary: 0 0 40px rgba(254, 93, 57, 0.25);
  --shadow-glow-secondary: 0 0 40px rgba(123, 97, 255, 0.20);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

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

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

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

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250, 249, 247, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background: rgba(250, 249, 247, 0.92);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 800;
  font-size: var(--font-size-xl);
  color: var(--color-text);
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(254, 93, 57, 0.3);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: var(--space-2) var(--space-5);
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-primary);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: var(--space-2);
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--gradient-hero-bg);
  position: relative;
  overflow: hidden;
}

/* Animated background blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(254, 93, 57, 0.1);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(123, 97, 255, 0.08);
  bottom: -5%;
  left: -5%;
  animation-delay: -3s;
}

.hero__blob--3 {
  width: 300px;
  height: 300px;
  background: rgba(254, 93, 57, 0.06);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(254, 93, 57, 0.08);
  border: 1px solid rgba(254, 93, 57, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254, 93, 57, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(254, 93, 57, 0); }
}

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.hero__title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-text);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.1);
}

.btn__icon {
  font-size: 20px;
  display: flex;
  align-items: center;
}

.btn__text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn__label {
  font-size: var(--font-size-xs);
  font-weight: 400;
  opacity: 0.7;
}

.btn__store {
  font-weight: 700;
  font-size: var(--font-size-sm);
}

.hero__stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-12);
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-text);
}

.hero__stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ---------- Phone Mockup ---------- */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background: var(--color-surface);
  border-radius: 40px;
  border: 6px solid #1a1a2e;
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

/* Notch */
.phone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

/* Phone screen content */
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 42px 20px 20px;
  position: relative;
  overflow: hidden;
}

.phone-screen__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.phone-screen__mode {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(254, 93, 57, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.phone-screen__timer {
  font-size: 52px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

/* Progress ring */
.phone-screen__ring {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 16px;
}

.phone-screen__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.phone-screen__ring .ring-bg {
  fill: none;
  stroke: #e8e5e0;
  stroke-width: 6;
}

.phone-screen__ring .ring-progress {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  animation: ringFill 3s ease-out forwards;
  animation-delay: 1s;
}

@keyframes ringFill {
  to { stroke-dashoffset: 110; }
}

/* Plant inside ring */
.phone-screen__plant {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  animation: plantGrow 2s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes plantGrow {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  60% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Tomato indicators */
.phone-screen__tomatoes {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.phone-screen__tomato {
  font-size: 18px;
  transition: opacity var(--transition-base);
}

.phone-screen__tomato--faded {
  opacity: 0.35;
}

.phone-screen__status {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

/* Phone button */
.phone-screen__btn {
  padding: 10px 32px;
  background: var(--color-accent-yellow);
  color: var(--color-text);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

/* Floating elements around phone */
.hero__floating {
  position: absolute;
  animation: floatGentle 5s ease-in-out infinite;
  pointer-events: none;
}

.hero__floating--1 {
  top: 5%;
  right: 10%;
  animation-delay: 0s;
}

.hero__floating--2 {
  bottom: 15%;
  left: 5%;
  animation-delay: -2s;
}

.hero__floating--3 {
  top: 40%;
  right: 0%;
  animation-delay: -4s;
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

.floating-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--color-border);
}

.floating-card__icon {
  font-size: 18px;
}

.floating-card__value {
  color: var(--color-primary);
  font-weight: 700;
}

.floating-card__value--purple {
  color: var(--color-secondary);
}

.floating-card__value--green {
  color: var(--color-accent-green);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  padding: var(--space-32) 0;
  background: var(--gradient-features-bg);
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-16);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.section__title {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(254, 93, 57, 0.15);
}

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

.feature-card:nth-child(2):hover {
  border-color: rgba(123, 97, 255, 0.15);
}

.feature-card:nth-child(2)::before {
  background: var(--gradient-secondary);
}

.feature-card:nth-child(3):hover {
  border-color: rgba(52, 199, 89, 0.15);
}

.feature-card:nth-child(3)::before {
  background: linear-gradient(135deg, #34c759, #5ee27d);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: var(--space-6);
}

.feature-card__icon--timer {
  background: rgba(254, 93, 57, 0.1);
}

.feature-card__icon--stats {
  background: rgba(123, 97, 255, 0.1);
}

.feature-card__icon--achievements {
  background: rgba(52, 199, 89, 0.1);
}

.feature-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.feature-card__desc {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* Mini UI representation inside feature cards */
.feature-card__preview {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
}

/* Timer preview mini */
.mini-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.mini-timer__display {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
}

.mini-timer__bar {
  width: 100%;
  height: 6px;
  background: #e8e5e0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.mini-timer__progress {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  animation: timerProgress 4s ease-in-out infinite;
}

@keyframes timerProgress {
  0% { width: 0%; }
  50% { width: 75%; }
  100% { width: 0%; }
}

.mini-timer__tomatoes {
  display: flex;
  gap: 4px;
  font-size: 14px;
}

/* Stats preview mini */
.mini-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mini-stats__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-sm);
}

.mini-stats__label {
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.mini-stats__value {
  font-weight: 700;
  color: var(--color-primary);
}

.mini-stats__value--purple {
  color: var(--color-secondary);
}

.mini-stats__chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: var(--space-2);
}

.mini-stats__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  animation: barGrow 2s ease-out forwards;
  opacity: 0;
}

@keyframes barGrow {
  0% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
  100% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

/* Achievements preview mini */
.mini-achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.mini-achievement {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  border: 1px solid var(--color-border);
}

.mini-achievement__icon {
  font-size: 16px;
}

.mini-achievement__xp {
  font-weight: 700;
  color: var(--color-accent-green);
  margin-left: auto;
  font-size: 10px;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-it-works {
  padding: var(--space-32) 0;
  background: var(--color-bg);
}

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

/* Connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent-green));
  border-radius: var(--radius-full);
  opacity: 0.2;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 800;
  margin: 0 auto var(--space-6);
  position: relative;
  z-index: 1;
}

.step:nth-child(1) .step__number {
  background: rgba(254, 93, 57, 0.1);
  color: var(--color-primary);
}

.step:nth-child(2) .step__number {
  background: rgba(123, 97, 255, 0.1);
  color: var(--color-secondary);
}

.step:nth-child(3) .step__number {
  background: rgba(52, 199, 89, 0.1);
  color: var(--color-accent-green);
}

.step__icon {
  font-size: 36px;
  margin-bottom: var(--space-4);
}

.step__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.step__desc {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  padding: var(--space-24) 0 var(--space-32);
}

.cta__card {
  background: var(--color-text);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(254, 93, 57, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(123, 97, 255, 0.1) 0%, transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5%, -5%); }
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__emoji {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin: 0 auto var(--space-6);
  display: block;
}

.cta__title {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.cta__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-10);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn--cta {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(254, 93, 57, 0.35);
}

.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(254, 93, 57, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.footer__name {
  font-weight: 700;
  font-size: var(--font-size-base);
}

.footer__copy {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.footer__links {
  display: flex;
  gap: var(--space-6);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.75rem;
    --font-size-4xl: 2rem;
  }

  .hero__inner {
    gap: var(--space-10);
  }

  .phone-mockup {
    width: 240px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-6);
    gap: var(--space-4);
    border-bottom: 1px solid var(--color-border);
    animation: menuSlide 0.3s ease-out;
  }

  @keyframes menuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
    padding-top: var(--space-12);
  }

  .hero__content {
    max-width: 100%;
  }

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

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .phone-mockup {
    width: 220px;
    height: 460px;
  }

  .hero__floating {
    display: none;
  }

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

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

  .steps::before {
    display: none;
  }

  .cta__card {
    padding: var(--space-10) var(--space-6);
  }

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

@media (max-width: 480px) {
  :root {
    --font-size-5xl: 1.875rem;
    --font-size-4xl: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
}
