/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== TOKENS ===== */
:root {
  --orange: #FF4F17;
  --orange-dark: #D93D08;
  --orange-light: #FFF1EC;
  --orange-glow: rgba(255,79,23,0.18);
  --gold: #FFB347;
  --night: #0A0A0F;
  --slate: #1A1A2E;
  --slate2: #12121E;
  --body: #4A4A5A;
  --muted: #8A8A9E;
  --border: #EBEBF0;
  --border-dark: rgba(255,255,255,0.08);
  --bg: #F7F7F8;
  --white: #FFFFFF;
  --green: #00C853;
  --green-light: #E8FAF0;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 4px 32px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-orange: 0 12px 40px rgba(255,79,23,0.28);
  --transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  overflow-wrap: break-word;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

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

/* ===== NAV ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav-wrapper.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  border-bottom: 1px solid var(--border);
}
.nav-wrapper.nav-dark {
  background: transparent;
}
.nav-wrapper.nav-dark.scrolled {
  background: rgba(10,10,15,0.92);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.nav-logo img {
  width: 42px; height: 42px;
  border-radius: 11px;
  box-shadow: 0 4px 12px rgba(255,79,23,0.25);
}
.nav-logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--night);
  letter-spacing: -0.4px;
  transition: color 0.3s;
}
.nav-dark .nav-logo span { color: #fff; }
.nav-dark.scrolled .nav-logo span { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: block;
  padding: 9px 16px;
  border-radius: var(--radius-xs);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dark .nav-links a { color: rgba(255,255,255,0.65); }
.nav-dark.scrolled .nav-links a { color: rgba(255,255,255,0.65); }
.nav-links a:hover { color: var(--night); background: var(--bg); }
.nav-dark .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--orange); font-weight: 600; }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-xs) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-orange) !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  border-radius: 2px;
  background: var(--night);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-dark .nav-toggle span { background: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity var(--transition), transform var(--transition);
}
.reveal.up { transform: translateY(-24px); opacity: 0; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--transition), transform var(--transition);
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.04s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.10s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.16s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.22s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.28s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.34s; }
.stagger.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:0.40s; }
.stagger.visible > *:nth-child(8) { opacity:1; transform:none; transition-delay:0.46s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 16px 48px rgba(255,79,23,0.38); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn-dark { background: var(--night); color: #fff; }
.btn-dark:hover { background: var(--slate); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange-light); }
.btn-white { background: #fff; color: var(--orange); font-weight: 800; }
.btn-white:hover { background: #f5f5f5; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

/* ===== PILL ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.pill-orange { background: var(--orange-light); color: var(--orange); }
.pill-dark { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.15); }
.pill-green { background: var(--green-light); color: #00A045; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--night);
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--night) 0%, var(--slate) 60%, #1F1535 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

/* Hero background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(255,79,23,0.20) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,83,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 300px; height: 300px;
  top: 20%; right: 8%;
  background: radial-gradient(circle, rgba(255,79,23,0.12) 0%, transparent 70%);
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 200px; height: 200px;
  bottom: 25%; left: 5%;
  background: radial-gradient(circle, rgba(255,179,71,0.08) 0%, transparent 70%);
  animation-delay: -3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 68px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--night);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 13.5px; color: rgba(255,255,255,0.5); }
.hero-trust-text strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-wrap { position: relative; width: 295px; }
.phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,79,23,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.phone-device {
  width: 295px;
  background: linear-gradient(160deg, #1E1E32, #141422);
  border-radius: 44px;
  padding: 18px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.phone-notch {
  width: 80px; height: 22px;
  background: #0A0A0F;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 14px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 30px;
  overflow: hidden;
}
.phone-top {
  background: linear-gradient(135deg, var(--orange) 0%, #FF7A50 100%);
  padding: 24px 18px 18px;
  color: #fff;
}
.phone-top small { font-size: 11px; opacity: 0.7; display: block; margin-bottom: 5px; }
.phone-top h3 { font-family: 'Syne', sans-serif; font-size: 15.5px; font-weight: 700; line-height: 1.3; }
.phone-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.phone-card {
  background: #fff;
  border-radius: 13px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.phone-card:hover { transform: scale(1.02); }
.phone-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.phone-icon.o { background: var(--orange-light); }
.phone-icon.g { background: var(--green-light); }
.phone-icon.b { background: #EEF2FF; }
.phone-icon.p { background: #FDF4FF; }
.phone-info { min-width: 0; flex: 1 1 auto; }
.phone-t1 {
  font-family: 'Syne', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--night);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-t2 {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-badge {
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 700;
  margin-left: auto;
  flex-shrink: 0;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--night);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 20px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  top: 20%; right: 0;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
.stat-item:last-child::after { display: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-num span {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--gold), var(--orange));
  opacity: 0.3;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF7A50);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(255,79,23,0.3);
  position: relative;
  z-index: 1;
}
.step-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--night); margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ===== FEATURES ===== */
.features-section { background: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}
.fi-orange { background: var(--orange-light); }
.fi-green { background: var(--green-light); }
.fi-blue { background: #EEF2FF; }
.fi-purple { background: #FDF4FF; }
.fi-gold { background: #FFF8EC; }
.fi-teal { background: #E8FAFA; }
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 17.5px; font-weight: 700; color: var(--night); margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--night); overflow: hidden; }
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-desc { color: rgba(255,255,255,0.5); }

.testimonials-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 52px;
  background: rgba(255,255,255,0.04);
  padding: 6px;
  border-radius: 14px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  background: transparent;
  transition: all 0.3s;
}
.tab-btn.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,79,23,0.3);
}
.tab-btn:hover:not(.active) { color: rgba(255,255,255,0.8); }

