/* ==========================================
   ZRIDO – Zero Commission Rides
   Complete Stylesheet
   ========================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #6C5CE7;
    --primary-light: #A855F7;
    --secondary: #06B6D4;
    --accent: #F59E0B;
    --dark: #0F0F1A;
    --dark-2: #1A1A2E;
    --dark-3: #2D2D44;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #ADB5BD;
    --gray-500: #6C757D;
    --gray-600: #495057;
    --gray-700: #343A40;
    --white: #FFFFFF;
    --green: #10B981;
    --red: #EF4444;
    --gradient: linear-gradient(135deg, #6C5CE7, #A855F7, #06B6D4);
    --gradient-text: linear-gradient(135deg, #6C5CE7 0%, #A855F7 50%, #06B6D4 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    text-align: center;
}

.loader-svg {
    width: 150px;
    height: 50px;
}

.loader-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 32px;
    fill: url(#logoGrad);
    fill: #A855F7;
}

.loader-bar {
    width: 150px;
    height: 3px;
    background: var(--dark-3);
    border-radius: 4px;
    margin-top: 16px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    animation: loaderProgress 1.5s ease forwards;
}

@keyframes loaderProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 101;
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.announcement-bar a:hover {
    opacity: 0.9;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    margin-top: 40px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    margin-top: 0;
}

.navbar.scrolled .announcement-bar-hidden {
    display: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white !important;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

/* ---------- Gradient Text ---------- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFAFE 0%, #F0F0FF 50%, #FFFFFF 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(108, 92, 231, 0.15);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.1);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.1);
    top: 50%;
    left: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.hero-subtitle strong {
    color: var(--dark);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* ---------- Phone Mockup ---------- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 570px;
    background: var(--white);
    border-radius: 36px;
    border: 4px solid var(--dark);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
}

.phone-frame-dark {
    background: var(--dark);
    border-color: var(--dark-3);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--dark);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.phone-frame-dark .phone-notch {
    background: var(--dark-2);
}

.phone-screen {
    padding: 8px 16px;
    height: calc(100% - 28px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* App Screen Elements */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.app-greeting {
    display: flex;
    align-items: center;
    gap: 8px;
}

.greeting-wave {
    font-size: 20px;
    animation: wave 2s ease infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(15deg); }
}

.app-greeting small {
    font-size: 11px;
    color: var(--gray-400);
    display: block;
}

.app-greeting strong {
    font-size: 14px;
    color: var(--dark);
}

.profile-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.app-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    padding: 12px 14px;
    border-radius: 12px;
    margin: 8px 0;
    font-size: 13px;
    color: var(--gray-400);
}

.app-quick-actions {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.quick-action {
    text-align: center;
}

.qa-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 4px;
}

.qa-bike { background: rgba(108, 92, 231, 0.1); }
.qa-auto { background: rgba(6, 182, 212, 0.1); }
.qa-car { background: rgba(245, 158, 11, 0.1); }
.qa-premium { background: rgba(168, 85, 247, 0.1); }

.quick-action small {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

.app-map {
    flex: 1;
    background: linear-gradient(135deg, #E8F4FD 0%, #F0E6FF 50%, #E0F7FA 100%);
    border-radius: 16px;
    margin: 8px 0;
    position: relative;
    min-height: 120px;
    overflow: hidden;
}

.map-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, white, transparent);
}

.map-pin {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

.map-car {
    position: absolute;
    font-size: 18px;
    animation: moveCar 8s ease infinite;
}

.map-car-1 { top: 30%; left: 20%; animation-delay: 0s; }
.map-car-2 { top: 60%; left: 70%; animation-delay: 2s; }
.map-car-3 { top: 50%; left: 35%; animation-delay: 4s; }

@keyframes moveCar {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(15px, -10px); }
    50% { transform: translate(-10px, 15px); }
    75% { transform: translate(10px, 5px); }
}

.app-bottom-card {
    background: white;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.05);
}

.ride-suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.ride-suggestion + .ride-suggestion {
    border-top: 1px solid var(--gray-200);
}

.ride-icon {
    font-size: 18px;
}

.ride-info {
    flex: 1;
}

.ride-info strong {
    font-size: 13px;
    display: block;
}

.ride-info small {
    font-size: 11px;
    color: var(--gray-400);
}

