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

:root {
  --primary-h: 24; --primary-s: 95%; --primary-l: 53%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l);
  --primary-foreground: 0 0% 100%;

  --secondary: 217 33% 17%;
  --secondary-foreground: 210 20% 98%;

  --accent: 172 80% 40%;
  --accent-foreground: 0 0% 100%;

  --bg: #FFFFFF;
  --fg: #FFFFFF;
  --fg2: rgba(255,255,255,0.7);
  --card: 0 0% 100%;
  --card-foreground: 217 33% 17%;
  --muted: 210 20% 96%;
  --muted-foreground: 215 16% 47%;
  --border: 210 20% 90%;
  --input: 210 20% 90%;
  --ring: var(--primary);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-elevated: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 24px hsl(24 95% 53% / 0.2);

  --gradient-primary: linear-gradient(135deg, #F26522, #F97316);
  --gradient-accent: linear-gradient(135deg, #14B8A6, #0EA5E9);
  --gradient-hero: linear-gradient(135deg, #FFF8F4 0%, #FFFFFF 50%, #F0FDFA 100%);
  --gradient-cta: linear-gradient(135deg, #F26522, #F97316, #14B8A6);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dark {
  --bg: #0F172A;
  --fg: #FFFFFF;
  --fg2: rgba(255,255,255,0.65);
  --card: 217 33% 12%;
  --card-foreground: 210 20% 98%;
  --muted: 217 33% 17%;
  --muted-foreground: 215 20% 65%;
  --border: 217 33% 20%;
  --input: 217 33% 17%;
  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-elevated: 0 8px 30px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; line-height: 1.5; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: hsl(217 33% 17%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s, color 0.3s;
}
.dark body { color: hsl(210 20% 98%); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: hsl(var(--primary) / 0.3); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: hsl(217 33% 30%); border-radius: var(--radius-full); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gradient-primary); z-index: 100; transition: width 0.1s; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsl(0 0% 100% / 0.8); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid hsl(210 20% 90% / 0.5);
  transition: background 0.3s, border-color 0.3s;
}
.dark .header { background: hsl(224 71% 4% / 0.7); border-color: hsl(217 33% 17% / 0.5); }
.header.scrolled { background: hsl(0 0% 100% / 0.95); border-color: hsl(210 20% 90% / 0.8); box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.dark .header.scrolled { background: hsl(224 71% 4% / 0.92); border-color: hsl(217 33% 17% / 0.8); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.header-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; color: #F26522; }
.header-logo img { height: 2rem; width: auto; transition: transform 0.3s; }
.header-logo:hover img { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a, .nav-links button.nav-btn {
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: hsl(217 33% 40%); border-radius: var(--radius-sm);
  transition: all 0.2s; background: none; border: none;
  cursor: pointer; font-family: inherit;
}
.dark .nav-links a, .dark .nav-links button.nav-btn { color: hsl(210 20% 82%); }
.nav-links a:hover, .nav-links button.nav-btn:hover { color: #F26522; background: hsl(24 95% 53% / 0.08); }
.dark .nav-links a:hover, .dark .nav-links button.nav-btn:hover { color: #fff; background: hsl(217 33% 17% / 0.6); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-sm);
  border: 1px solid hsl(210 20% 88%); background: transparent;
  color: hsl(217 33% 40%); cursor: pointer; transition: all 0.2s;
}
.dark .theme-toggle { border-color: hsl(217 33% 20%); color: hsl(210 20% 82%); }
.theme-toggle:hover { background: hsl(24 95% 53% / 0.08); color: #F26522; transform: scale(1.05); }
.dark .theme-toggle:hover { background: hsl(217 33% 17%); color: #fff; }
body:not(.dark) .theme-toggle .sun { display: none; }
body.dark .theme-toggle .moon { display: none; }
.theme-toggle svg { width: 1.125rem; height: 1.125rem; }

.mobile-menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-sm);
  border: 1px solid hsl(210 20% 88%); background: transparent;
  color: #F26522; cursor: pointer; transition: all 0.2s;
}
.mobile-menu-btn:hover { background: hsl(24 95% 53% / 0.08); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.9375rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; transition: all 0.25s ease;
  white-space: nowrap; min-height: 44px;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:hover:not(:disabled) { transform: scale(1.02); }
.btn:active:not(:disabled) { transform: scale(0.98); }
.btn-primary {
  background: var(--gradient-primary); color: white;
  box-shadow: 0 4px 16px hsl(24 95% 53% / 0.3);
}
.btn-primary:hover:not(:disabled) {
  box-shadow: 0 8px 28px hsl(24 95% 53% / 0.4);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent; border: 2px solid hsl(210 20% 88%);
  color: hsl(217 33% 17%);
}
.dark .btn-outline { border-color: hsl(217 33% 25%); color: hsl(210 20% 98%); }
.btn-outline:hover:not(:disabled) { border-color: #F26522; color: #F26522; background: hsl(24 95% 53% / 0.06); }
.btn-ghost { background: transparent; color: hsl(217 33% 40%); }
.btn-ghost:hover:not(:disabled) { background: hsl(210 20% 95%); }
.dark .btn-ghost:hover { background: hsl(217 33% 17%); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1.0625rem; min-height: 52px; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; min-height: 36px; }
.btn-full { width: 100%; }

/* ===== SECTION COMMON ===== */
.section { padding: 6rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #F26522; margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 2rem; height: 2px; background: #F26522; border-radius: 1px; }
.section-title { font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.section-desc { font-size: 1.125rem; color: hsl(215 16% 47%); max-width: 36rem; line-height: 1.7; }
.dark .section-desc { color: hsl(210 20% 70%); }
.mb-16 { margin-bottom: 4rem; }
.justify-center { justify-content: center; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative; background: var(--gradient-hero);
  min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.dark .hero { background: var(--gradient-hero); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, hsl(24 95% 53% / 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, hsl(172 80% 40% / 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; padding-top: 6rem; padding-bottom: 4rem; }
.hero-content h1 {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 800; color: hsl(217 33% 12%);
  line-height: 1.05; margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}
.dark .hero-content h1 { color: #fff; }
.hero-content p { font-size: 1.125rem; color: hsl(215 16% 47%); line-height: 1.7; margin-bottom: 2.5rem; max-width: 34rem; }
.dark .hero-content p { color: hsl(210 20% 75%); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.gradient-text {
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; margin-bottom: 2rem;
  background: hsl(24 95% 53% / 0.1); border: 1px solid hsl(24 95% 53% / 0.2);
  border-radius: var(--radius-full); font-size: 0.8125rem;
  color: #F26522; font-weight: 600;
}
.dark .hero-badge { background: hsl(172 80% 40% / 0.1); border-color: hsl(172 80% 40% / 0.2); color: #14B8A6; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #F26522; animation: pulse-dot 2s infinite; }
.dark .hero-badge-dot { background: #14B8A6; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Hero Trust */
.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.trust-avatars { display: flex; }
.trust-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: white;
  border: 2px solid white; margin-right: -0.5rem;
}
.dark .trust-avatar { border-color: hsl(217 33% 12%); }
.trust-avatar.plus { background: #F26522; }
.hero-trust span { font-size: 0.875rem; color: hsl(215 16% 47%); }
.dark .hero-trust span { color: hsl(210 20% 65%); }
.hero-trust strong { color: hsl(217 33% 12%); }
.dark .hero-trust strong { color: #fff; }

/* Demo Card */
.hero-demo-card {
  width: 100%; max-width: 400px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  border: 1px solid hsl(210 20% 88% / 0.6);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-elevated);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.dark .hero-demo-card { background: hsl(217 33% 14% / 0.85); border-color: hsl(217 33% 20% / 0.6); }
.hero-demo-card:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.demo-card-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid hsl(210 20% 88%);
}
.dark .demo-card-header { border-color: hsl(217 33% 17% / 0.6); }
.demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 10px; height: 10px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: #EF4444; }
.demo-dots span:nth-child(2) { background: #F59E0B; }
.demo-dots span:nth-child(3) { background: #10B981; }
.demo-card-header span { font-size: 0.8125rem; color: hsl(215 16% 47%); font-weight: 500; }
.dark .demo-card-header span { color: hsl(210 20% 65%); }
.demo-card-body { padding: 1.25rem; }
.demo-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
.demo-label { font-size: 0.8125rem; color: hsl(215 16% 47%); }
.dark .demo-label { color: hsl(210 20% 65%); }
.demo-value { font-size: 1rem; font-weight: 700; color: hsl(217 33% 12%); }
.dark .demo-value { color: #fff; }
.demo-value.accent { color: #F26522; }
.demo-value.green { color: #10B981; }
.demo-value.blue { color: #3B82F6; }
.demo-divider { height: 1px; background: hsl(210 20% 88%); }
.dark .demo-divider { background: hsl(217 33% 17% / 0.6); }
.demo-card-footer {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem; background: hsl(210 20% 96%);
}
.dark .demo-card-footer { background: hsl(217 33% 17% / 0.4); }
.demo-pulse { width: 8px; height: 8px; border-radius: 50%; background: #10B981; animation: pulse-dot 2s infinite; }
.demo-card-footer span { font-size: 0.75rem; color: hsl(215 16% 47%); }
.dark .demo-card-footer span { color: hsl(210 20% 55%); }

/* Floating Cards */
.hero-floating-card {
  position: absolute; display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border: 1px solid hsl(210 20% 88%); border-radius: 0.75rem;
  padding: 0.75rem 1rem; box-shadow: var(--shadow-elevated);
  animation: float 6s ease-in-out infinite; pointer-events: none;
}
.dark .hero-floating-card { background: hsl(217 33% 14% / 0.85); border-color: hsl(217 33% 17% / 0.8); }
.card-1 { top: 5%; right: -10%; animation-delay: 0s; }
.card-2 { bottom: 15%; left: -15%; animation-delay: 2s; }
.card-3 { top: 40%; right: -20%; animation-delay: 4s; }
.floating-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.floating-dot.green { background: #10B981; box-shadow: 0 0 8px hsl(142 71% 45% / 0.5); }
.floating-dot.blue { background: #3B82F6; box-shadow: 0 0 8px hsl(217 91% 60% / 0.5); }
.floating-dot.yellow { background: #F59E0B; box-shadow: 0 0 8px hsl(38 92% 50% / 0.5); }
.floating-info { flex: 1; }
.floating-info strong { display: block; font-size: 0.8125rem; color: hsl(217 33% 12%); }
.dark .floating-info strong { color: #fff; }
.floating-info span { font-size: 0.6875rem; color: hsl(215 16% 47%); }
.dark .floating-info span { color: hsl(210 20% 60%); }
.floating-status { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.floating-status:has(+ .floating-dot.green), .card-1 .floating-status { color: #10B981; }
.card-2 .floating-status { color: #3B82F6; }
.card-3 .floating-status { color: #F59E0B; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.1; pointer-events: none; }
.hero-glow-1 { width: 24rem; height: 24rem; top: -10rem; right: -8rem; background: #F26522; }
.hero-glow-2 { width: 18rem; height: 18rem; bottom: -6rem; left: -6rem; background: #14B8A6; }
.hero-glow-3 { width: 14rem; height: 14rem; top: 30%; left: 40%; background: #F26522; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); padding: 2.25rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden; cursor: default;
  box-shadow: var(--shadow-sm);
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: hsl(var(--primary) / 0.2);
}
.feature-icon {
  width: 3.25rem; height: 3.25rem; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
.feature-icon.orange { background: hsl(24 95% 53% / 0.12); color: #F26522; }
.feature-icon.blue { background: hsl(217 91% 60% / 0.12); color: #3B82F6; }
.feature-icon.green { background: hsl(142 71% 45% / 0.12); color: #10B981; }
.feature-icon.purple { background: hsl(271 91% 65% / 0.12); color: #A855F7; }
.feature-icon.cyan { background: hsl(187 89% 48% / 0.12); color: #06B6D4; }
.feature-icon.amber { background: hsl(38 92% 50% / 0.12); color: #F59E0B; }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9375rem; color: hsl(215 16% 47%); line-height: 1.7; }
.dark .feature-card p { color: hsl(210 20% 70%); }

/* ===== STATS (Dark Navy) ===== */
.stats-section {
  background: #0F172A; position: relative; overflow: hidden;
}
.dark .stats-section { background: #0A0F1A; }
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, hsl(24 95% 53% / 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, hsl(172 80% 40% / 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 2rem; transition: transform 0.3s; }
.stat-item:hover { transform: scale(1.05); }
.stat-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dark .stat-number { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.9375rem; color: hsl(210 20% 70%); font-weight: 500; }

/* ===== MARQUEE ===== */
.marquee-section { padding-bottom: 3rem !important; }
.marquee-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-content { display: flex; gap: 3rem; animation: marquee 25s linear infinite; width: max-content; }
.marquee-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; background: hsl(var(--card));
  border: 1px solid hsl(var(--border)); border-radius: var(--radius-sm);
  color: hsl(215 16% 47%); font-size: 0.9375rem; font-weight: 500;
  white-space: nowrap; transition: all 0.3s;
}
.dark .marquee-item { color: hsl(210 20% 70%); }
.marquee-item:hover { border-color: #F26522; color: #F26522; transform: translateY(-3px); box-shadow: var(--shadow-card); }
.marquee-item svg { flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== BENTO FEATURES ===== */
.feature-bento {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 1.5rem;
}
.feature-bento-main {
  background: var(--gradient-hero);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius); padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  transition: all 0.3s;
}
.feature-bento-main:hover { box-shadow: var(--shadow-card); }
.feature-bento-main h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.feature-bento-main p { font-size: 0.9375rem; color: hsl(215 16% 47%); line-height: 1.7; margin-bottom: 1.5rem; }
.dark .feature-bento-main p { color: hsl(210 20% 75%); }
.feature-bento-side { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-bento-side .feature-card { margin: 0; }

/* Stats inside bento */
.bento-stats { display: flex; gap: 2rem; }
.bento-stat-value { display: block; font-family: var(--font-sans); font-size: 1.75rem; font-weight: 700; color: #F26522; line-height: 1; }
.dark .bento-stat-value { color: #fff; }
.bento-stat-label { font-size: 0.75rem; color: hsl(215 16% 47%); margin-top: 0.25rem; }
.dark .bento-stat-label { color: hsl(210 20% 60%); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: hsl(210 20% 96%); }
.dark .testimonials-section { background: hsl(217 33% 10%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: hsl(var(--primary) / 0.15);
}
.testimonial-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.stars { color: #F59E0B; font-size: 0.9375rem; letter-spacing: 2px; }
.testimonial-quote-icon { font-size: 3rem; line-height: 1; color: hsl(24 95% 53% / 0.15); font-family: Georgia, serif; }
.testimonial-card blockquote { font-size: 0.9375rem; line-height: 1.7; color: hsl(215 16% 47%); margin-bottom: 1.5rem; }
.dark .testimonial-card blockquote { color: hsl(210 20% 70%); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.875rem; color: white; flex-shrink: 0; }
.testimonial-author-info p { font-size: 0.875rem; font-weight: 600; }
.testimonial-author-info span { font-size: 0.75rem; color: hsl(215 16% 47%); }

/* ===== FAQ ===== */
.faq-section { background: hsl(210 20% 96%); }
.dark .faq-section { background: hsl(217 33% 10%); }
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item { border: 1px solid hsl(var(--border)); border-radius: var(--radius-sm); margin-bottom: 0.75rem; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: #F26522; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: hsl(var(--card)); border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  color: hsl(217 33% 17%); text-align: left; transition: all 0.2s;
}
.dark .faq-question { color: hsl(210 20% 98%); }
.faq-question:hover { color: #F26522; }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: hsl(215 16% 47%); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: #F26522; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; background: hsl(var(--card)); }
.faq-item.open .faq-answer { max-height: 20rem; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: 0.9375rem; color: hsl(215 16% 47%); line-height: 1.7; }
.dark .faq-answer p { color: hsl(210 20% 70%); }

/* ===== CTA (Gradient) ===== */
.cta-section {
  position: relative;
  background: var(--gradient-cta);
  text-align: center; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; position: relative; z-index: 1; }
.cta-section .btn-primary {
  background: #fff; color: #F26522;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  filter: brightness(1.05);
}
.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.4); color: #fff;
}
.cta-section .btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,0.1);
}

/* ===== APP DOWNLOAD CTA ===== */
.app-cta-section {
  background: #0F172A; position: relative; overflow: hidden;
}
.app-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, hsl(24 95% 53% / 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, hsl(172 80% 40% / 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.app-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.app-cta-content h2 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.app-cta-content p { color: hsl(210 20% 70%); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2rem; max-width: 30rem; }
.app-badge-grid { display: flex; gap: 1rem; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; background: hsl(217 33% 22%);
  border: 1px solid hsl(217 33% 30%);
  border-radius: var(--radius-sm); color: #fff;
  font-weight: 500; font-size: 0.875rem;
  transition: all 0.3s; cursor: pointer; min-height: 52px;
}
.app-badge:hover { background: hsl(217 33% 28%); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.app-badge svg { flex-shrink: 0; }
.app-badge small { display: block; font-size: 0.625rem; font-weight: 400; color: hsl(210 20% 65%); }
.app-cta-visual {
  display: flex; align-items: center; justify-content: center;
}
.app-phone-frame {
  width: 220px; height: 440px; background: linear-gradient(180deg, #1E293B, #0F172A);
  border: 3px solid hsl(217 33% 25%); border-radius: 32px;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.app-phone-frame::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 28px; background: #1E293B; border-radius: 0 0 16px 16px;
  z-index: 2;
}
.app-phone-screen {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; align-items: center;
  justify-content: center; padding: 2rem 1rem;
  background: radial-gradient(ellipse at 50% 30%, hsl(24 95% 53% / 0.1) 0%, transparent 60%);
}
.app-phone-screen .phone-logo { font-size: 1.5rem; font-weight: 800; color: #F26522; margin-bottom: 0.5rem; }
.app-phone-screen .phone-tagline { font-size: 0.75rem; color: hsl(210 20% 60%); text-align: center; }
.app-phone-screen .phone-dots {
  display: flex; gap: 6px; margin-top: 1.5rem;
}
.app-phone-screen .phone-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: hsl(217 33% 30%); animation: pulse-dot 2s infinite;
}
.app-phone-screen .phone-dots span:nth-child(2) { animation-delay: 0.3s; }
.app-phone-screen .phone-dots span:nth-child(3) { animation-delay: 0.6s; }

/* ===== FOOTER ===== */
.footer { background: #0F172A; color: hsl(210 20% 65%); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 1rem; max-width: 24rem; }
.footer h4 { color: #fff; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer ul li { margin-bottom: 0.75rem; }
.footer ul li a { font-size: 0.875rem; transition: color 0.2s; }
.footer ul li a:hover { color: #fff; }

/* Newsletter */
.footer-newsletter { margin-top: 1.5rem; }
.footer-newsletter p { font-size: 0.8125rem; margin-bottom: 0.75rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1; padding: 0.625rem 0.875rem;
  background: hsl(217 33% 22%); border: 1px solid hsl(217 33% 30%);
  border-radius: var(--radius-sm); color: #fff;
  font-size: 0.875rem; outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: #F26522; }
.newsletter-form input::placeholder { color: hsl(210 20% 50%); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-sm);
  border: 1px solid hsl(217 33% 25%); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.2s; color: hsl(210 20% 65%);
}
.footer-social a:hover { background: #F26522; border-color: #F26522; color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid hsl(217 33% 20%);
  padding-top: 2rem; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 0.8125rem;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 4rem; left: 0; right: 0; bottom: 0;
  background: hsl(224 71% 4% / 0.98); backdrop-filter: blur(20px);
  z-index: 40; display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button.nav-btn {
  font-size: 1.25rem; font-weight: 500; color: hsl(210 20% 82%);
  transition: color 0.2s; min-height: 44px; display: flex;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.mobile-menu a:hover, .mobile-menu button.nav-btn:hover { color: #F26522; }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}
.modal-card {
  background: hsl(217 33% 12%);
  border-radius: var(--radius); padding: 2.5rem;
  width: 100%; max-width: 440px; position: relative;
  box-shadow: var(--shadow-elevated);
  color: #fff; border: 1px solid hsl(217 33% 20% / 0.5);
}
.modal-lg { max-width: 800px; }
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 1.75rem; cursor: pointer; transition: color 0.2s; line-height: 1;
}
.modal-close:hover { color: #fff; }
.auth-tabs {
  display: flex; background: hsl(217 33% 17%);
  border-radius: var(--radius-sm); padding: 4px; margin-bottom: 1.5rem;
}
.auth-tabs .tab-btn {
  flex: 1; padding: 0.65rem; border: none; background: transparent;
  color: rgba(255,255,255,0.5); cursor: pointer;
  border-radius: var(--radius-sm); font-size: 0.9rem;
  font-weight: 500; transition: all 0.2s;
}
.auth-tabs .tab-btn.active { background: #F26522; color: #fff; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.form-group input, .form-group select {
  width: 100%; padding: 0.75rem 0.875rem;
  background: hsl(217 33% 17%); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); color: #fff;
  font-size: 0.95rem; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: #F26522; box-shadow: 0 0 0 3px hsl(24 95% 53% / 0.15); }
.form-error { color: #EF4444; font-size: 0.85rem; margin-top: 0.5rem; text-align: center; }
.form-success { color: #10B981; font-size: 0.85rem; margin-top: 0.5rem; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.register-type-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.register-type-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1rem; border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); background: hsl(217 33% 14%);
  color: rgba(255,255,255,0.6); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all 0.2s;
}
.register-type-tab:hover { border-color: #F26522; }
.register-type-tab.active { border-color: #F26522; background: hsl(24 95% 53% / 0.12); color: #F26522; }
.register-form-panel { animation: fadeIn 0.2s ease; }

/* ===== DASHBOARD ===== */
.dash-layout { display: flex; min-height: 100vh; }
.dash-sidebar {
  width: 240px; background: #0F172A;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh;
}
.dash-brand { padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dash-nav { flex: 1; padding: 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; }
.dash-nav-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.875rem;
  border: none; background: transparent; color: rgba(255,255,255,0.5);
  cursor: pointer; border-radius: var(--radius-sm); font-size: 0.875rem;
  text-align: left; width: 100%; min-height: 44px;
  transition: all 0.2s;
}
.dash-nav-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.dash-nav-item.active { background: hsl(24 95% 53% / 0.12); color: #F26522; }
.dash-nav-item svg { flex-shrink: 0; }
.dash-sidebar-footer { padding: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); }
.dash-content { flex: 1; padding: 2rem; overflow-y: auto; max-height: 100vh; background: #0F172A; }
.dash-view h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.dash-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.dash-stat { background: hsl(217 33% 14%); border-radius: var(--radius-sm); padding: 1.25rem; }
.dash-stat .num { font-size: 1.5rem; font-weight: 700; }
.dash-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.verif-banner {
  display: flex; align-items: center; gap: 0.75rem;
  background: hsl(24 95% 53% / 0.08); border: 1px solid hsl(24 95% 53% / 0.15);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  margin-bottom: 1.5rem; color: #F26522;
}
.verif-banner span { flex: 1; font-size: 0.9rem; color: #fff; }
.pin-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; z-index: 200; backdrop-filter: blur(4px); }
.pin-card {
  background: hsl(217 33% 14%); border-radius: var(--radius);
  padding: 2.5rem; width: 100%; max-width: 380px;
  text-align: center; border: 1px solid rgba(255,255,255,0.06);
}
.pin-card h2 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.pin-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 1.2rem; }
.pin-field { text-align: center; font-size: 1.2rem; letter-spacing: 0.3em; width: 100%; padding: 0.7rem; background: hsl(217 33% 17%); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); color: #fff; outline: none; }
.balance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.balance-card {
  background: hsl(217 33% 14%); border-radius: var(--radius-sm);
  padding: 1.25rem; border: 1px solid rgba(255,255,255,0.04);
}
.balance-card.primary { background: var(--gradient-primary); border: none; }
.bl { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.balance-card.primary .bl { color: rgba(255,255,255,0.8); }
.ba { font-size: 1.3rem; font-weight: 700; }
.balance-card.primary .ba { color: #fff; }
.cash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.cash-stat {
  background: hsl(217 33% 14%); border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.04);
}
.cash-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.cash-stat .val { font-size: 0.9rem; font-weight: 600; margin-top: 0.2rem; }
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.data-table th { text-align: left; padding: 0.75rem 0.8rem; color: rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.06); font-weight: 600; }
.data-table td { padding: 0.75rem 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.data-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.text-green { color: #10B981; }
.text-red { color: #EF4444; }
.upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0.8rem; }
.upload-box { border: 2px dashed rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 1.5rem; cursor: pointer; min-height: 140px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.upload-box:hover { border-color: #F26522; background: hsl(24 95% 53% / 0.05); }
.upload-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.upload-preview { max-width: 100%; max-height: 140px; border-radius: var(--radius-sm); object-fit: contain; }
.upload-hint { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.verif-status {
  padding: 1rem; border-radius: var(--radius-sm);
  margin-bottom: 1rem; font-size: 0.9rem;
}
.verif-status.pending { background: hsl(24 95% 53% / 0.08); border: 1px solid hsl(24 95% 53% / 0.15); }
.verif-status.verified { background: hsl(142 71% 45% / 0.08); border: 1px solid hsl(142 71% 45% / 0.15); color: #10B981; }
.verif-status.rejected { background: hsl(0 84% 60% / 0.08); border: 1px solid hsl(0 84% 60% / 0.15); color: #EF4444; }
.admin-tabs { display: flex; background: hsl(217 33% 17%); border-radius: var(--radius-sm); padding: 4px; margin-top: 1rem; width: fit-content; }
.admin-tabs .tab-btn { padding: 0.5rem 1rem; border: none; background: transparent; color: rgba(255,255,255,0.5); cursor: pointer; border-radius: var(--radius-sm); font-size: 0.85rem; transition: all 0.15s; }
.admin-tabs .tab-btn.active { background: #F26522; color: #fff; }
.badge { display: inline-block; padding: 0.2rem 0.55rem; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 500; }
.badge-none { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); }
.badge-pending { background: hsl(24 95% 53% / 0.12); color: #F26522; }
.badge-verified { background: hsl(142 71% 45% / 0.12); color: #10B981; }
.badge-rejected { background: hsl(0 84% 60% / 0.12); color: #EF4444; }
.badge-admin { background: hsl(0 84% 60% / 0.12); color: #EF4444; }
.badge-customer { background: hsl(24 95% 53% / 0.12); color: #F26522; }
.badge-driver { background: hsl(142 71% 45% / 0.12); color: #10B981; }
.badge-dispatcher { background: hsl(48 96% 53% / 0.12); color: #F59E0B; }
.form-section {
  background: hsl(217 33% 14%); border-radius: var(--radius-sm);
  padding: 1.5rem; margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.04);
}
.form-section h2 { font-size: 1rem; margin-bottom: 1rem; color: #F26522; }
.nav-btn { background: none; border: none; color: hsl(210 20% 82%); font-size: 0.9rem; font-weight: 500; cursor: pointer; padding: 0.25rem 0; transition: color 0.2s; font-family: inherit; }
.nav-btn:hover { color: #F26522; }
.bureaux-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.desk-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm); padding: 1.5rem;
  transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.desk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); border-color: #F26522; }
.desk-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.desk-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.desk-icon.own, .desk-icon.ecommerce { background: hsl(24 95% 53% / 0.12); color: #F26522; }
.desk-icon.partner, .desk-icon.societe { background: hsl(172 80% 40% / 0.12); color: #14B8A6; }
.desk-title { font-weight: 600; font-size: 1.1rem; }
.desk-type { font-size: 0.8rem; color: hsl(215 16% 47%); text-transform: capitalize; }
.desk-info { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.desk-info-row { display: flex; justify-content: space-between; padding: 0.25rem 0; border-bottom: 1px solid hsl(var(--border)); }
.desk-info-row:last-child { border-bottom: none; }
.desk-info-label { color: hsl(215 16% 47%); }
.desk-info-value { font-weight: 500; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse-glow { 0%, 100% { opacity: 0.08; } 50% { opacity: 0.15; } }
.animate-in { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-in-delay-1 { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.animate-in-delay-2 { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.hero-glow-1, .hero-glow-2, .hero-glow-3 { animation: pulse-glow 5s ease-in-out infinite; }
.hero-glow-2 { animation-delay: 1.5s; }
.hero-glow-3 { animation-delay: 3s; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== LOADING ===== */
.spinner { display: inline-block; width: 1.25rem; height: 1.25rem; border: 2.5px solid rgba(255,255,255,0.2); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-content p { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .hero-demo-card { transform: none; }
  .hero-demo-card:hover { transform: none; }
  .hero-floating-card { display: none; }
  .features-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-bento { grid-template-columns: 1fr; }
  .app-cta-grid { grid-template-columns: 1fr; text-align: center; }
  .app-cta-content p { margin: 0 auto 2rem; }
  .app-badge-grid { justify-content: center; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .hero { min-height: auto; padding: 0; }
  .hero-grid { padding-top: 6rem; padding-bottom: 3rem; gap: 2rem; }
  .hero-trust { flex-direction: column; align-items: center; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4rem 0; }
  .dash-layout { flex-direction: column; }
  .dash-sidebar { width: 100%; height: auto; position: static; flex-direction: row; padding: 0.5rem; overflow-x: auto; }
  .dash-brand { display: none; }
  .dash-nav { flex-direction: row; padding: 0; }
  .dash-nav-item { white-space: nowrap; font-size: 0.8rem; }
  .dash-sidebar-footer { display: none; }
  .balance-grid { grid-template-columns: 1fr; }
  .cash-stats { grid-template-columns: 1fr 1fr; }
  .upload-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .bento-stats { flex-wrap: wrap; gap: 1rem; }
  .newsletter-form { flex-direction: column; }
  .modal-card { margin: 1rem; padding: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .stat-number { font-size: 2rem; }
  .app-phone-frame { width: 180px; height: 360px; }
  .btn-lg { padding: 0.75rem 1.25rem; font-size: 0.9375rem; }
}