.testimonials-panel { display: none; }
.testimonials-panel.active { display: block; }

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

.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(255,79,23,0.25); }

.testi-quote {
  font-size: 48px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 4px;
}
.testi-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testi-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.av-orange { background: linear-gradient(135deg, #FF4F17, #FF7A50); }
.av-green { background: linear-gradient(135deg, #00C853, #00E676); }
.av-blue { background: linear-gradient(135deg, #2979FF, #448AFF); }
.av-purple { background: linear-gradient(135deg, #7C4DFF, #B388FF); }
.av-teal { background: linear-gradient(135deg, #00B8D4, #00E5FF); }
.av-gold { background: linear-gradient(135deg, #FFB347, #FFD700); }
.testi-name { font-family: 'Syne', sans-serif; font-size: 14.5px; font-weight: 700; color: #fff; }
.testi-role { font-size: 12.5px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.testi-badge {
  margin-left: auto;
  background: rgba(255,79,23,0.15);
  border: 1px solid rgba(255,79,23,0.25);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.testi-badge.green-badge { background: rgba(0,200,83,0.12); border-color: rgba(0,200,83,0.2); color: var(--green); }
.testi-badge.blue-badge { background: rgba(41,121,255,0.12); border-color: rgba(41,121,255,0.2); color: #448AFF; }

/* ===== COVERAGE ===== */
.coverage-section {
  background: linear-gradient(145deg, var(--slate) 0%, #0F0F20 100%);
  position: relative;
  overflow: hidden;
}
.coverage-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,79,23,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.coverage-section .section-label { color: var(--green); }
.coverage-section .section-title { color: #fff; }
.coverage-section .section-desc { color: rgba(255,255,255,0.5); }

.coverage-map {
  position: relative;
  text-align: center;
  margin-top: 48px;
}
.coverage-map-img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.4;
  filter: drop-shadow(0 0 60px rgba(255,79,23,0.3));
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.coverage-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.coverage-stat:hover { transform: translateY(-6px); border-color: rgba(255,79,23,0.3); }
.coverage-num {
  font-family: 'Syne', sans-serif;
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.coverage-label { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ===== PARTNER CTA ===== */
.partner-section { background: var(--bg); }
.partner-card {
  background: linear-gradient(135deg, var(--orange) 0%, #FF6B3D 100%);
  border-radius: 28px;
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 32px 80px rgba(255,79,23,0.28);
  position: relative;
  overflow: hidden;
}
.partner-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.partner-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.partner-card p { font-size: 16.5px; color: rgba(255,255,255,0.75); max-width: 520px; line-height: 1.7; }

/* ===== LIVREUR CTA ===== */
.livreur-cta { background: #fff; }
.livreur-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.livreur-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: #00A045;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.livreur-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--night);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.livreur-cta p { font-size: 16.5px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

.livreur-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.livreur-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--body);
}
.livreur-benefit-icon {
  width: 32px; height: 32px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.livreur-benefit-icon svg { width: 16px; height: 16px; color: #00A045; }

.livreur-cta-visual {
  background: linear-gradient(145deg, var(--night), var(--slate));
  border-radius: 28px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.livreur-cta-visual::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,200,83,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.earnings-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 24px;
}
.earnings-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.6px; }
.earnings-amount {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}
.earnings-amount span { color: var(--green); }
.earnings-badge { font-size: 12px; color: var(--green); background: rgba(0,200,83,0.12); padding: 3px 10px; border-radius: 6px; display: inline-flex; margin-top: 6px; }

/* ===== DOWNLOAD ===== */
.download-section { background: var(--bg); }
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--night);
  color: #fff;
  padding: 16px 28px;
  border-radius: 16px;
  min-width: 210px;
  opacity: 0.5;
  cursor: not-allowed;
  border: 1px solid rgba(255,255,255,0.06);
}
.store-badge-text small { display: block; font-size: 11px; color: rgba(255,255,255,0.4); }
.store-badge-text strong { font-size: 16px; font-family: 'Syne', sans-serif; }

/* ===== FOOTER ===== */
footer {
  background: var(--night);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; }
.footer-brand span { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; color: #fff; }
.footer-about { font-size: 14.5px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--orange); color: #fff; border-color: transparent; }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-contact-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.footer-contact-btn.email { background: var(--orange); color: #fff; }
.footer-contact-btn.whatsapp { background: #25D366; color: #fff; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom-text { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: linear-gradient(145deg, var(--night), var(--slate));
  padding: 130px 0 64px;
  color: #fff;
}
.legal-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.legal-date {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-date::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.legal-content { padding: 72px 0 96px; max-width: 760px; }
.legal-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--night);
  margin: 40px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
}
.legal-content p, .legal-content li { font-size: 15.5px; color: var(--body); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--orange); font-weight: 600; }

/* ===== LIVREUR PAGE ===== */
.livreur-hero {
  background: linear-gradient(145deg, var(--slate) 0%, var(--night) 100%);
  padding: 150px 0 96px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.livreur-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,83,0.12) 0%, transparent 70%);
}
.livreur-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 22px;
}
.livreur-hero h1 em { font-style: normal; color: var(--green); }
.livreur-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.75; margin-bottom: 36px; }

.livreur-avantages { background: var(--bg); }
.livreur-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.livreur-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.livreur-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.livreur-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
}
.livreur-card h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--night); margin-bottom: 10px; }
.livreur-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* Form */
.form-section { background: #fff; }
.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 64px 56px;
}
.form-title { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--night); margin-bottom: 8px; }
.form-subtitle { font-size: 15.5px; color: var(--muted); margin-bottom: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--night); }
.form-input, .form-select, .form-textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--night);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,79,23,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 12px; width: 100%; justify-content: center; font-size: 16px; padding: 18px; }
.form-success {
  background: var(--green-light);
  border: 1.5px solid rgba(0,200,83,0.3);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  color: #00843A;
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
  display: none;
}
.form-success.visible { display: block; }

/* ===== FLOATING WA ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-wa a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.floating-wa a:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }

@media (max-width: 640px) {
  .floating-wa { bottom: 18px; right: 18px; }
  .floating-wa a {
    padding: 0;
    width: 52px; height: 52px;
    border-radius: 50%;
    justify-content: center;
  }
  .floating-wa .wa-label { display: none; }
}
/* Room at the bottom of forms so the floating button never sits on top of the submit button */
.form-section { padding-bottom: 96px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .nav { padding: 0 32px; }
  .hero-inner { gap: 48px; }
  .phone-wrap { width: 260px; }
  .phone-device { width: 260px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav { padding: 0 28px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .livreur-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-carousel { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .coverage-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .partner-card { padding: 56px 44px; }
  .livreur-cta-inner { gap: 40px; }
  .hero-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  section { padding: 72px 0; }
  .nav { padding: 0 24px; }

  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--night);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border-dark);
    gap: 4px;
    display: none;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 10px; padding: 13px 16px; width: 100%; color: rgba(255,255,255,0.65) !important; }
  .nav-links a:hover { background: rgba(255,255,255,0.07) !important; color: #fff !important; }
  .nav-toggle { display: flex; }
  .nav-logo span { color: var(--night); }
  .nav-dark .nav-logo span { color: #fff; }

  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero { min-height: auto; }
  .hero-visual { order: -1; }
  .phone-wrap, .phone-device { width: min(300px, 78vw); }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .livreur-grid { grid-template-columns: 1fr; }
  .testimonials-carousel { grid-template-columns: 1fr; }
  .partner-card { grid-template-columns: 1fr; text-align: center; padding: 48px 32px; }
  .livreur-cta-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 36px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .ticker-item { padding: 0 20px; font-size: 11px; }
  .floating-wa { right: 16px; bottom: 16px; }
  .floating-wa a { padding: 12px 16px; font-size: 13px; }
  .legal-hero { padding: 108px 0 48px; }
  .legal-content { padding: 48px 0 64px; }
  .legal-content h2 { font-size: 18px; margin: 32px 0 12px; }
  .livreur-hero { padding: 120px 0 72px; }
}

@media (max-width: 640px) {
  .steps-grid, .livreur-grid, .testimonials-carousel { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .coverage-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .coverage-stat { padding: 24px 16px; }
  .coverage-num { font-size: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .partner-card { padding: 44px 26px; border-radius: 20px; }
  .partner-card h2 { font-size: clamp(22px, 6vw, 28px); }
  .livreur-cta-visual { padding: 32px 24px; }
  .earnings-amount { font-size: 26px; }
  .form-card { padding: 36px 24px; border-radius: 20px; }
  .form-title { font-size: 24px; }
  .legal-content { padding: 56px 0 72px; }
  .store-badges { flex-direction: column; align-items: stretch; }
  .store-badge { min-width: 0; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -0.8px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .testimonials-tabs { flex-wrap: wrap; width: 100%; }
  .tab-btn { font-size: 13px; padding: 9px 18px; flex: 1; }
  .phone-wrap, .phone-device { width: min(260px, 72vw); }
  .phone-glow { width: 320px; height: 320px; }
  .hero-content { padding: 100px 0 64px; }
  .hero-orb-1, .hero-orb-2 { display: none; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  section { padding: 56px 0; }
  .section-head { margin-bottom: 44px; }
  .step-card, .feature-card, .livreur-card { padding: 28px 22px; }
  .livreur-benefit { font-size: 14px; }
  .footer-social { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 360px) {
  .phone-wrap, .phone-device { width: min(230px, 68vw); }
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .hero-desc { font-size: 16px; }
  .stat-num { font-size: clamp(28px, 8vw, 36px); }
  .container { padding: 0 16px; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-content { padding: 96px 0 48px; }
  .phone-wrap, .phone-device { width: 200px; }
  section { padding: 56px 0; }
}
