/* ═══════════════════════════════════════════════
   OPPA RIDE — REDESIGNED STYLESHEET 2026
   Aesthetic: Bold Editorial × Modern Mobility
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── TOKENS ── */
:root {
    --yellow: hsl(47, 91%, 58%);
    --yellow-bright: hsl(47, 91%, 58%);
    --yellow-pale: #FFF8DC;
    --dark: #0E1017;
    --dark-2: #1A1D26;
    --dark-3: #252932;
    --mid: #4A4F63;
    --light: #F7F4EC;
    --cream: #F2EDD8;
    --white: #FFFFFF;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.14);
    --shadow-lg: 0 24px 60px rgba(0,0,0,0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'DM Sans', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.bebas, h1, h2 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
em { font-family: 'DM Serif Display', serif; font-style: italic; }

/* ── LAYOUT HELPERS ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.container--narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--yellow { background: var(--yellow); }
.section--cream { background: var(--cream); }

/* ── SECTION LABELS ── */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    background: rgba(232, 186, 30, 0.12);
    border: 1px solid rgba(232, 186, 30, 0.3);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-label--light {
    color: var(--yellow);
    background: rgba(232, 186, 30, 0.15);
    border-color: rgba(232, 186, 30, 0.4);
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}
.section-title--light { color: var(--white); }

.section-subtitle {
    color: var(--mid);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-sub {
    color: var(--mid);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}
/* em inside dark sections */
.section--dark em { color: var(--yellow); }
.section--yellow em { color: var(--dark); }

/* ════════════════════════════════════════
   TOPBAR / NAV
════════════════════════════════════════ */
.topbar {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    z-index: 200;
    transition: background var(--transition), box-shadow var(--transition);
    background: #f4ca46;
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 0;
}
.topbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.topbar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    width: 100%;
}

.topbar-brand-section {
    flex-shrink: 0;
}

.topbar-menu-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    justify-content: flex-end;
}
.brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    color: #030303;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color var(--transition);
}
.brand--light { color: var(--white); }
.brand--light .brand-accent { color: var(--white); }
.brand-accent { color: currentColor; }
.brand-text { display: inline; }
.brand-logo { height: 50px; width: auto; }
.topbar.scrolled .brand { color: var(--dark); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
}
.nav-links-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    transition: color var(--transition), text-decoration-color var(--transition);
    color: #000000;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.nav-link:hover {
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.topbar.scrolled .nav-links { color: var(--dark); }
.topbar.scrolled .nav-link { color: var(--dark); }
.topbar.scrolled .nav-link:hover { color: var(--yellow); }
.nav-links .nav-cta {
    background: var(--dark);
    color: var(--white);
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { background: var(--dark-2); transform: translateY(-1px); text-decoration: none; }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.topbar.scrolled .mobile-menu-toggle span { background: var(--dark); }
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: var(--white);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This keeps the right side of the image (the person) in view */
    object-position: 80% center;
    transform: scale(1.0);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,12,20,0.3) 0%,
        rgba(10,12,20,0.2) 40%,
        rgba(10,12,20,0.88) 100%
    ),
    linear-gradient(
        to right,
        rgba(10,12,20,0.55) 0%,
        transparent 60%
    );
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    width: 100%;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    width: 100%;
}

.hero-content-wrapper {
    margin-bottom: 4rem;
}

.hero-text-section {
    margin-bottom: 2rem;
}

.hero-buttons-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s ease forwards;
}
.eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-top: 10.5rem;
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-title em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    padding-bottom: 15px;
    color: var(--yellow);
    display: block;
}
.hero-sub {
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 500px;
    line-height: 1.65;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 500px;
    line-height: 1.65;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s ease forwards;
    text-shadow: 0 1px 12px rgba(0,0,0,0.65), 0 2px 4px rgba(0,0,0,0.45);
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s ease forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    width: fit-content;
    opacity: 0;
    animation: fadeUp 0.9s 1.1s ease forwards;
}

