/* ================================================
   DESIGN SYSTEM — Premium SaaS Dark Mode
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --bg-primary: #050510;
  --bg-secondary: #0a0a1a;
  --bg-card: #111128;
  --bg-card-hover: #16163a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0c0;
  --text-muted: #6b6b8a;
  --accent: #7c3aed;
  --accent-light: #a855f7;
  --accent-glow: rgba(124, 58, 237, 0.4);
  --accent-glow-strong: rgba(124, 58, 237, 0.6);
  --accent-gradient: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
  --accent-gradient-bg: linear-gradient(135deg, #6d28d9 0%, #7c3aed 30%, #9333ea 70%, #a855f7 100%);
  --border-subtle: rgba(124, 58, 237, 0.15);
  --border-card: rgba(255, 255, 255, 0.06);

  /* Spacing */
  --section-padding: 80px 20px;
  --container-max: 1200px;
  --card-radius: 16px;
  --pill-radius: 100px;

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 400ms ease-out;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
  --shadow-glow: 0 0 30px var(--accent-glow), 0 0 60px rgba(124, 58, 237, 0.15);
}

/* ================================================
   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: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ================================================
   ANIMATION SYSTEM
   ================================================ */

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

.reveal-delay-5 {
  transition-delay: 500ms;
}

/* Slide from left/right */
.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Badge glow pulse */
@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.2), 0 0 20px rgba(124, 58, 237, 0.05);
  }

  50% {
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.2);
  }
}

/* Gradient shift for SEMANAS */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Phone float */
@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Cart pulse */
@keyframes cartPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* Button add feedback */
@keyframes addFeedback {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(0.93);
  }

  60% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

/* Hero headline load animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tap feedback */
.tap-active {
  transform: scale(0.97) !important;
  transition: transform var(--transition-fast) !important;
}

/* ================================================
   SECTION 1 — HERO
   ================================================ */
.hero {
  padding: 60px 20px 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
    var(--bg-primary);
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--pill-radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  animation: fadeInUp 600ms ease-out both;
  transition: background var(--transition-base), border-color var(--transition-base);
  cursor: default;
  margin-bottom: 32px;
}

.hero-badge:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.hero-badge.glow {
  animation: glowPulse 1.5s ease-in-out;
}

.hero-badge .badge-icon {
  font-size: 1rem;
}

/* Headline */
.hero-text {
  max-width: 800px;
  animation: fadeInUp 700ms ease-out 100ms both;
}

.hero-headline {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.hero-headline .gradient-word {
  background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc, #7c3aed);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 700ms ease-out 200ms both;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 700ms ease-out 300ms both;
}

.btn {
  padding: 14px 32px;
  border-radius: var(--pill-radius);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--accent-light);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-accent {
  background: var(--accent);
  color: white;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-dark {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

/* Feature badges */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px 40px;
  justify-content: center;
  animation: fadeInUp 700ms ease-out 400ms both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-base);
  cursor: default;
}

.hero-feature:hover {
  color: var(--text-secondary);
}

.hero-feature .feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.hero-feature:hover .feature-icon {
  border-color: var(--accent-light);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ================================================
   3D PHONE MOCKUP
   ================================================ */
.phone-mockup-wrapper {
  width: 80%;
  max-width: 320px;
  animation: fadeInUp 800ms ease-out 500ms both;
}

.phone-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 18;
  background: #111;
  border-radius: 36px;
  border: 3px solid #2a2a40;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(124, 58, 237, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: phoneFloat 6s ease-in-out infinite;
}

/* Phone notch */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

/* Phone screen content */
.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0f0f1e;
  display: flex;
  flex-direction: column;
}

.phone-header {
  padding: 32px 16px 12px;
  background: #0f0f1e;
  position: sticky;
  top: 0;
  z-index: 5;
}

.phone-header-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.phone-search {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.65rem;
}

.phone-scroll-content {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.phone-scroll-inner {
  padding: 8px 16px 100px;
  will-change: transform;
}

/* Category pills */
.phone-categories {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}

.phone-cat-pill {
  padding: 5px 12px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--accent-light);
  white-space: nowrap;
}