.ride-fair-badge {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    z-index: 3;
}

.floating-card strong {
    display: block;
    font-size: 14px;
}

.floating-card small {
    color: var(--gray-400);
    font-size: 11px;
}

.fc-icon {
    font-size: 24px;
}

.card-savings {
    top: 80px;
    right: -30px;
}

.card-commission {
    bottom: 120px;
    left: -30px;
}

.animate-float {
    animation: floatCard 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Animations ---------- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Social Proof ---------- */
.social-proof {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.proof-label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 24px;
    font-weight: 500;
}

.proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.proof-icon {
    font-size: 20px;
}

/* ---------- Problem Section ---------- */
.problem-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
}

.comparison-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    background: white;
}

.problem-card {
    border: 2px solid var(--gray-200);
}

.solution-card {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), rgba(6, 182, 212, 0.03));
    position: relative;
    box-shadow: var(--shadow-glow);
}

.cc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cc-icon {
    font-size: 32px;
}

.cc-header h3 {
    font-size: 22px;
}

.cc-badge {
    background: var(--gradient);
    color: white;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.cross {
    color: var(--red);
    font-weight: 700;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    flex-shrink: 0;
}

.check {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    flex-shrink: 0;
}

.vs-badge {
    align-self: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--shadow-glow);
}

/* ---------- Features Section ---------- */
.features-section {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(108, 92, 231, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(6, 182, 212, 0.05));
    border-color: rgba(108, 92, 231, 0.2);
}

.feature-highlight::before {
    opacity: 1;
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-emoji {
    font-size: 36px;
    display: block;
}

.feature-icon {
    width: 56px;
    height: 56px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.feature-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

/* ---------- Zero Commission Section ---------- */
.zero-commission-section {
    padding: 100px 0;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.zero-commission-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.zc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.zc-text .section-tag {
    background: rgba(108, 92, 231, 0.2);
}

.zc-text h2 {
    color: white;
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 20px;
}

.zc-text > p {
    color: var(--gray-400);
    font-size: 16px;
    margin-bottom: 32px;
}

.zc-how-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zc-how-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.zc-how-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.zc-how-item strong {
    color: white;
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.zc-how-item p {
    color: var(--gray-400);
    font-size: 14px;
}

/* Earnings Comparison */
.earnings-comparison {
    background: var(--dark-2);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--dark-3);
}

.earnings-comparison h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
}

.earnings-bar {
    margin-bottom: 20px;
}

.eb-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.eb-track {
    height: 44px;
    background: var(--dark-3);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.eb-fill {
    height: 100%;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.eb-other {
    background: linear-gradient(90deg, var(--gray-500), var(--gray-400));
    color: white;
}

.eb-zrido {
    background: var(--gradient);
    color: white;
}

.savings-callout {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.savings-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--green);
    font-family: var(--font-display);
}

.savings-callout span:last-child {
    color: var(--gray-400);
    font-size: 14px;
}

/* ---------- How It Works ---------- */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-100);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    flex: 1;
    max-width: 300px;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.step-icon {
    font-size: 48px;
    margin: 8px 0 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-500);
}

.step-connector {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.step-connector svg {
    width: 100%;
}

/* ---------- Ride Types ---------- */
.ride-types-section {
    padding: 100px 0;
    background: white;
}

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

.ride-type-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.ride-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(108, 92, 231, 0.2);
}

.rtc-popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), rgba(6, 182, 212, 0.03));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.rtc-visual {
    margin-bottom: 16px;
}

.rtc-emoji {
    font-size: 56px;
}

.ride-type-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.ride-type-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}



.rtc-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rtc-features li {
    font-size: 13px;
    color: var(--gray-600);
}

/* ---------- Safety Section ---------- */
.safety-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.safety-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.safety-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.safety-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.safety-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.safety-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ---------- Reviews Section ---------- */
.reviews-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.reviews-track:active {
    cursor: grabbing;
}

.review-card {
    min-width: 380px;
    max-width: 380px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    flex-shrink: 0;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.author-info span {
    font-size: 12px;
    color: var(--gray-400);
}

.verified-badge {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.review-earnings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.re-label {
    font-size: 12px;
    color: var(--gray-500);
}

.re-amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--green);
}

.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.review-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
}

.review-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
}

