/* ============================
   ZRESTRO — PREMIUM CSS
   Dark Luxury Food Empire Theme
   ============================ */

:root {
  --primary: #ff5a1f;
  --primary-light: #ff914d;
  --primary-glow: rgba(255, 90, 31, 0.35);
  --bg: #080808;
  --bg2: #0f0f0f;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #f0ebe3;
  --text-muted: rgba(240, 235, 227, 0.55);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 20px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

.arrow{
display:inline-block;
margin-left:8px;
font-size:18px;
font-weight:700;
transition:0.3s;
}

.primary-btn:hover .arrow,
.secondary-btn:hover .arrow,
.cta a:hover .arrow{
transform:translateX(5px);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

/* ---- CUSTOM CURSOR ---- */
#mouse-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,31,0.12) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.08s linear;
}

/* ---- LOADING ---- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--primary);
  animation: pulse-glow 1.2s ease infinite;
  line-height: 1;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin: 20px auto 12px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  width: 0;
  animation: fill-bar 1.8s ease forwards;
}
.loader-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes fill-bar { to { width: 100%; } }
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 30px var(--primary-glow); }
  50% { text-shadow: 0 0 60px var(--primary-glow), 0 0 120px var(--primary-glow); }
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; font-family: var(--font-display); font-size: 26px; font-weight: 800; cursor: default; }
.logo-z { color: var(--primary); }
.logo-restro { color: var(--text); }
.nav-links { display: flex; list-style: none; gap: 32px; margin: 0 auto; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: none;
}
.nav-cta:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 8px 30px var(--primary-glow); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 16px 40px 20px; background: rgba(8,8,8,0.95); backdrop-filter: blur(20px); }
.nav-mobile a { color: var(--text-muted); text-decoration: none; padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--glass-border); }
.mobile-cta { color: var(--primary) !important; font-weight: 700; border-bottom: none !important; }
.nav-mobile.open { display: flex; }

/* ---- SECTION COMMONS ---- */
section { padding: 100px 40px; position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,90,31,0.12);
  border: 1px solid rgba(255,90,31,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.title-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BLOBS ---- */
.hero-blobs, .cta-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blob-drift 12s ease-in-out infinite alternate;
}
.blob1 { width: 500px; height: 500px; background: radial-gradient(circle, #ff5a1f 0%, transparent 70%); top: -100px; left: -100px; animation-delay: 0s; }
.blob2 { width: 400px; height: 400px; background: radial-gradient(circle, #ff914d 0%, transparent 70%); top: 30%; right: -80px; animation-delay: -4s; }
.blob3 { width: 300px; height: 300px; background: radial-gradient(circle, #ff5a1f 0%, transparent 70%); bottom: 0; left: 40%; animation-delay: -8s; }
.blob4 { width: 600px; height: 600px; background: radial-gradient(circle, #ff5a1f 0%, transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); }
.blob5 { width: 300px; height: 300px; background: radial-gradient(circle, #ff914d 0%, transparent 70%); bottom: -100px; right: 10%; }
@keyframes blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.05); }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 50px var(--primary-glow); }
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--glass-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--primary); background: rgba(255,90,31,0.06); transform: translateY(-2px); }
.play-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,90,31,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding-left: 2px;
}

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal { transform: translateY(30px); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===========================
   HERO SECTION
   =========================== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 60px;
  position: relative;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,90,31,0.1);
  border: 1px solid rgba(255,90,31,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  width: fit-content;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-unit { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--primary-light); }
.stat-label { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); }

/* Hero Right — 3D Scene */
.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-3d-scene {
  position: relative;
  width: 480px;
  height: 480px;
}
.food-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  cursor: default;
}
.food-card:hover { box-shadow: 0 20px 60px var(--primary-glow); border-color: rgba(255,90,31,0.25); }
.food-emoji { font-size: 40px; }
.food-label { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; white-space: nowrap; }
.food-card--burger { top: 10px; left: 20px; }
.food-card--pizza { top: 10px; right: 0; }
.food-card--biryani { bottom: 120px; left: 0; }
.food-card--delivery { bottom: 120px; right: 20px; }
@keyframes float1 { 0%, 100% { transform: translateY(0px) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(2deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(-10px) rotate(1deg); } 50% { transform: translateY(8px) rotate(-1deg); } }
@keyframes float3 { 0%, 100% { transform: translateY(4px) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(2deg); } }
.float-anim { animation: float1 5s ease-in-out infinite; }
.float-anim2 { animation: float2 6s ease-in-out infinite; }
.float-anim3 { animation: float3 4.5s ease-in-out infinite; }

/* Hero Phone */
.hero-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  background: #111;
  border: 2px solid var(--glass-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px var(--primary-glow);
  animation: float2 7s ease-in-out infinite;
}
.phone-screen { padding: 16px; }
.phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.phone-logo { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--primary); }
.phone-status { font-size: 9px; color: #4ade80; font-weight: 600; }
.phone-order { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.order-row { font-size: 9px; color: var(--text-muted); padding: 5px 8px; background: rgba(255,255,255,0.04); border-radius: 6px; }
.order-status { color: var(--primary-light) !important; animation: blink 2s ease infinite; }
.phone-earnings { text-align: center; padding: 10px; background: rgba(255,90,31,0.1); border-radius: 10px; }
.phone-earnings span { display: block; font-size: 8px; color: var(--text-muted); margin-bottom: 3px; }
.phone-earnings strong { font-family: var(--font-display); font-size: 16px; color: var(--primary); }
.earning-counter { display: block; }
.particle-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(255,90,31,0.15);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-pulse 2s ease infinite;
}
.hero-scroll-hint span { font-size: 10px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
@keyframes scroll-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ===========================
   OFFER SECTION
   =========================== */
#offer {
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(255,90,31,0.06), rgba(255,145,77,0.04));
}
.offer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  border: 1px solid rgba(255,90,31,0.3);
  border-radius: 28px;
  background: rgba(255,90,31,0.04);
  position: relative;
  overflow: hidden;
}
.offer-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,90,31,0.15), transparent 60%);
  pointer-events: none;
}
.offer-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,90,31,0.15);
  border: 1px solid rgba(255,90,31,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.offer-main { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.offer-old { text-align: center; }
.old-label { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 6px; letter-spacing: 1px; text-transform: uppercase; }
.old-price { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: rgba(255,255,255,0.25); text-decoration: line-through; text-decoration-color: #ef4444; }
.offer-arrow { font-size: 36px; color: var(--primary); }
.offer-new { text-align: center; }
.free-label { display: block; font-size: 11px; font-weight: 700; color: #4ade80; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.free-price {
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: none;
  filter: drop-shadow(0 0 30px var(--primary-glow));
}
.free-sub { display: block; font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.offer-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 600px; margin: 0 auto 36px; }
.offer-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.pill { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text); }
.pill-icon { font-size: 15px; }
.offer-btn { font-size: 17px; padding: 18px 44px; }

/* ===========================
   ABOUT SECTION
   =========================== */
#about { background: var(--bg2); }
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-card {
  padding: 32px;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}
.about-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.about-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.about-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.about-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.about-card--wide { grid-column: span 4; }
.about-vision { display: flex; align-items: center; gap: 60px; }
.vision-text { flex: 1; }
.vision-text h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.vision-text p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.vision-numbers { display: flex; gap: 48px; }
.vnumb { text-align: center; }
.vnumb strong { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.vnumb span { font-size: 12px; color: var(--text-muted); }

/* ===========================
   WHY JOIN SECTION
   =========================== */
#why { background: var(--bg); }
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  padding: 32px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--transition), box-shadow 0.3s, border-color 0.3s;
  transform-style: preserve-3d;
}
.why-card:hover { box-shadow: 0 20px 60px var(--primary-glow); border-color: rgba(255,90,31,0.25); }
.why-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.why-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   TIMELINE
   =========================== */
#model { background: var(--bg2); }
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(255,90,31,0.1));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 24px 0;
  position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.tl-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  z-index: 1;
  box-shadow: 0 0 30px var(--primary-glow);
}
.tl-card {
  flex: 1;
  padding: 28px;
  max-width: calc(50% - 80px);
}
.tl-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.tl-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.tl-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   EARNINGS DASHBOARD
   =========================== */