.phone-cat-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Restaurant card */
.phone-restaurant {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.phone-restaurant-img {
  height: 70px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Restaurant banner overlay with name + tag */
.restaurant-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 6px 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
  gap: 1px;
}

.restaurant-emoji {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 1.6rem;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.restaurant-banner-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.restaurant-banner-tag {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.phone-restaurant-info {
  padding: 8px 10px;
}

.phone-restaurant-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.phone-restaurant-meta {
  font-size: 0.55rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

/* Product card */
.phone-product {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
}

.phone-product-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-product-info {
  flex: 1;
  min-width: 0;
}

.phone-product-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1px;
}

.phone-product-restaurant {
  font-size: 0.5rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.phone-product-price {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-light);
}

.phone-add-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  padding: 0;
}

.phone-add-btn:hover {
  background: var(--accent-light);
}

.phone-add-btn.clicked {
  animation: addFeedback 300ms ease-out;
}

/* Cart floating */
.phone-cart {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  background: var(--accent);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.phone-cart-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-cart-icon {
  font-size: 1rem;
  position: relative;
}

.phone-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 0.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.phone-cart-badge.pulse {
  animation: cartPulse 300ms ease-out;
}

.phone-cart-text {
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
}

.phone-cart-total {
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}

/* Section separator label */
.phone-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 12px 0 8px;
}

/* ================================================
   SECTION 2 — COMPARISON
   ================================================ */
.comparison {
  padding: var(--section-padding);
  background: var(--accent-gradient-bg);
  position: relative;
  overflow: hidden;
}

.comparison::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.comparison .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.comparison-heading {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 16px;
}

.comparison-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.comparison-col {
  padding: 32px 28px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.comparison-col:hover {
  transform: translateY(-2px);
}

.comparison-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.comparison-left {
  background: rgba(240, 240, 248, 1);
  border-right: none;
}

.comparison-left .comparison-col-title {
  color: #555;
}

.comparison-right {
  background: white;
  position: relative;
}

.comparison-right .comparison-col-title {
  color: var(--accent);
}

.comparison-right:hover {
  box-shadow: 0 0 30px var(--accent-glow);
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9rem;
  color: #333;
}

.comparison-item .item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.comparison-left .item-icon {
  color: #aaa;
  border: 1.5px solid #ddd;
}

.comparison-right .item-icon {
  color: var(--accent);
  border: 1.5px solid var(--accent);
  background: rgba(124, 58, 237, 0.05);
}

.comparison-cta {
  margin-top: 24px;
}

.btn-comparison {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.btn-comparison:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

/* ================================================
   SECTION 3 — SOLUTIONS
   ================================================ */
.solutions {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.solutions .container {
  text-align: center;
}

.section-heading {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  transition: all var(--transition-base);
  cursor: default;
}

.solution-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-subtle);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.solution-card.highlighted {
  background: var(--accent-gradient-bg);
  border-color: transparent;
}

.solution-card.highlighted:hover {
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.35);
  border-color: transparent;
}

.solution-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: box-shadow var(--transition-base);
}

.solution-card:hover .solution-icon {
  box-shadow: 0 0 20px var(--accent-glow);
}

.solution-card.highlighted .solution-icon {
  background: rgba(255, 255, 255, 0.2);
}

.solution-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.solution-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.solution-card.highlighted .solution-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* ================================================
   SECTION 4 — PROCESS / TIMELINE
   ================================================ */
.process {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.process .container {
  text-align: center;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  margin-top: 48px;
  align-items: center;
}

/* Vertical line for mobile */
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(124, 58, 237, 0.2));
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  position: relative;
  width: 100%;
  padding-left: 0;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 1;
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.timeline-step:hover .timeline-icon {
  box-shadow: 0 0 20px var(--accent-glow);
  background: rgba(124, 58, 237, 0.1);
}

.timeline-content {
  padding-top: 4px;
}

.timeline-label {
  font-size: 0.75rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 180px;
}

/* ================================================
   SECTION 5 — CTA / FOOTER
   ================================================ */
.final-cta {
  padding: 80px 20px 40px;
  background: var(--bg-primary);
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--accent-gradient-bg);
  border-radius: 28px;
  padding: 60px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-headline {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-note {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.footer {
  padding: 32px 20px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ================================================
   DESKTOP BREAKPOINTS
   ================================================ */
@media (min-width: 768px) {
  .hero .container {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
  }

  .phone-mockup-wrapper {
    flex: 0 0 auto;
    width: 280px;
    max-width: 280px;
  }

  .hero-content {
    flex: 1;
    max-width: 55%;
  }

  .comparison-card {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-left {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Timeline horizontal */
  .timeline {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .timeline::before {
    left: 24px;
    right: 24px;
    top: 24px;
    bottom: auto;
    height: 2px;
    width: auto;
    background: linear-gradient(to right, var(--accent), rgba(124, 58, 237, 0.2));
  }

  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
  }

  .timeline-desc {
    max-width: 160px;
  }
}

@media (min-width: 1024px) {
  .phone-mockup-wrapper {
    width: 320px;
    max-width: 320px;
  }

  .hero {
    padding: 80px 20px;
  }
}

/* ================================================
   ACCESSIBILITY
   ================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

/* Print */
@media print {
  .phone-mockup-wrapper {
    display: none;
  }

  .hero {
    min-height: auto;
  }
}