.hero-stats-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    width: fit-content;
    opacity: 0;
    animation: fadeUp 0.9s 1.1s ease forwards;
}

.stat-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--yellow);
    line-height: 1;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--yellow);
    line-height: 1;
}

.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }

.stat-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.btn-hero-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 8px 30px rgba(232, 186, 30, 0.4);
}

.btn-hero-primary:hover {
    background: var(--yellow-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 186, 30, 0.5);
}

.btn-hero-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 999px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.scroll-cue {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    opacity: 0;
    animation: fadeIn 1s 1.5s ease forwards;
}

.scroll-cue-section {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    opacity: 0;
    animation: fadeIn 1s 1.5s ease forwards;
}

.scroll-text {
    display: block;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.step-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}
.step-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.step-image-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.step-card:hover .step-img img { transform: scale(1.05); }
.step-card:hover .step-image { transform: scale(1.05); }

.step-body {
    padding: 1.8rem;
    position: relative;
    z-index: 1;
}

.step-content-wrapper {
    padding: 1.8rem;
    position: relative;
    z-index: 1;
}

.step-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.step-body p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.step-description { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ════════════════════════════════════════
   SPLIT FEATURE
════════════════════════════════════════ */
.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.split-img {
    position: relative;
    overflow: hidden;
}

.split-image-section {
    position: relative;
    overflow: hidden;
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.split-feature:hover .split-img img { transform: scale(1.03); }
.split-feature:hover .split-image { transform: scale(1.03); }

.split-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.split-badge-wrapper {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 1;
}

.split-content {
    background: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text-section {
    background: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-header {
    margin-bottom: 1.5rem;
}

.split-desc { color: var(--mid); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

.split-description { color: var(--mid); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

.feature-list { display: grid; gap: 1.2rem; }
.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fl-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 2px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 2px;
}

.feature-list strong { display: block; font-weight: 700; font-size: 1rem; margin-bottom: 0.15rem; }
.feature-list span { font-size: 0.88rem; color: var(--mid); }

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title { display: block; font-weight: 700; font-size: 1rem; margin-bottom: 0.15rem; }
.feature-subtitle { font-size: 0.88rem; color: var(--mid); display: block; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.service-card--dark { background: var(--dark-2); color: var(--white); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-img { height: 240px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-image-wrapper { height: 240px; overflow: hidden; }
.service-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-image { transform: scale(1.06); }
.service-content { padding: 1.8rem; }
.service-content-wrapper { padding: 1.8rem; }
.service-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
}
.service-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-content p { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }
.service-description { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }
.service-card--dark .service-content p { color: rgba(255,255,255,0.55); }
.service-card--dark .service-description { color: rgba(255,255,255,0.55); }
.service-cap {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mid);
}
.service-capacity {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mid);
}
.service-card--dark .service-cap { color: rgba(255,255,255,0.5); }
.service-card--dark .service-capacity { color: rgba(255,255,255,0.5); }
.service-card--dark .service-cap { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.testi-card {
    background: rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition), background var(--transition);
}
.testimonial-card {
    background: rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition), background var(--transition);
}
.testi-card:hover { transform: translateY(-4px); background: rgba(0,0,0,0.1); }
.testimonial-card:hover { transform: translateY(-4px); background: rgba(0,0,0,0.1); }
.testi-card--featured {
    background: var(--dark);
    color: var(--white);
}
.testimonial-card--featured {
    background: var(--dark);
    color: var(--white);
}
.testi-stars { font-size: 1.1rem; color: var(--dark); }
.testimonial-stars { font-size: 1.1rem; color: var(--dark); }
.testi-card--featured .testi-stars { color: var(--yellow); }
.testimonial-card--featured .testimonial-stars { color: var(--yellow); }
.testi-card p { font-size: 0.98rem; line-height: 1.65; flex: 1; color: var(--dark-2); }
.testimonial-quote { font-size: 0.98rem; line-height: 1.65; flex: 1; color: var(--dark-2); }
.testi-card--featured p { color: rgba(255,255,255,0.8); }
.testimonial-card--featured .testimonial-quote { color: rgba(255,255,255,0.8); }
.testi-card footer { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-footer { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
    width: 42px; height: 42px; min-width: 42px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1rem;
}
.testimonial-avatar {
    width: 42px; height: 42px; min-width: 42px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1rem;
}
.testi-card footer strong { display: block; font-size: 0.95rem; }
.testimonial-footer strong { display: block; font-size: 0.95rem; }
.author-name { display: block; font-size: 0.95rem; }
.testi-card footer span { font-size: 0.8rem; color: var(--mid); }
.testimonial-footer span { font-size: 0.8rem; color: var(--mid); }
.author-title { font-size: 0.8rem; color: var(--mid); }
.testi-card--featured footer span { color: rgba(255,255,255,0.5); }
.testimonial-card--featured .testimonial-footer span { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════
   DOWNLOAD
════════════════════════════════════════ */
.download-section { position: relative; overflow: hidden; }
.download-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,186,30,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.download-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.download-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-content-section {
    display: flex;
    flex-direction: column;
}

.download-header {
    margin-bottom: 1.5rem;
}

.download-subtitle { 
    color:rgba(255,255,255,0.7);
    padding-bottom: 20pt;
 }

.app-features {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.app-features-list {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 2rem;
    list-style: none;
}

.app-features li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.app-feature {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-text {
    display: block;
}
.app-feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
    color: var(--yellow);
    stroke: var(--yellow);
}
.app-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.download-buttons-wrapper { display: flex; gap: 1rem; flex-wrap: wrap; }

.app-store-btn {
    display: inline-flex;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    color: inherit;
    transition: transform var(--transition);
}

.app-store-button {
    display: inline-flex;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    color: inherit;
    transition: transform var(--transition);
}

.app-store-btn:hover {
    transform: translateY(-2px);
}

.app-store-button:hover {
    transform: translateY(-2px);
}

.app-store-btn img,
.footer-app-btn img {
    display: block;
    width: auto;
    height: auto;
    max-width: 180px;
}

.app-badge-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 180px;
}
.app-store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.app-store-btn small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.app-store-btn strong { display: block; font-size: 1rem; }

.download-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.download-visual-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    border-radius: 40px;
    background: var(--dark-3);
    border: 8px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}

.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
}

.phone-screen { position: relative; width: 100%; height: 100%; }

.phone-screen-image { width: 100%; height: 100%; object-fit: cover; }

.phone-screen img { width: 100%; height: 100%; object-fit: cover; }

.phone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,12,20,0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 1rem;
}

.phone-screen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,12,20,0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 1rem;
}

.app-ui {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
}

.app-ui-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
}

.app-ui-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.location-text {
    display: block;
}

.app-ui-badge {
    background: #22c55e;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.1em;
}

.status-badge {
    background: #22c55e;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.1em;
}

.app-ui-eta {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--yellow);
    letter-spacing: 0.04em;
}