#earnings { background: var(--bg); }
.earnings-dashboard {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}
.dash-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.dash-live { font-size: 12px; color: #4ade80; font-weight: 600; animation: blink 2s ease infinite; }
.dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.dash-metric { display: flex; flex-direction: column; gap: 8px; }
.dash-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.dash-val { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--text); }
.dash-val-prefix, .dash-val-suffix { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--primary); }
.dash-big { font-family: var(--font-display); font-size: 38px; font-weight: 900; color: var(--primary); }
.dash-sub { font-size: 11px; color: var(--text-muted); }
.dash-highlight { padding: 16px; background: rgba(255,90,31,0.07); border: 1px solid rgba(255,90,31,0.15); border-radius: 14px; }
.dash-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.dash-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--transition); }
.dash-fill.animated { transform: scaleX(1); }

.earnings-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier-card {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s;
}
.tier-card:hover { border-color: rgba(255,90,31,0.25); }
.tier-active { border-color: rgba(255,90,31,0.4); background: rgba(255,90,31,0.06); }
.tier-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 12px;
  background: var(--primary);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.tier-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.tier-val { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.tier-desc { font-size: 12px; color: var(--text-muted); }

/* ===========================
   TESTIMONIALS
   =========================== */
#testimonials { background: var(--bg2); overflow: hidden; }
.testimonials-wrap { max-width: 1200px; margin: 0 auto; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--transition);
}
.testi-card {
  flex-shrink: 0;
  width: 360px;
  padding: 32px;
}
.testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 600; }
.testi-author span { font-size: 12px; color: var(--text-muted); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  font-size: 18px;
  cursor: none;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-btn:hover { border-color: var(--primary); background: rgba(255,90,31,0.1); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: none;
  transition: background 0.2s, width 0.3s;
}
.testi-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===========================
   FAQ
   =========================== */
#faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(255,90,31,0.3); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--glass);
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: none;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,90,31,0.05); }
.faq-icon { font-size: 20px; color: var(--primary); font-weight: 400; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===========================
   FINAL CTA
   =========================== */
#final-cta {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,90,31,0.12);
  border: 1px solid rgba(255,90,31,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: blink 2.5s ease infinite;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.cta-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 44px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-btn { font-size: 18px; padding: 20px 52px; box-shadow: 0 20px 60px var(--primary-glow); }
.cta-food-icons {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-food-icons span { font-size: 32px; animation: float1 4s ease-in-out infinite; }
.cta-food-icons span:nth-child(2) { animation-delay: -0.5s; }
.cta-food-icons span:nth-child(3) { animation-delay: -1s; }
.cta-food-icons span:nth-child(4) { animation-delay: -1.5s; }
.cta-food-icons span:nth-child(5) { animation-delay: -2s; }
.cta-food-icons span:nth-child(6) { animation-delay: -2.5s; }
.cta-food-icons span:nth-child(7) { animation-delay: -3s; }
.cta-food-icons span:nth-child(8) { animation-delay: -3.5s; }

/* ===========================
   FOOTER
   =========================== */
#footer { background: #050505; padding: 60px 40px 20px; border-top: 1px solid var(--glass-border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glass-border);
}
.footer-logo { display: flex; align-items: center; font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 14px; cursor: default; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: none;
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,90,31,0.08); }
.whatsapp-btn:hover { border-color: #25d366; color: #25d366; background: rgba(37,211,102,0.08); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h5 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: 0.5px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; cursor: none; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card--wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .timeline-line { display: none; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; }
  .tl-card { max-width: 100%; }
  .vision-numbers { flex-direction: column; gap: 16px; }
}

@media (max-width: 768px) {
  section { padding: 72px 20px; }
  #hero { padding: 100px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-title { font-size: 44px; }
  .hero-stats { gap: 16px; padding: 16px 20px; }
  .nav-inner { padding: 0; gap: 20px; }
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card--wide { grid-column: span 1; }
  .about-vision { flex-direction: column; gap: 28px; }
  .vision-numbers { flex-direction: row; }
  .why-grid { grid-template-columns: 1fr; }
  .offer-container { padding: 36px 20px; }
  .offer-main { flex-direction: column; gap: 20px; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .earnings-tiers { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-title { font-size: 34px; }
  .timeline-item { padding: 16px 0; }
  .tl-num { width: 44px; height: 44px; font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .offer-pills { justify-content: flex-start; }
}


/* ============================
   PERFORMANCE + MOBILE FIXES
   ============================ */

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

button:focus,
a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

@media (hover: hover) and (pointer: fine) {
  body,
  .btn-primary,
  .btn-secondary,
  a,
  button {
    cursor: none;
  }
}

@media (max-width: 768px) {

  body {
    cursor: auto;
  }

  #mouse-glow,
  #hero-canvas,
  .particle-ring,
  .blob2,
  .blob3 {
    display: none !important;
  }

  .hero-content,
  .about-grid,
  .why-grid,
  .dashboard-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-stats {
    flex-direction: column;
    width: 100%;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .tl-card {
    max-width: 100%;
  }

  .offer-container {
    padding: 30px 20px;
  }

  .free-price {
    font-size: 52px;
  }
}