.review-dots {
    display: flex;
    gap: 8px;
}

.review-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: var(--transition);
    cursor: pointer;
}

.review-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ---------- Driver CTA Section ---------- */
.driver-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFAFE 0%, #F5F0FF 50%, #EEFAFF 100%);
}

.driver-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.driver-cta-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.driver-cta-content > p {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.driver-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.db-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.db-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.db-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.db-item p {
    font-size: 13px;
    color: var(--gray-500);
}

/* Earnings Card */
.driver-earnings-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.dec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dec-header h4 {
    font-size: 16px;
}

.dec-badge {
    background: var(--gradient);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.dec-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.dec-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dec-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray-600);
}

.dec-green {
    color: var(--green);
    font-weight: 600;
}

.dec-divider {
    height: 1px;
    background: var(--gray-200);
}

.dec-total {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.dec-cta {
    margin-top: 16px;
    text-align: center;
}

.dec-cta small {
    color: var(--gray-400);
    font-size: 12px;
}

/* ---------- Cities Section ---------- */
.cities-section {
    padding: 100px 0;
    background: white;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.city-card {
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.city-status {
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
}

.city-card h4 {
    font-size: 16px;
}

.city-live {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.city-soon {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.city-more {
    background: var(--gradient);
    border-color: transparent;
}

.city-more h4 {
    color: white;
}

.city-more .city-status {
    color: white;
}

/* ---------- Download Section ---------- */
.download-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6C5CE7 0%, #A855F7 50%, #06B6D4 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.download-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -200px;
    left: -200px;
}

.download-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    right: -150px;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.download-text h2 {
    color: white;
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.download-text .gradient-text {
    -webkit-text-fill-color: #FDE68A;
}

.download-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    transition: var(--transition);
}

.store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.store-btn small {
    font-size: 11px;
    opacity: 0.8;
    display: block;
}

.store-btn strong {
    font-size: 16px;
    display: block;
}

.download-qr {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-qr small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.qr-placeholder {
    background: white;
    border-radius: var(--radius-sm);
    padding: 4px;
}

/* Download Phone */
.download-visual {
    display: flex;
    justify-content: center;
}

.download-phone .phone-frame {
    width: 250px;
    height: 500px;
}

.download-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px !important;
}

.ds-logo {
    margin-bottom: 8px;
}

.ds-welcome {
    text-align: center;
}

.ds-welcome h3 {
    color: white;
    font-size: 20px;
}

.ds-welcome p {
    color: var(--gray-400);
    font-size: 13px;
}

.ds-input {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: 10px;
    color: var(--gray-400);
    font-size: 13px;
}

.ds-btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.ds-divider {
    width: 100%;
    text-align: center;
    position: relative;
    color: var(--gray-400);
    font-size: 12px;
}

.ds-divider::before,
.ds-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--dark-3);
}

.ds-divider::before { left: 0; }
.ds-divider::after { right: 0; }

.ds-btn-social {
    width: 100%;
    padding: 12px;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    color: white;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ds-btn-social span {
    font-weight: 700;
    font-size: 16px;
}

.ds-terms {
    font-size: 10px;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.5;
}

/* ---------- FAQ Section ---------- */
.faq-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--dark);
    text-align: left;
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--gray-400);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--dark-3);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray-400);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

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

    .hero-subtitle {
        margin: 0 auto 36px;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .floating-card {
        display: none;
    }

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

    .feature-highlight {
        grid-column: span 2;
    }

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

    .vs-badge {
        margin: 0 auto;
    }

    .zc-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .driver-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .download-qr {
        justify-content: center;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .navbar {
        margin-top: 36px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 101;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        font-size: 20px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .phone-frame {
        width: 240px;
        height: 490px;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

    .feature-highlight {
        grid-column: span 1;
    }

    .rides-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
        width: 60px;
    }

    .review-card {
        min-width: 300px;
        max-width: 300px;
    }

    .driver-benefits {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 30px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    .phone-frame {
        width: 220px;
        height: 450px;
    }

    .review-card {
        min-width: 260px;
        max-width: 260px;
        padding: 24px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .store-btn {
        flex: 1;
    }
}

/* ---------- Custom Selection ---------- */
::selection {
    background: rgba(108, 92, 231, 0.2);
    color: var(--dark);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