.app-eta-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--yellow);
    letter-spacing: 0.04em;
}

.qr-block {
    text-align: center;
}

.qr-code-wrapper {
    text-align: center;
}

.qr-code-wrapper {
    text-align: center;
}

.qr-code-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    padding: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    cursor: pointer;
    transition: transform 0.25s ease;
}

.qr-code-image:hover {
    transform: scale(1.03);
}

.qr-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.qr-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.qr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.qr-modal-content {
    position: relative;
    z-index: 1;
    width: min(480px, calc(100% - 2rem));
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 1.4rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(16px);
}

.qr-modal-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 22px;
    background: white;
    padding: 1rem;
}

.qr-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.6rem;
    height: 2.6rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #111;
    font-size: 1.6rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.qr-modal-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.qr-modal-text {
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    max-width: 95%;
}

.qr-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.qr-block img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    border: 3px solid rgba(255,255,255,0.1);
    margin: 0 auto 0.5rem;
    object-fit: contain;
    background: white;
    padding: 4px;
}

/* ════════════════════════════════════════
   DRIVERS
════════════════════════════════════════ */
.drivers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.drivers-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.drivers-text-section {
    display: flex;
    flex-direction: column;
}

.drivers-header {
    margin-bottom: 1.5rem;
}

.drivers-description {
    color: var(--mid);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.drivers-benefits-wrapper {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.driver-benefit-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.driver-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.driver-benefit-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.driver-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

.driver-benefit-icon {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.dc-icon {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.driver-benefit-title {
    font-size: 1rem;
    font-weight: 700;
}

.driver-card strong {
    font-size: 1rem;
    font-weight: 700;
}

.driver-benefit-text {
    font-size: 0.88rem;
    color: var(--mid);
}

.driver-card p {
    font-size: 0.88rem;
    color: var(--mid);
}

.driver-cta-button,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: auto;
    border: 2px solid var(--dark);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    padding: 0.35rem 0.8rem;
    white-space: nowrap;
    border-radius: 999px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.driver-cta-button:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.driver-cta-button--primary {
    background: var(--yellow);
    color: var(--dark);
    border: 2px solid var(--yellow);
    font-size: 1rem;
    font-weight: 800;
    padding: 0.9rem 2rem;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 24px rgba(232, 186, 30, 0.45);
    margin-bottom: 0.5rem;
}
.driver-cta-button--primary:hover {
    background: var(--yellow-bright);
    border-color: var(--yellow-bright);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(232, 186, 30, 0.55);
}

.drivers-image-section {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 540px;
    box-shadow: var(--shadow-lg);
}

.drivers-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 540px;
    box-shadow: var(--shadow-lg);
}

.drivers-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.drivers-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.drivers-image-section:hover .drivers-image { transform: scale(1.04); }
.drivers-img:hover img { transform: scale(1.04); }

.drivers-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
}

.drivers-badge-wrapper {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1;
}

.drivers-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-container {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--yellow); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-question::-webkit-details-marker { display: none; }

.question-text {
    display: block;
    text-align: left;
    flex: 1;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    background: var(--light);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--mid);
    transition: transform var(--transition), background var(--transition);
    flex-shrink: 0;
}

.faq-ico {
    width: 30px;
    height: 30px;
    background: var(--light);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--mid);
    transition: transform var(--transition), background var(--transition);
    flex-shrink: 0;
}

