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

:root {
  --bg: #F7F8FA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --surface: #FFFFFF;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(249, 115, 22, 0.3);
  --text: #111827;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FB923C;
  --orange-glow: rgba(249, 115, 22, 0.08);
  --orange-glow-strong: rgba(249, 115, 22, 0.15);
  --blue: #3B82F6;
  --blue-glow: rgba(59, 130, 246, 0.08);
  --red: #EF4444;
  --amber: #F59E0B;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(249, 115, 22, 0.1);
}

/* ===== 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:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

@keyframes badge-pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

@keyframes pin-pulse-anim {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s;
}

.btn-glow:hover::after {
  opacity: 0.6;
}

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

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.02);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange-glow);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 14px;
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.15);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
  background: rgba(247, 248, 250, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
  background: rgba(247, 248, 250, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
  color: white;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 10px 20px !important;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  border-radius: 10px;
  color: white !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-dark), transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
  opacity: 0.2;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-light), transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -14s;
  opacity: 0.15;
}

/* Road lines background (instead of dot-grid) */
.road-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(0, 0, 0, 0.02) 79px,
      rgba(0, 0, 0, 0.02) 80px
    );
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

.road-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 18px,
      rgba(0, 0, 0, 0.02) 18px,
      rgba(0, 0, 0, 0.02) 30px,
      transparent 30px,
      transparent 60px
    );
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.4) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.4) 80%, transparent 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.15);
  margin-bottom: 24px;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
}

.stat-suffix {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== PHONE MOCKUP ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 100%;
  max-width: 320px;
  border-radius: 40px;
  overflow: hidden;
  background: #1A1D24;
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  padding: 12px;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 20px 20px;
  margin: -12px auto 12px;
  position: relative;
  z-index: 3;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #0F1219;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}

.app-greeting {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.app-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
}

/* ===== APP MAP ===== */
.app-map {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background: #0C0F16;
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin-user {
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}

.map-pin-user .pin-pulse {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: pin-pulse-anim 2s ease-out infinite;
}

.map-pin-grua-1 {
  top: 28%;
  left: 70%;
  opacity: 0;
  animation: slideInCard 0.5s ease-out 1s forwards;
}

.map-pin-grua-2 {
  top: 68%;
  left: 25%;
  opacity: 0;
  animation: slideInCard 0.5s ease-out 1.3s forwards;
}

/* ===== APP CARD ===== */
.app-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideInCard 0.6s ease-out 1.6s both;
}

.app-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-card-label {
  display: block;
  font-size: 11px;
  color: #6B7280;
  font-weight: 500;
  margin-bottom: 2px;
}

.app-card-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.app-eta {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.eta-time {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.eta-unit {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
}

.app-card-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: #6B7280;
}

.price-amount {
  font-weight: 700;
  color: #FFFFFF;
}

.app-btn {
  width: 100%;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  color: white;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.app-btn:hover {
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.mockup-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-glow-strong), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
}

/* ===== PROBLEMS ===== */
.problems {
  padding: 120px 0;
  position: relative;
  background: #FFFFFF;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.2);
  background: #FEF2F2;
}

.problem-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.08);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
  background: var(--bg);
}

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

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

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.step-number span {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange-glow-strong), transparent);
  z-index: 1;
}

.step:last-child .step-connector {
  display: none;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== FEATURES / SERVICES ===== */
.features {
  padding: 120px 0;
  position: relative;
  background: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--orange-glow);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== OPERATORS ===== */
.operators {
  padding: 120px 0;
  position: relative;
  background: var(--bg);
}

.operators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.operator-benefit {
  padding: 36px;
  border-radius: var(--radius);
  background: #FFFFFF;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.operator-benefit:hover {
  background: #FFFFFF;
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(249, 115, 22, 0.1);
}

.benefit-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

.operator-benefit h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  position: relative;
}

.operator-benefit p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  max-width: 360px;
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
}

.testimonial-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.type-conductor {
  color: white;
  background: var(--orange);
}

.type-operador {
  color: white;
  background: var(--blue);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: normal;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== FINAL CTA ===== */
.cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb-cta-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-dark), transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  filter: blur(100px);
  animation: float 25s ease-in-out infinite;
}

.orb-cta-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  bottom: -100px;
  right: 10%;
  opacity: 0.15;
  filter: blur(80px);
  animation: float 18s ease-in-out infinite reverse;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0A0D14;
  color: #FFFFFF;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: #9CA3AF;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: #9CA3AF;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #9CA3AF;
  transition: color 0.2s;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

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

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

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .operators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(247, 248, 250, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
  }

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

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-connector {
    left: 50%;
    top: auto;
    bottom: -20px;
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--orange-glow-strong), transparent);
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

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

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero {
    padding: 100px 0 60px;
  }

  .problems,
  .features,
  .how-it-works,
  .operators,
  .testimonials,
  .cta-final {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-suffix {
    font-size: 15px;
  }

  .phone-mockup {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .stat-item {
    align-items: center;
  }

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

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

  .cta-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .benefit-number {
    font-size: 56px;
  }
}

/* ===== PRINT ===== */
@media print {
  .hero {
    min-height: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .orb,
  .mockup-glow {
    display: none;
  }
}

/* === Cube AI Badge === */
.cube-ai-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cube-ai-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.cube-ai-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(6,182,212,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cube-ai-link:hover::before { opacity: 1; }
.cube-ai-link:hover {
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 0 30px rgba(139,92,246,0.15), 0 0 60px rgba(6,182,212,0.08);
    transform: translateY(-1px);
}
.cube-3d {
    width: 20px;
    height: 20px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-25deg) rotateY(30deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cube-ai-link:hover .cube-3d {
    transform: rotateX(-25deg) rotateY(210deg);
}
.cube-face {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(139,92,246,0.6);
    border-radius: 3px;
}
.cube-face.front  { transform: translateZ(10px); background: rgba(139,92,246,0.15); }
.cube-face.back   { transform: translateZ(-10px) rotateY(180deg); background: rgba(6,182,212,0.1); }
.cube-face.top    { transform: rotateX(90deg) translateZ(10px); background: rgba(139,92,246,0.2); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(10px); background: rgba(6,182,212,0.05); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(10px); background: rgba(6,182,212,0.1); }
.cube-face.right  { transform: rotateY(90deg) translateZ(10px); background: rgba(139,92,246,0.1); border-color: rgba(6,182,212,0.5); }
.cube-ai-made {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.cube-ai-name {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}
.cube-ai-arrow {
    width: 14px;
    height: 14px;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.cube-ai-link:hover .cube-ai-arrow {
    color: #8B5CF6;
    transform: translate(2px, -2px);
}