.faq-item[open] .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--yellow);
    color: var(--dark);
}

details[open] .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--yellow);
    color: var(--dark);
}

.faq-item[open] .faq-ico {
    transform: rotate(45deg);
    background: var(--yellow);
    color: var(--dark);
}

details[open] .faq-ico {
    transform: rotate(45deg);
    background: var(--yellow);
    color: var(--dark);
}

.faq-answer {
    padding: 0 1.8rem 1.5rem;
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.7;
}

.faq-body {
    padding: 0 1.8rem 1.5rem;
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.faq-body p {
    margin: 0;
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

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

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-background-image { width: 100%; height: 100%; object-fit: cover; }

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,12,20,0.85) 0%, rgba(10,12,20,0.6) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.cta-content h2 em { color: var(--yellow); font-family: 'DM Serif Display', serif; font-style: italic; }
.cta-title em { color: var(--yellow); font-family: 'DM Serif Display', serif; font-style: italic; }

.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-description { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-button {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 8px 30px rgba(232, 186, 30, 0.4);
}

.cta-button:hover {
    background: var(--yellow-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 186, 30, 0.5);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
}

.footer-main-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-info {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 2rem;
    max-width: 260px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 2rem;
    max-width: 260px;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
    /*margin-top: 2rem;*/
    max-width: 260px;
    font-style: normal;
}

.footer-social-section { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.6);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.soc {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.6);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.facebook-icon { }
.instagram-icon { }
.twitter-icon { }


.social-icon:hover { background: var(--yellow); color: var(--dark); transform: translateY(-2px); border-color: transparent; }
.soc:hover { background: var(--yellow); color: var(--dark); transform: translateY(-2px); border-color: transparent; }

.social-icon svg { width: 24px;   /* Forces the SVG to stay small */
    height: 24px;
    display: block;
}

.soc svg { width: 18px; height: 18px; fill: currentColor; }

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-download-column {
    display: flex;
    flex-direction: column;
}

.footer-links-list { display: grid; gap: 0.7rem; list-style: none; }

.footer-col ul { display: grid; gap: 0.7rem; }

.footer-link-item { list-style: none; }

.footer-link {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-col li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-link:hover { color: var(--yellow); }
.footer-col li a:hover { color: var(--yellow); }

.footer-app-link {
    display: block;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 500;
    transition: transform var(--transition);
}

.footer-app-btn {
    display: block;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    transition: transform var(--transition);
}

.footer-app-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-app-link:hover { transform: translateY(-2px); }
.footer-app-btn:hover { transform: translateY(-2px); }

.app-store-badge {
    display: block;
    width: auto;
    height: auto;
    max-width: 160px;
}

.footer-copyright-section {
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

.privacy-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(10, 12, 20, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 999;
}

.privacy-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.privacy-content {
    width: min(100%, 1080px);
    max-height: min(90vh, 960px);
    overflow-y: auto;
    background: rgba(15, 18, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.privacy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.privacy-header h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.privacy-close {
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.privacy-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.privacy-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--yellow);
}

.privacy-body p,
.privacy-body ul {
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.78);
}

.privacy-body ul {
    list-style: disc inside;
}

.privacy-body a {
    color: var(--yellow);
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 1rem;
    }
    .privacy-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .privacy-close {
        align-self: flex-end;
    }
}

.copyright-text {
    margin: 0;
}

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--dark);
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    box-shadow: 0 8px 30px rgba(232, 186, 30, 0.4);
    z-index: 199;
    display: grid;
    place-items: center;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--yellow-bright); transform: translateY(-3px); }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Scroll-reveal class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .download-container { grid-template-columns: 1fr; }
    .download-inner { grid-template-columns: 1fr; }
    .download-content-section { order: 2; }
    .download-text { order: 2; }
    .download-visual-section { order: 1; }
    .download-visual { flex-direction: row; justify-content: center; }
    .hero-stats,
    .hero-stats-section {
        max-width: 520px;
        margin: 2rem auto 0;
        justify-content: center;
        text-align: center;
    }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-main-section { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
    .split-feature { grid-template-columns: 1fr; }
    .split-img { height: 360px; }
    .split-image-section { height: 360px; }
    .split-content { padding: 3rem 2rem; }
    .split-text-section { padding: 3rem 2rem; }
    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .drivers-split { grid-template-columns: 1fr; }
    .drivers-container { grid-template-columns: 1fr; }
    .drivers-img { height: 380px; }
    .drivers-image-section { height: 380px; }
    .about-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(14,16,23,0.08);
        box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    }
    .nav-links-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    .topbar.scrolled .nav-links { background: rgba(255,255,255,0.98); }
    .nav-links.open { display: flex; }
    .nav-links a {
        width: 100%;
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
        text-align: center;
        color: var(--dark);
    }
    .topbar.scrolled .nav-links a { color: var(--dark); }
    .nav-links .nav-cta { text-align: center; width: 100%; margin-top: 0.5rem; }
    .nav-links a:hover { color: var(--yellow); }
    .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .stat-divider { width: 60px; height: 1px; }
    .hero-buttons-section { flex-direction: column; }
    .hero-btns { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { text-align: center; }
    .hero-stats,
    .hero-stats-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 1rem 1rem;
        margin: 1.5rem auto 0;
        text-align: center;
    }
    .hero-stats .stat-item,
    .hero-stats-section .stat-item {
        width: 100%;
        min-width: 0;
    }
    .hero-stats .stat-divider,
    .hero-stats-section .stat-divider {
        display: none;
    }
    .hero-stats .stat-number,
    .hero-stats-section .stat-number,
    .hero-stats .stat-num,
    .hero-stats-section .stat-num {
        font-size: 1.5rem;
    }
    .hero-stats .stat-text,
    .hero-stats-section .stat-text,
    .hero-stats .stat-label,
    .hero-stats-section .stat-label {
        font-size: 0.75rem;
    }
    .download-visual { flex-direction: column; }
    .download-visual-section { flex-direction: column; }
    .download-content-section { order: 0; }
    .download-text { order: 0; }
    .download-visual-section { order: 0; }
    .phone-mockup { width: 200px; height: 400px; }
    .app-features-list { max-width: 100%; }
    .app-feature { flex-wrap: wrap; }
    .app-btns { flex-direction: column; }
    .app-store-btn { justify-content: center; }
    .app-store-button { width: auto; max-width: 220px; justify-content: center; }
    .download-buttons-wrapper { flex-direction: column; gap: 0.75rem; align-items: center; }
    .app-badge-image { max-width: 100%; height: auto; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-main-section { grid-template-columns: 1fr; }
    .qr-code-image { max-width: 120px; }
    .qr-text { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .section { padding: 4rem 0; }
    .hero-title { font-size: 4.5rem; padding-top: 100px; }
    .hero-subtitle { font-size: 0.95rem; max-width: 100%; }
    .hero-sub { font-size: 0.95rem; max-width: 100%; }
    .hero-inner { padding-bottom: 3rem; }
    .hero-container { padding-bottom: 3rem; }
    .hero-content-wrapper { margin-bottom: 2rem; }
    .hero-buttons-section { width: 100%; }
    .hero-btns { width: 100%; }
    .btn-hero-primary { width: 100%; }
    .btn-hero-secondary { width: 100%; }
    .hero-stats,
    .hero-stats-section {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: min(100%, 280px);
        max-width: 100%;
        padding: 0.75rem 0.85rem;
        margin: 1rem auto 0;
        text-align: center;
    }
    .hero-stats .stat-item,
    .hero-stats-section .stat-item {
        width: 100%;
        min-width: 0;
    }
    .hero-stats .stat-divider,
    .hero-stats-section .stat-divider {
        display: none;
    }
    .hero-stats .stat-number,
    .hero-stats-section .stat-number,
    .hero-stats .stat-num,
    .hero-stats-section .stat-num {
        font-size: 1.3rem;
    }
    .hero-stats .stat-text,
    .hero-stats-section .stat-text,
    .hero-stats .stat-label,
    .hero-stats-section .stat-label {
        font-size: 0.7rem;
    }
    .container, .container--narrow { padding: 0 1.25rem; }
    .section-title { font-size: 2.8rem; }
    .scroll-cue { display: none; }
    .scroll-cue-section { display: none; }
    .download-section { padding: 3rem 0; }
    .download-container { gap: 2rem; }
    .download-inner { gap: 2rem; }
    .download-header { margin-bottom: 1rem; }
    .download-subtitle { padding-bottom: 1rem; font-size: 0.95rem; }
    .section-label { font-size: 0.7rem; }
    .app-features-list { gap: 0.5rem; margin-bottom: 1.5rem; }
    .app-feature { font-size: 0.9rem; gap: 0.5rem; }
    .phone-mockup { width: 160px; height: 320px; border-radius: 30px; border: 6px solid rgba(255,255,255,0.1); }
    .phone-mockup-wrapper { margin: 1rem 0; }
    .download-buttons-wrapper { flex-direction: column; gap: 0.5rem; width: 100%; align-items: center; }
    .app-store-btn { width: auto; }
    .app-store-button { width: auto; max-width: 180px; }
    .app-badge-image { max-width: 140px; height: auto; }
    .qr-code-wrapper { margin-top: 1rem; }
    .qr-code-image { max-width: 100px; }
    .qr-text { font-size: 0.75rem; }
}


.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }

.stat-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.15); }
