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

:root {
    --purple:       #1D1148;
    --purple-dark:  #130B32;
    --purple-light: #2a1960;
    --green:        #00D68F;
    --green-dark:   #00B87A;
    --green-light:  #00FFB2;
    --white:        #FFFFFF;
    --cream:        #F5F2FF;
    --gray-light:   #F8F9FA;
    --gray:         #6b7280;
    --dark:         #1a1a2e;
    --font:         'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); overflow-x: hidden; }

.global-grid { display: none; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 22px 0; background: transparent; transition: all 0.35s ease;
}
.navbar.scrolled {
    background: var(--purple); padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; border-radius: 12px; display: block; }
.navbar.scrolled .nav-logo-img { border-radius: 0; }
.footer-logo-img { height: 80px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; gap: 34px; align-items: center; }
.nav-links a {
    color: var(--purple); text-decoration: none;
    font-size: 14.5px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-dark); }
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.82); }
.navbar.scrolled .nav-links a:hover { color: var(--green); }
.nav-cta {
    background: var(--green); color: var(--purple) !important;
    padding: 11px 26px; border-radius: 50px; font-weight: 700 !important;
    transition: all 0.25s !important; color: var(--purple) !important;
}
.nav-cta:hover {
    background: var(--green-light) !important; transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,214,143,0.35);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--purple); transition: all 0.3s; display: block; }
.navbar.scrolled .hamburger span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile dropdown menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--purple);
    z-index: 998;
    flex-direction: column;
    padding: 8px 0 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: dropDown 0.22s ease;
}
@keyframes dropDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.82); font-size: 15px; font-weight: 600; text-decoration: none; padding: 13px 24px; transition: all 0.18s; border-left: 3px solid transparent; }
.mobile-menu a:hover { color: var(--green); background: rgba(255,255,255,0.05); border-left-color: var(--green); }
.mob-link-cta { margin: 8px 16px 4px; padding: 12px 20px !important; background: var(--green); color: var(--purple) !important; border-radius: 10px; text-align: center; font-weight: 700 !important; border-left: none !important; }
.mob-link-cta:hover { background: var(--green-light) !important; border-left: none !important; }

/* ── HERO ── */
.hero {
    min-height: auto;
    background-color: #ffffff;
    background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px);
    background-size: 52px 52px;    display: flex; align-items: center; flex-direction: column;
    justify-content: center; position: relative; overflow: hidden;
}

/* Dot grid */
.hero-grid {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(29,17,72,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}

/* Aurora */
.hero-aurora { display: none; }

/* Orbs */
.hero-orb { display: none; }
@keyframes orb1 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-45px,32px);} }
@keyframes orb2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(32px,-45px);} }

.hero-inner {
    max-width: 1200px; width: 100%; margin: 0 auto; padding: 80px 28px 30px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: start; position: relative; z-index: 2;
}

/* ── LEFT ── */
.hero-left { padding-top: 80px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(0,214,143,0.1); border: 1px solid rgba(0,214,143,0.3);
    border-radius: 50px; padding: 9px 20px; color: var(--green-dark);
    font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0;
    animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(0,214,143,0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(0,214,143,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,214,143,0); }
}

/* Hero Label */
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(29,17,72,0.06); border: 1px solid rgba(29,17,72,0.15);
    border-radius: 50px; padding: 9px 20px; color: var(--purple);
    font-size: 13px; font-weight: 600; margin-bottom: 22px; letter-spacing: 0.2px;
}
.hero-label i { font-size: 12px; color: var(--green-dark); }

/* Title */
.hero-title {
    font-size: 64px; font-weight: 900; color: var(--purple);
    line-height: 1.05; margin-bottom: 26px; letter-spacing: -2px;
}

/* Service Pills */
.hero-pills {
    display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px;
}
.hero-pills span {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; border: 1.5px solid rgba(29,17,72,0.12);
    border-radius: 50px; padding: 7px 15px;
    font-size: 13px; font-weight: 600; color: var(--purple);
    box-shadow: 0 2px 8px rgba(29,17,72,0.07);
}
.hero-pills span i { color: var(--green-dark); font-size: 12px; }

/* Hero Feature Checklist */
.hero-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px;
}
.hfeat {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 500; color: var(--dark);
}
.hfeat i { color: var(--green-dark); font-size: 13px; flex-shrink: 0; }

/* Trust line */
.hero-trust {
    margin-top: 18px; font-size: 13px; color: var(--gray);
    display: flex; align-items: center; gap: 7px;
}
.hero-trust i { color: var(--green-dark); font-size: 12px; }

.hero-desc {
    font-size: 17px; color: var(--gray); line-height: 1.8;
    margin-bottom: 36px; max-width: 480px;
}

/* Buttons */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
    background: var(--purple); color: #fff; padding: 15px 36px;
    border-radius: 50px; font-weight: 700; font-size: 15px;
    text-decoration: none; display: inline-flex; align-items: center;
    gap: 10px; transition: all 0.3s; border: none; cursor: pointer; font-family: var(--font);
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); }
.btn-outline {
    background: rgba(29,17,72,0.06); color: var(--purple); padding: 15px 36px;
    border-radius: 50px; font-weight: 700; font-size: 15px;
    text-decoration: none; display: inline-flex; align-items: center;
    gap: 10px; border: 2px solid var(--purple); transition: all 0.3s;
    cursor: pointer; font-family: var(--font);
}
.btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }

/* Hero Stats Bar — full width */
.hero-stats-bar {
    width: 100%; background: var(--cream);
    border-top: 1px solid rgba(29,17,72,0.08);
    border-bottom: 1px solid rgba(29,17,72,0.08);
    display: flex; align-items: stretch; position: relative; z-index: 2;
}
.hstat-bar-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 28px 20px; text-align: center;
    transition: background 0.25s;
}
.hstat-bar-item:hover { background: rgba(29,17,72,0.04); }
.hstat-bar-item .hstat-ico { display: none; }
.hstat-bar-item strong {
    font-size: 36px; font-weight: 900;
    color: var(--purple); line-height: 1; letter-spacing: -1px;
    margin-bottom: 6px; display: block;
}
.hstat-bar-item span {
    font-size: 12px; color: var(--gray);
    font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
}
.hstat-bar-divider {
    width: 1px; background: rgba(29,17,72,0.08); flex-shrink: 0; align-self: stretch;
}

/* ── RIGHT / IMAGE ── */
.hero-img-side {
    position: relative; display: flex;
    align-items: flex-start; justify-content: center;
    min-height: 580px; padding-top: 90px; align-self: start;
}
.hero-img-glow {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,214,143,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-rider-img {
    position: relative; z-index: 2;
    width: 100%; max-width: 400px; height: 440px;
    object-fit: cover; object-position: top center;
    border-radius: 32px;
    filter: none;
}
.hero-rider-img.no-bg {
    object-fit: contain; border-radius: 0;
}
@keyframes riderFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* Floating cards on image side */
.float-card {
    position: absolute; z-index: 5;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(29,17,72,0.15), 0 2px 8px rgba(29,17,72,0.06);
}

/* Card 1 — Order Status */
.fc1 { top: 110px; left: -20px; padding: 16px 18px; width: 220px; }
.fc1-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.fc-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.fc-badge-green { background: rgba(0,214,143,0.12); color: #00A86B; }
.fc1-time { font-size: 11px; color: var(--gray); }
.fc1-title { font-size: 14px; font-weight: 800; color: var(--purple); margin-bottom: 3px; }
.fc1-sub { font-size: 11.5px; color: var(--gray); margin-bottom: 14px; }
.fc1-steps { display: flex; align-items: center; gap: 0; }
.fc1-step {
    width: 26px; height: 26px; border-radius: 50%; border: 2px solid rgba(29,17,72,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: rgba(29,17,72,0.25); flex-shrink: 0;
}
.fc1-step.done { background: var(--green); border-color: var(--green); color: #fff; }
.fc1-step.active { border-color: var(--purple); color: var(--purple); background: rgba(29,17,72,0.06); }
.fc1-line { flex: 1; height: 2px; background: rgba(29,17,72,0.1); }
.fc1-line.done { background: var(--green); }

/* Card 2 — Delivery Time */
.fc2 { bottom: 60px; right: -18px; padding: 14px 16px; display: flex; align-items: center; gap: 14px; width: 210px; }
.fc2-icon {
    width: 44px; height: 44px; background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 13px; display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 18px; flex-shrink: 0;
}
.fc2-content { flex: 1; }
.fc2-label { font-size: 11px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.fc2-time { font-size: 13.5px; font-weight: 700; color: var(--purple); margin-bottom: 8px; }
.fc2-time strong { color: var(--green-dark); }
.fc2-bar { height: 4px; background: rgba(29,17,72,0.08); border-radius: 4px; overflow: hidden; }
.fc2-bar-fill { height: 100%; width: 72%; background: linear-gradient(90deg, var(--purple), var(--green)); border-radius: 4px; }

/* Card 3 — Rating */
.fc3 { top: 48%; right: -18px; transform: translateY(-50%); padding: 16px 20px; min-width: 130px; text-align: center; }
.fc3-top { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 4px; }
.fc3-num { font-size: 34px; font-weight: 900; color: var(--purple); line-height: 1; }
.fc3-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.fc3-label { font-size: 12px; font-weight: 700; color: var(--purple); margin-bottom: 2px; }
.fc3-reviews { font-size: 11px; color: var(--gray); }
@keyframes fcF  { 0%,100%{transform:translateY(0);}    50%{transform:translateY(-12px);} }
@keyframes fcF3 { 0%,100%{transform:translateY(-50%);} 50%{transform:translateY(calc(-50% - 12px));} }

.fc-avatar {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.fc-av-green { background: rgba(0,214,143,0.15); color: #00A86B; }
.fc-av-amber { background: rgba(245,158,11,0.15); color: #D97706; }
.fc-text strong { display: block; font-size: 13px; color: var(--dark); font-weight: 700; margin-bottom: 2px; }
.fc-text span   { font-size: 11px; color: var(--gray); }
.fc3-stars { color: #F59E0B; font-size: 13px; letter-spacing: 2px; }
.fc3 strong { font-size: 24px; font-weight: 900; color: var(--dark); line-height: 1.1; }
.fc3 span   { font-size: 11px; color: var(--gray); }

/* ── OLD PHONE (kept for reference, hidden) ── */
.hero-visual {
    position: relative; display: flex;
    align-items: center; justify-content: center; min-height: 650px;
}

/* Orbit pills */
.orbit-pill {
    position: absolute; display: flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px; padding: 9px 16px; font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.78); backdrop-filter: blur(12px);
    white-space: nowrap; z-index: 4; transition: transform 0.1s ease-out;
}
.orbit-pill i { color: var(--green); font-size: 11px; }
.op1 { top: 55px;   left: -56px;  animation: opFloat 5s ease-in-out infinite 0s; }
.op2 { top: 44px;   right: -50px; animation: opFloat 5s ease-in-out infinite 1.2s; }
.op3 { bottom: 155px; left: -62px;  animation: opFloat 5s ease-in-out infinite 2.4s; }
.op4 { bottom: 78px;  right: -52px; animation: opFloat 5s ease-in-out infinite 3.6s; }
@keyframes opFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-11px);} }

/* Phone */
.phone-wrap { width: 272px; position: relative; z-index: 3; animation: phoneFloat 6s ease-in-out infinite; }
@keyframes phoneFloat { 0%,100%{transform:translateY(0) rotate(-1deg);} 50%{transform:translateY(-22px) rotate(0.8deg);} }

.phone-glow {
    position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
    width: 170px; height: 28px; background: var(--green);
    border-radius: 50%; filter: blur(24px); opacity: 0.22;
}

.phone-mockup {
    width: 272px; background: #06031A; border-radius: 46px; overflow: hidden;
    border: 1.5px solid rgba(0,214,143,0.16);
    box-shadow:
        0 0 0 7px rgba(0,214,143,0.03),
        0 0 64px rgba(0,214,143,0.11),
        0 64px 110px rgba(0,0,0,0.8);
}
.phone-notch {
    width: 88px; height: 24px; background: #06031A;
    border-radius: 0 0 16px 16px; margin: 0 auto;
    border: 1.5px solid rgba(0,214,143,0.1); border-top: none; position: relative; z-index: 3;
}
.phone-screen { padding: 12px 14px 20px; background: #09071F; }

/* ── App UI ── */
.app-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.app-logo-sm {
    width: 24px; height: 24px; background: var(--green); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; color: var(--purple); font-size: 10px;
}
.app-header span { font-size: 12px; font-weight: 700; color: #fff; flex: 1; }
.app-notif { position: relative; }
.app-notif i { color: rgba(255,255,255,0.4); font-size: 13px; }
.notif-dot {
    position: absolute; top: -2px; right: -2px;
    width: 6px; height: 6px; background: var(--green); border-radius: 50%;
    border: 1px solid #09071F;
}

.app-greeting { margin-bottom: 11px; }
.app-greeting p { font-size: 12.5px; font-weight: 700; color: #fff; }
.app-greeting span { font-size: 10px; color: rgba(255,255,255,0.38); }

.app-searchbar {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06); border-radius: 10px;
    padding: 8px 12px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,0.07);
}
.app-searchbar i { color: rgba(255,255,255,0.26); font-size: 10px; }
.app-searchbar span { font-size: 10.5px; color: rgba(255,255,255,0.26); }

.app-svc-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 12px; }
.app-svc-item {
    background: rgba(255,255,255,0.05); border-radius: 10px;
    padding: 8px 4px; text-align: center; border: 1px solid rgba(255,255,255,0.05);
}
.active-svc { background: rgba(0,214,143,0.12); border-color: rgba(0,214,143,0.2); }
.app-svc-item i { font-size: 14px; color: var(--green); display: block; margin-bottom: 3px; }
.app-svc-item span { font-size: 8px; color: rgba(255,255,255,0.44); }

.app-order {
    background: rgba(0,214,143,0.07); border-radius: 12px;
    padding: 10px 11px; margin-bottom: 9px; border: 1px solid rgba(0,214,143,0.13);
}
.app-order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.app-order-header span:first-child { font-size: 9px; color: rgba(255,255,255,0.44); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.app-order-status {
    font-size: 8.5px; font-weight: 700; color: var(--green);
    background: rgba(0,214,143,0.13); padding: 3px 8px; border-radius: 50px;
    display: flex; align-items: center; gap: 4px;
}
.status-dot {
    width: 5px; height: 5px; border-radius: 50%; background: var(--green);
    animation: pulseDot 1.5s ease-out infinite;
}
.app-order-svc { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.app-order-icon {
    width: 28px; height: 28px; background: var(--green); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; color: var(--purple); font-size: 12px; flex-shrink: 0;
}
.app-order-svc strong { display: block; font-size: 10.5px; color: #fff; font-weight: 700; }
.app-order-svc span { font-size: 9px; color: rgba(255,255,255,0.36); }
.app-order-eta {
    margin-left: auto; background: rgba(0,214,143,0.15); color: var(--green);
    font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 8px;
}
.app-progress-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 6px; overflow: hidden; }
.app-progress-fill { height: 100%; width: 65%; background: linear-gradient(90deg, var(--green-dark), var(--green)); border-radius: 2px; animation: progPulse 2.5s ease-in-out infinite; }
@keyframes progPulse { 0%,100%{width:64%;} 50%{width:68%;} }
.app-steps { display: flex; justify-content: space-between; }
.app-steps span { font-size: 7px; color: rgba(255,255,255,0.26); }
.app-steps span.done { color: var(--green); font-weight: 600; }
.app-steps span.current { color: #fff; font-weight: 700; }

.app-map {
    background: linear-gradient(145deg, #091915 0%, #061D0E 100%);
    border-radius: 10px; height: 60px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; border: 1px solid rgba(0,214,143,0.1);
}
.map-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,214,143,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,214,143,0.07) 1px, transparent 1px);
    background-size: 13px 13px;
}
.map-route {
    position: absolute; left: 20%; top: 50%; width: 60%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,214,143,0.5), var(--green));
    border-radius: 2px; transform: translateY(-50%);
}
.app-map i { font-size: 20px; color: var(--green); opacity: 0.65; position: relative; z-index: 1; }
.map-ping {
    position: absolute; top: 44%; left: 64%; width: 9px; height: 9px;
    border-radius: 50%; background: var(--green); transform: translate(-50%,-50%); z-index: 2;
}
.map-ping::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid var(--green); opacity: 0;
    animation: pingRing 2s ease-out infinite;
}
@keyframes pingRing { 0%{transform:scale(0.8);opacity:1;} 100%{transform:scale(3.5);opacity:0;} }

/* ── FLOATING CARDS ── */

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(29,17,72,0.35); font-size: 11.5px; z-index: 2;
    animation: scrollBounce 2.2s ease-in-out infinite; letter-spacing: 0.5px;
}
.scroll-arrow {
    width: 18px; height: 18px;
    border-right: 2px solid rgba(29,17,72,0.28);
    border-bottom: 2px solid rgba(29,17,72,0.28);
    transform: rotate(45deg);
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(7px);} }

/* ── SECTION SHARED ── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.tag { font-size: 12.5px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px; }
.sec-title { font-size: 42px; font-weight: 800; color: var(--purple); line-height: 1.18; margin-bottom: 16px; }
.sec-desc { font-size: 16px; color: var(--gray); line-height: 1.75; max-width: 560px; margin-bottom: 60px; }

/* ══ SERVICES SHOWCASE ══ */
.services { padding: 0; background-color: #fff; background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px); background-size: 52px 52px; background-attachment: fixed; }
.rv-showcase-section { background: transparent; padding: 30px 44px 30px; position: relative; }

/* Header */
.rv-showcase-header { text-align: center; margin-bottom: 52px; position: relative; }

.rv-sc-ghost {
    font-size: 120px; font-weight: 900; color: rgba(29,17,72,0.04);
    letter-spacing: .08em; text-transform: uppercase; line-height: 1;
    user-select: none; pointer-events: none; margin-bottom: -48px;
}
.rv-sc-tag-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 18px;
}
.rv-sc-tag-line { display: block; width: 40px; height: 1px; background: var(--green); opacity: .6; }
.rv-sc-tag {
    font-size: 11px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--green-dark);
}
.rv-sc-h2-wrap { margin-bottom: 18px; }
.rv-sc-h2-light {
    font-size: 15px; font-weight: 400; font-style: italic;
    color: #aaa; letter-spacing: .03em; margin-bottom: 4px;
}
.rv-sc-h2-bold {
    font-size: 58px; font-weight: 900; color: var(--purple);
    line-height: 1.05; margin: 0; letter-spacing: -1.5px;
}
.rv-sc-outline {
    -webkit-text-stroke: 2.5px var(--purple); color: transparent;
}
.rv-sc-accent-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 32px;
}
.rv-sc-accent-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); opacity: .7; }
.rv-sc-accent-line { width: 36px; height: 1px; background: var(--green); opacity: .3; }
.rv-sc-accent-text {
    font-size: 11px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gray);
}

/* Tabs */
.rv-showcase-tabs {
    display: inline-flex; background: #f0eef8; border-radius: 50px;
    padding: 4px; gap: 2px; overflow-x: auto;
}
.rv-stab {
    border: 0; background: transparent; font-family: var(--font);
    font-size: 12px; font-weight: 600; color: #666;
    padding: 9px 20px; border-radius: 50px; cursor: pointer;
    transition: background .22s, color .22s, box-shadow .22s;
    white-space: nowrap;
}
.rv-stab.active { background: var(--purple); color: #fff; box-shadow: 0 3px 14px rgba(29,17,72,0.28); }
.rv-stab:not(.active):hover { color: var(--purple); }

/* Panels */
.rv-showcase-panels-wrap { position: relative; overflow: hidden; min-height: 400px; }
.rv-showcase-panel {
    display: flex; align-items: center; gap: 70px;
    max-width: 1100px; margin: 0 auto; width: 100%;
    position: absolute; top: 0; left: 0; right: 0;
    opacity: 0; transform: translateX(60px);
    pointer-events: none;
    transition: opacity .42s ease, transform .42s cubic-bezier(0.25,0.8,0.25,1);
}
.rv-showcase-panel.active {
    opacity: 1; transform: translateX(0);
    pointer-events: auto; position: relative;
}
.rv-showcase-panel.slide-out {
    opacity: 0; transform: translateX(-60px);
    position: absolute; pointer-events: none;
}

/* Left text */
.rv-sp-text { flex: 1; padding-bottom: 24px; position: relative; }
.rv-sp-ghost-num {
    font-size: 140px; font-weight: 900; color: rgba(29,17,72,0.05);
    line-height: 1; position: absolute; top: -24px; left: -14px;
    user-select: none; pointer-events: none; z-index: 0;
}
.rv-sp-eyebrow {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--green-dark); background: rgba(0,184,122,0.09);
    border: 1px solid rgba(0,184,122,0.22); border-radius: 20px;
    padding: 4px 14px; margin-bottom: 16px; position: relative; z-index: 1;
}
.rv-sp-title {
    font-size: 50px; font-weight: 900; color: var(--purple);
    line-height: 1.05; margin: 10px 0 16px; position: relative; z-index: 1;
    letter-spacing: -1px;
}
.rv-sp-outline { -webkit-text-stroke: 2px var(--purple); color: transparent; }
.rv-sp-desc {
    font-size: 14px; color: var(--gray); line-height: 1.8;
    margin-bottom: 22px; max-width: 420px;
}
.rv-sp-stat-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; margin: 18px 0;
}
.rv-sp-stat { display: flex; flex-direction: column; gap: 2px; }
.rv-sp-stat-num {
    font-size: 24px; font-weight: 900; color: var(--purple); line-height: 1;
}
.rv-sp-stat-lbl {
    font-size: 11px; font-weight: 600; color: var(--gray);
    text-transform: uppercase; letter-spacing: .08em;
}
.rv-sp-chips {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px;
}
.rv-sp-chips span {
    font-size: 11px; font-weight: 600; color: var(--purple);
    background: rgba(29,17,72,0.06); border: 1px solid rgba(29,17,72,0.15);
    border-radius: 20px; padding: 4px 13px; letter-spacing: .04em;
}
.rv-sp-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--purple); color: #fff; font-family: var(--font);
    font-size: 14px; font-weight: 700; padding: 12px 26px;
    border-radius: 50px; text-decoration: none;
    transition: background .2s, transform .2s;
}
.rv-sp-cta:hover { background: var(--green-dark); color: #fff; transform: translateX(3px); }

/* Right visual */
.rv-sp-visual { flex: 0 0 460px; display: flex; align-items: center; justify-content: center; }
.rv-sp-img { width: 100%; height: auto; object-fit: contain; border-radius: 24px; box-shadow: 0 20px 60px rgba(29,17,72,0.15); }
.rv-sp-visual-card {
    width: 100%; height: 340px;
    background: linear-gradient(145deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 28px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 20px;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 60px rgba(29,17,72,0.2);
}
.rv-sp-visual-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0,214,143,0.12) 0%, transparent 60%);
}
.rv-sp-big-icon {
    font-size: 100px; color: var(--green); opacity: 0.9;
    position: relative; z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(0,214,143,0.3));
}
.rv-sp-visual-label {
    font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.6);
    letter-spacing: .05em; position: relative; z-index: 1;
}

/* ── BEAUTY & WELLNESS CARD ── */
.rv-sp-beauty-card {
    width: 100%; background: linear-gradient(145deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 28px; padding: 36px 28px;
    box-shadow: 0 20px 60px rgba(29,17,72,0.2);
    position: relative; overflow: hidden;
}
.rv-sp-beauty-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0,214,143,0.14) 0%, transparent 55%);
    pointer-events: none;
}
.rv-beauty-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px;
}
.rv-beauty-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px; padding: 20px 12px; transition: all 0.3s; cursor: default;
}
.rv-beauty-item:hover {
    background: rgba(0,214,143,0.14); border-color: rgba(0,214,143,0.35);
    transform: translateY(-4px);
}
.rv-beauty-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(0,214,143,0.18); display: flex; align-items: center;
    justify-content: center; color: var(--green); font-size: 22px;
}
.rv-beauty-item span {
    font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.75);
    text-align: center; letter-spacing: .03em;
}
.rv-beauty-badge {
    display: flex; align-items: center; gap: 10px;
    background: rgba(0,214,143,0.12); border: 1px solid rgba(0,214,143,0.25);
    border-radius: 12px; padding: 12px 16px;
}
.rv-beauty-badge i { color: var(--green); font-size: 16px; flex-shrink: 0; }
.rv-beauty-badge span { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.7); }
.rv-sp-chips span i { margin-right: 4px; font-size: 10px; }

/* ══ HOW IT WORKS ══ */
.how { padding: 30px 44px 30px; background-color: #fff; background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px); background-size: 52px 52px; background-attachment: fixed; position: relative; overflow: hidden; }
.how-inner { max-width: 1200px; margin: 0 auto; }

/* Header — matches services section style */
.how-showcase-header { text-align: center; margin-bottom: 56px; position: relative; }
.how-sc-ghost {
    font-size: 120px; font-weight: 900; color: rgba(29,17,72,0.04);
    letter-spacing: .08em; text-transform: uppercase; line-height: 1;
    user-select: none; pointer-events: none; margin-bottom: -48px;
}
.how-sc-tag-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 18px;
}
.how-sc-tag-line { display: block; width: 40px; height: 1px; background: var(--green); opacity: .6; }
.how-sc-tag {
    font-size: 11px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--green-dark);
}
.how-sc-h2-wrap { margin-bottom: 18px; }
.how-sc-h2-light {
    font-size: 15px; font-weight: 400; font-style: italic;
    color: #aaa; letter-spacing: .03em; margin-bottom: 4px;
}
.how-sc-h2-bold {
    font-size: 58px; font-weight: 900; color: var(--purple);
    line-height: 1.05; margin: 0; letter-spacing: -1.5px;
}
.how-sc-outline { -webkit-text-stroke: 2.5px var(--purple); color: transparent; }
.how-sc-accent-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 0;
}
.how-sc-accent-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); opacity: .7; }
.how-sc-accent-line { width: 36px; height: 1px; background: var(--green); opacity: .3; }
.how-sc-accent-text {
    font-size: 11px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gray);
}

/* Steps grid */
/* ── ZIGZAG STEPS ── */
.how-zz { display: flex; flex-direction: column; gap: 0; }

/* Each row: 2 columns */
.how-zz-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; padding: 60px 0;
}
.how-zz-row-rev .how-zz-visual { order: 1; }
.how-zz-row-rev .how-zz-text   { order: 2; }

/* Divider between rows */
.how-zz-divider { display: flex; align-items: center; justify-content: center; padding: 0 80px; }
.how-zz-div-line {
    width: 100%; height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(29,17,72,0.1) 30%, rgba(0,214,143,0.25) 50%, rgba(29,17,72,0.1) 70%, transparent);
    border-radius: 2px;
}

/* Text side */
.how-zz-step-label {
    font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gray); margin-bottom: 14px;
}
.how-zz-step-label span {
    color: var(--green-dark); font-size: 13px;
}
.how-zz-h3 {
    font-size: 36px; font-weight: 900; color: var(--purple);
    line-height: 1.15; margin-bottom: 16px; letter-spacing: -1px;
}
.how-zz-p {
    font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 28px;
}
.how-zz-list {
    list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.how-zz-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 600; color: var(--dark);
}
.how-zz-list li i { color: var(--green-dark); font-size: 15px; flex-shrink: 0; }

/* Visual card side */
.how-zz-visual { display: flex; align-items: center; justify-content: center; }

.how-zz-vis-card {
    width: 100%; max-width: 380px; min-height: 280px;
    background: linear-gradient(145deg, var(--vc-clr, #1D1148) 0%, color-mix(in srgb, var(--vc-clr, #1D1148) 70%, #2a1960) 100%);
    border-radius: 28px; padding: 40px 36px;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 60px rgba(29,17,72,0.2);
    transition: transform .35s, box-shadow .35s;
}
.how-zz-vis-card:hover { transform: translateY(-6px) rotate(1deg); box-shadow: 0 30px 80px rgba(29,17,72,0.28); }
.how-zz-vis-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,214,143,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.how-zz-vis-card::after {
    content: ''; position: absolute; bottom: -30px; left: -30px;
    width: 140px; height: 140px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.how-zz-vis-ico {
    width: 64px; height: 64px; border-radius: 20px;
    background: rgba(0,214,143,0.18); border: 1px solid rgba(0,214,143,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 28px; position: relative; z-index: 1;
}
.how-zz-vis-num {
    font-size: 88px; font-weight: 900; color: rgba(255,255,255,0.06);
    line-height: 1; letter-spacing: -4px; position: absolute;
    bottom: 10px; right: 16px; user-select: none; pointer-events: none;
}
.how-zz-vis-label {
    font-size: 22px; font-weight: 800; color: #fff;
    line-height: 1.2; position: relative; z-index: 1;
}
.how-zz-vis-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(0,214,143,0.15); border: 1px solid rgba(0,214,143,0.3);
    border-radius: 50px; padding: 7px 16px;
    font-size: 11.5px; font-weight: 700; color: var(--green);
    position: relative; z-index: 1;
}
.how-zz-vis-badge i { font-size: 10px; }
.how-zz-vis-final { background: linear-gradient(145deg, #0A6E52 0%, #0d8a68 100%); }

/* Image visual wrapper */
.how-zz-img-wrap {
    width: 100%; max-width: 460px; position: relative;
    border-radius: 28px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(29,17,72,0.2);
    transition: transform .35s, box-shadow .35s;
}
.how-zz-img-wrap:hover { transform: translateY(-6px) rotate(1deg); box-shadow: 0 30px 80px rgba(29,17,72,0.28); }
.how-zz-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; border-radius: 28px;
}
.how-zz-img-badge {
    position: absolute; bottom: 18px; left: 18px;
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
    border-radius: 50px; padding: 8px 18px;
    font-size: 12px; font-weight: 700; color: var(--purple);
    box-shadow: 0 4px 16px rgba(29,17,72,0.15);
}
.how-zz-img-badge i { color: var(--green-dark); font-size: 11px; }

/* ── APP SCREENSHOTS ── */
.screenshots {
    padding: 80px 0;
    background-color: #fff;
    background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px);
    background-size: 52px 52px;    overflow: hidden; position: relative;
}
.ss-inner { max-width: 1200px; margin: 0 auto; padding: 0 44px; position: relative; z-index: 1; }
.ss-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

/* Left description */
.ss-desc-col { display: flex; flex-direction: column; }
.ss-h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 900; color: var(--purple); line-height: 1.1; margin: 18px 0 20px; letter-spacing: -1px; }
.ss-h2-outline { color: transparent; -webkit-text-stroke: 2.5px var(--purple); }
.ss-desc { font-size: 15px; color: var(--gray); line-height: 1.82; margin-bottom: 28px; }
.ss-points { display: flex; flex-direction: column; gap: 12px; }
.ss-point { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--dark); }
.ss-point i { color: var(--green-dark); font-size: 15px; flex-shrink: 0; }

/* Right screenshots */
.ss-imgs-col { display: flex; align-items: flex-end; justify-content: center; }
.ss-imgs-row { display: flex; align-items: flex-end; gap: 14px; }
.ss-phone {
    border-radius: 22px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(29,17,72,0.2);
    border: 3px solid rgba(29,17,72,0.12);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}
.ss-phone img { width: 100%; display: block; }
.ss-phone-side { width: 180px; }
.ss-phone-side:first-child { transform: rotate(-4deg) translateY(20px); }
.ss-phone-side:last-child { transform: rotate(4deg) translateY(20px); }
.ss-phone-center {
    width: 220px;
    border-color: var(--purple);
    box-shadow: 0 28px 60px rgba(29,17,72,0.28);
    transform: translateY(-10px);
}
.ss-phone:hover { transform: translateY(-14px) rotate(0deg) !important; }

@media (max-width: 900px) {
    .ss-layout { grid-template-columns: 1fr; gap: 50px; }
    .ss-desc-col { text-align: center; align-items: center; }
    .ss-desc-col .how-sc-tag-wrap { justify-content: center !important; }
    .ss-imgs-col { justify-content: center; }
}

/* ── WHY RAPIDVIT ── */
.why {
    padding: 30px 44px 40px;
    background-color: #fff;
    background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px);
    background-size: 52px 52px;    position: relative; overflow: hidden;
}
.why::before {
    content: ''; position: absolute;
    top: -120px; right: -80px; width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(29,17,72,0.035) 0%, transparent 70%);
    pointer-events: none;
}
.why::after {
    content: ''; position: absolute;
    bottom: -80px; left: 10%; width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,214,143,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.why-wrap { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

/* ── Header ── */
.why-header { text-align: center; margin-bottom: 72px; }
.why-h-ghost {
    font-size: 120px; font-weight: 900; color: rgba(29,17,72,0.04);
    letter-spacing: .08em; text-transform: uppercase; line-height: 1;
    user-select: none; pointer-events: none; margin-bottom: -44px;
}
.why-h-tag-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
.why-h-line { display: block; width: 36px; height: 1px; background: var(--green); opacity: .6; }
.why-h-tag { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-dark); }
.why-h-sub { font-size: 14px; font-weight: 400; font-style: italic; color: #aaa; margin-bottom: 8px; }
.why-h-title { font-size: 54px; font-weight: 900; color: var(--purple); line-height: 1.05; margin: 0; letter-spacing: -1.5px; }
.why-h-outline { -webkit-text-stroke: 2.5px var(--purple); color: transparent; }

/* ── Flow layout (single column, JS draws U-curves) ── */
.why-flow {
    position: relative;
    display: flex; flex-direction: column;
    padding: 0 100px;
}
.why-flow-svg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: visible;
}

/* ── Feature cards ── */
.why-flow-card {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 28px;
    padding: 32px 44px;
    background: #fff;
    border: 1.5px solid rgba(29,17,72,0.07);
    border-radius: 22px;
    margin: 18px 0;
    box-shadow: 0 2px 14px rgba(29,17,72,0.05);
    transition: all 0.35s ease;
}
.why-flow-card:hover {
    border-color: rgba(0,214,143,0.3);
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(29,17,72,0.1), 0 0 0 1px rgba(0,214,143,0.1);
}
.why-flow-card:hover .why-fc-num {
    -webkit-text-stroke: 2px var(--green);
    filter: drop-shadow(0 0 10px rgba(0,214,143,0.2));
}
.why-flow-card:hover .why-fc-ico {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 16px 44px rgba(29,17,72,0.28), 0 0 0 6px rgba(0,214,143,0.1);
}
.why-fc-num {
    font-size: 80px; font-weight: 900; line-height: 1;
    color: transparent; -webkit-text-stroke: 2px rgba(29,17,72,0.1);
    letter-spacing: -4px; flex-shrink: 0; user-select: none;
    transition: all 0.4s ease; min-width: 80px;
}
.why-fc-ico {
    width: 72px; height: 72px; border-radius: 22px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    box-shadow: 0 10px 32px rgba(29,17,72,0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-fc-h3 { font-size: 22px; font-weight: 800; color: var(--purple); margin-bottom: 8px; line-height: 1.2; }
.why-fc-p  { font-size: 14px; color: var(--gray); line-height: 1.75; margin: 0; }


/* ── STATS ── */
.stats { padding: 80px 0; background: var(--green); }
.stats-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 28px;
    display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center;
}
.stat h3 { font-size: 52px; font-weight: 900; color: var(--purple); line-height: 1; }
.stat p { font-size: 15px; color: var(--purple); opacity: 0.72; margin-top: 8px; font-weight: 600; }

/* ── PROVIDER ── */
/* ── PROVIDER (redesigned) ── */
.provider {
    padding: 90px 0;
    background-color: #fff;
    background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px);
    background-size: 52px 52px;    position: relative; overflow: hidden;
}
.prov-bg-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.prov-bg-orb-1 { display: none; }
.prov-bg-orb-2 { bottom: -140px; left: -100px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(29,17,72,0.06) 0%, transparent 68%); }
.prov-bg-orb-3 { display: none; }
.prov-bg-grid { display: none; }
.prov-wrap { max-width: 1200px; margin: 0 auto; padding: 0 44px; position: relative; z-index: 2; }
.prov-inner {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
    margin-top: 48px;
}
.prov-left { position: relative; }
.prov-desc {
    font-size: 15px; color: var(--gray); line-height: 1.85;
    margin-bottom: 32px; max-width: 420px;
    padding-left: 16px; border-left: 3px solid var(--green);
    position: relative; z-index: 1;
}
.prov-stats-row {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 40px; position: relative; z-index: 1;
    background: var(--gray-light); border-radius: 18px;
    padding: 20px 24px; border: 1px solid rgba(29,17,72,0.07);
    width: fit-content;
}
.prov-stat { display: flex; flex-direction: column; gap: 5px; padding: 0 22px; }
.prov-stat:first-child { padding-left: 0; }
.prov-stat:last-child { padding-right: 0; }
.prov-stat-num { font-size: 32px; font-weight: 900; color: var(--purple); line-height: 1; font-family: 'Poppins', sans-serif; }
.prov-stat-lbl { font-size: 11px; color: var(--gray); letter-spacing: .02em; }
.prov-stat-div { width: 1px; height: 40px; background: rgba(29,17,72,0.1); flex-shrink: 0; }
.prov-cta {
    display: inline-flex; align-items: center; gap: 12px;
    background: #1D1148;
    color: #fff; font-weight: 800; font-size: 15px;
    padding: 17px 36px; border-radius: 50px; text-decoration: none;
    transition: all 0.3s; box-shadow: 0 10px 34px rgba(29,17,72,0.4);
    position: relative; z-index: 1; opacity: 1;
}
.prov-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(29,17,72,0.55); background: #2a1960; }
.prov-cta i { transition: transform 0.3s; }
.prov-cta:hover i { transform: translateX(5px); }

/* Perk cards */
.prov-perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; counter-reset: perk-counter; }
.prov-perk {
    counter-increment: perk-counter;
    background: #fff; border: 1px solid rgba(29,17,72,0.08);
    border-top: 3px solid var(--purple);
    border-radius: 18px; padding: 24px 20px;
    transition: all 0.35s; position: relative; overflow: hidden;
}
.prov-perk::after {
    content: counter(perk-counter, decimal-leading-zero);
    position: absolute; top: 14px; right: 16px;
    font-size: 11px; font-weight: 800; color: rgba(29,17,72,0.12);
    font-family: 'Poppins', sans-serif; letter-spacing: .05em;
}
.prov-perk:hover { border-top-color: var(--green); transform: translateY(-6px); box-shadow: 0 20px 44px rgba(29,17,72,0.11); }
.prov-perk-ico {
    width: 50px; height: 50px; border-radius: 14px;
    background: rgba(29,17,72,0.07); display: flex; align-items: center; justify-content: center;
    color: var(--purple); font-size: 20px; margin-bottom: 14px; transition: all 0.3s;
}
.prov-perk:hover .prov-perk-ico { background: var(--purple); color: #fff; box-shadow: 0 8px 20px rgba(29,17,72,0.25); }
.prov-perk h4 { font-size: 14px; font-weight: 700; color: var(--purple); margin-bottom: 6px; }
.prov-perk p { font-size: 12px; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── TESTIMONIALS ── */
/* ── TESTIMONIALS (card-stack) ── */
.testi { padding: 30px 0; background-color: #fff; background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px); background-size: 52px 52px; background-attachment: fixed; }
.testimonials-section { padding: 0 44px 36px; background: transparent; position: relative; }
.tst-header { text-align: center; margin-bottom: 48px; position: relative; }
.tst-ghost { font-size: clamp(56px,10vw,120px); font-weight: 900; color: rgba(0,0,0,0.04); font-family: 'Poppins',sans-serif; letter-spacing: -.04em; line-height: 1; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); white-space: nowrap; pointer-events: none; user-select: none; }
.rv-tst-tag-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; position: relative; z-index: 1; }
.rv-tst-tag-line { display: block; width: 36px; height: 1.5px; background: linear-gradient(90deg, transparent, rgba(0,214,143,0.5)); }
.rv-tst-tag-wrap .rv-tst-tag-line:last-child { background: linear-gradient(90deg, rgba(0,214,143,0.5), transparent); }
.rv-tst-tag { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--green); background: rgba(0,214,143,0.09); border: 1px solid rgba(0,214,143,0.25); border-radius: 20px; padding: 5px 18px; }
.rv-tst-h2-wrap { position: relative; z-index: 1; margin-bottom: 4px; }
.rv-tst-h2-light { font-size: 14px; font-style: italic; font-weight: 400; color: var(--gray); letter-spacing: .03em; margin-bottom: 6px; }
.rv-tst-h2-bold { font-family: 'Poppins',sans-serif; font-size: clamp(32px,6vw,56px); font-weight: 800; color: var(--dark); line-height: 1.1; letter-spacing: -.01em; margin: 0; }
.rv-tst-outline { color: transparent; -webkit-text-stroke: 2.5px var(--green); }
.tst-deck-wrap { width: min(340px,90vw); margin: 0 auto; position: relative; }
.tst-deck { position: relative; width: min(340px,90vw); height: 460px; }
.tst-card { background: linear-gradient(160deg,#2a1960 0,#1D1148 45%,#0f0930 100%); border: 0; border-radius: 24px; padding: 32px 26px 28px; display: flex; flex-direction: column; align-items: center; gap: 0; position: absolute; top: 0; left: 0; width: min(280px,82vw); height: 420px; box-shadow: 0 8px 32px rgba(29,17,72,0.5); transition: transform .45s cubic-bezier(0.25,0.8,0.25,1),opacity .45s ease,box-shadow .3s; cursor: grab; user-select: none; will-change: transform,opacity; overflow: hidden; }
.tst-card::before { content: '\201C'; position: absolute; top: -10px; left: 14px; font-size: 160px; line-height: 1; color: rgba(255,255,255,0.05); font-family: Georgia,serif; pointer-events: none; z-index: 0; }
.tst-card::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; z-index: 0; }
.tst-card.tst-active { transform: translate(0,0) rotate(0); opacity: 1; z-index: 4; box-shadow: 0 20px 60px rgba(29,17,72,0.5); }
.tst-card.tst-behind-1 { transform: translate(-14px,-10px) rotate(-4deg); opacity: 1; z-index: 3; pointer-events: none; }
.tst-card.tst-behind-2 { transform: translate(-26px,-18px) rotate(-7.5deg); opacity: .75; z-index: 2; pointer-events: none; }
.tst-card.tst-hidden { opacity: 0; z-index: 1; pointer-events: none; transform: translate(-36px,-24px) rotate(-10deg); }
.tst-card.tst-swipe-left { transform: translateX(-140%) rotate(-16deg) !important; opacity: 0 !important; }
.tst-card.tst-swipe-right { transform: translateX(140%) rotate(16deg) !important; opacity: 0 !important; }
.tst-card-top { display: flex; flex-direction: column; align-items: center; gap: 5px; margin-bottom: 20px; position: relative; z-index: 1; }
.tst-av { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(255,255,255,0.2),0 6px 20px rgba(0,0,0,0.3); margin-bottom: 10px; background: #1D1148; }
.tst-av img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.tst-name { font-size: 16px; font-weight: 700; color: #fff; font-family: 'Poppins',sans-serif; }
.tst-role { font-size: 11px; color: rgba(255,255,255,0.5); font-family: 'Poppins',sans-serif; font-weight: 500; }
.tst-stars { color: #FFD700; font-size: 16px; letter-spacing: 3px; position: relative; z-index: 1; margin-top: 2px; }
.tst-quote { font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,0.88); font-family: 'Poppins',sans-serif; font-weight: 400; position: relative; z-index: 1; text-align: center; font-style: italic; }
.tst-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 14px; }
.tst-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #ddd; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dark); transition: background .2s,border-color .2s,color .2s; flex-shrink: 0; }
.tst-btn:hover { background: var(--green); border-color: var(--green); color: var(--purple); }
.tst-dots { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: center; max-width: 200px; }
.tst-dot { width: 7px; height: 7px; border-radius: 50%; background: #ddd; transition: background .25s,transform .25s; cursor: pointer; }
.tst-dot.active { background: var(--green); transform: scale(1.3); }

/* ── FAQ ── */
.faq { padding: 80px 0; background-color: #fff; background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px); background-size: 52px 52px; background-attachment: fixed; }
.faq-inner { max-width: 1200px; margin: 0 auto; padding: 0 44px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-head { text-align: left; margin-bottom: 36px; }
.faq-head .how-sc-tag-wrap { justify-content: flex-start; }
.faq-head .how-sc-ghost { left: 0; transform: none; }
.faq-contact-card { background: var(--purple); border-radius: 24px; padding: 34px 28px; }
.faq-cc-ico { width: 52px; height: 52px; border-radius: 16px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 22px; margin-bottom: 18px; }
.faq-contact-card h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.faq-contact-card p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 26px; }
.faq-cc-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--purple); font-weight: 700; font-size: 13px; padding: 12px 22px; border-radius: 50px; text-decoration: none; transition: all 0.3s; }
.faq-cc-btn:hover { background: var(--green-light); transform: translateY(-2px); }
.faq-cc-btn i { transition: transform 0.3s; }
.faq-cc-btn:hover i { transform: translateX(4px); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid rgba(29,17,72,0.09); border-radius: 16px; overflow: hidden; transition: all 0.3s; background: #fff; }
.faq-item.open { border-color: var(--purple); box-shadow: 0 8px 28px rgba(29,17,72,0.08); }
.faq-q {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px; cursor: pointer; transition: all 0.3s;
}
.faq-num { font-size: 11px; font-weight: 800; color: rgba(29,17,72,0.18); font-family: 'Poppins', sans-serif; flex-shrink: 0; min-width: 24px; }
.faq-item.open .faq-num { color: var(--purple); }
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--purple); flex: 1; line-height: 1.4; }
.faq-ic {
    width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(29,17,72,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple); font-size: 12px; flex-shrink: 0; transition: all 0.35s;
}
.faq-item.open .faq-ic { background: var(--purple); color: #fff; border-color: var(--purple); transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-ans { max-height: 200px; }
.faq-ans p { padding: 4px 20px 20px 50px; font-size: 14.5px; color: var(--gray); line-height: 1.75; }

/* ── DOWNLOAD CTA ── */
/* ── DOWNLOAD CTA ── */
.download {
    padding: 90px 0;
    background-color: #fff;
    background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px);
    background-size: 52px 52px;    position: relative; overflow: hidden;
}
.dl-bg-orb { display: none; }
.dl-bg-grid { display: none; }
.dl-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 44px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 2;
}
.dl-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.dl-tag-line { display: block; width: 40px; height: 1px; background: var(--green); opacity: .6; }
.dl-tag { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-dark); }
.dl-h2 { font-size: clamp(38px, 4.5vw, 58px); font-weight: 900; color: var(--purple); line-height: 1.1; margin-bottom: 22px; letter-spacing: -1.5px; }
.dl-h2-green { color: transparent; -webkit-text-stroke: 2.5px var(--purple); }
.dl-desc { font-size: 15.5px; color: var(--gray); line-height: 1.82; margin-bottom: 30px; max-width: 460px; }
.dl-rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.dl-stars { color: #FFD700; font-size: 18px; letter-spacing: 3px; }
.dl-rating-text { font-size: 13px; color: var(--gray); }
.dl-rating-text strong { color: var(--purple); }
.store-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.store-btn {
    display: flex; align-items: center; gap: 13px;
    background: var(--purple); color: #fff;
    padding: 14px 26px; border-radius: 14px;
    text-decoration: none; transition: all 0.3s; border: none; cursor: pointer;
    box-shadow: 0 8px 24px rgba(29,17,72,0.25);
}
.store-btn:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(29,17,72,0.35); background: #2a1960; }
.store-btn i { font-size: 28px; color: #fff; }
.store-btn-outline { background: transparent; border: 1.5px solid rgba(29,17,72,0.2); color: var(--purple); box-shadow: none; }
.store-btn-outline i { color: var(--purple); }
.store-btn-outline:hover { background: rgba(29,17,72,0.05); border-color: var(--purple); box-shadow: 0 8px 24px rgba(29,17,72,0.1); }
.sb-text { text-align: left; }
.sb-text small { display: block; font-size: 10px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }
.store-btn-outline .sb-text small { color: var(--gray); }
.sb-text strong { font-size: 16px; font-weight: 800; color: #fff; }
.store-btn-outline .sb-text strong { color: var(--purple); }
.dl-app-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.dl-app-feat { display: flex; align-items: flex-start; gap: 14px; }
.dl-app-feat-ico {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: rgba(29,17,72,0.07); display: flex; align-items: center;
    justify-content: center; color: var(--purple); font-size: 16px;
}
.dl-app-feat h4 { font-size: 14px; font-weight: 700; color: var(--purple); margin-bottom: 3px; }
.dl-app-feat p { font-size: 12.5px; color: var(--gray); line-height: 1.5; margin: 0; }

/* Right visual */
.dl-right { display: flex; align-items: center; justify-content: center; }
.dl-rider-img {
    width: 320px; max-width: 100%; border-radius: 32px; display: block;
    box-shadow: 0 24px 60px rgba(29,17,72,0.18);
}

/* ── CONTACT FORM ── */
.contact-form-section { padding: 80px 0; background-color: #fff; background-image: linear-gradient(rgba(29,17,72,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,17,72,0.04) 1px, transparent 1px); background-size: 52px 52px; background-attachment: fixed; }
.cf-inner { max-width: 860px; margin: 0 auto; padding: 0 28px; }
.cf-head { margin-bottom: 48px; }
.cf-card {
    background: #fff; border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 8px 48px rgba(29,17,72,0.08);
    border: 1px solid rgba(29,17,72,0.07);
}
.cf-form { display: flex; flex-direction: column; gap: 22px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-label {
    font-size: 13px; font-weight: 600; color: var(--purple);
    display: flex; align-items: center; gap: 7px;
}
.cf-label i { color: var(--green); font-size: 12px; }
.cf-input {
    width: 100%; padding: 14px 18px;
    border: 1.5px solid rgba(29,17,72,0.12); border-radius: 12px;
    font-size: 14.5px; font-family: var(--font); color: var(--dark);
    background: var(--gray-light); outline: none;
    transition: all 0.25s;
}
.cf-input:focus { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 4px rgba(29,17,72,0.06); }
.cf-input::placeholder { color: #b0b8c9; }
.cf-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.cf-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--purple); color: #fff;
    font-weight: 700; font-size: 15px; font-family: var(--font);
    padding: 16px 36px; border-radius: 50px; border: none;
    cursor: pointer; transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(29,17,72,0.3);
    align-self: flex-start;
}
.cf-btn:hover { background: #2a1960; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(29,17,72,0.4); }
.cf-btn i { transition: transform 0.3s; }
.cf-btn:hover i { transform: translateX(4px); }

/* ── CONTACT FORM SUCCESS ── */
.cf-success {
    text-align: center; padding: 48px 32px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cf-success-icon { width: 80px; height: 80px; margin-bottom: 8px; }
.cf-checkmark { width: 80px; height: 80px; }
.cf-checkmark-circle {
    stroke: var(--green); stroke-width: 2;
    stroke-dasharray: 166; stroke-dashoffset: 166;
    animation: strokeAnim 0.6s cubic-bezier(0.65,0,0.45,1) 0.1s forwards;
}
.cf-checkmark-check {
    stroke: var(--green); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 48; stroke-dashoffset: 48;
    animation: strokeAnim 0.4s cubic-bezier(0.65,0,0.45,1) 0.6s forwards;
}
@keyframes strokeAnim {
    to { stroke-dashoffset: 0; }
}
.cf-success-title {
    font-size: 26px; font-weight: 800; color: var(--purple); margin: 0;
}
.cf-success-msg {
    font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 340px; margin: 0;
}
.cf-success-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: 2px solid var(--purple);
    color: var(--purple); font-family: var(--font); font-weight: 700;
    font-size: 14px; padding: 12px 28px; border-radius: 50px;
    cursor: pointer; transition: all 0.3s; margin-top: 8px;
}
.cf-success-btn:hover { background: var(--purple); color: #fff; }

/* ── NEWSLETTER SUCCESS ── */
.nl-success {
    margin-top: 10px; font-size: 13px; font-weight: 600;
    color: var(--green); display: flex; align-items: center; gap: 7px;
    animation: fadeInUp 0.4s ease;
}
.nl-success i { font-size: 15px; }

/* ── FOOTER ── */
.footer { background: var(--purple-dark); overflow: hidden; }

/* Strip */
.foot-strip { background: rgba(0,214,143,0.1); border-bottom: 1px solid rgba(0,214,143,0.15); padding: 18px 0; }
.foot-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-strip-text { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 10px; }
.foot-strip-text i { color: var(--green); }
.foot-strip-btns { display: flex; gap: 10px; }
.foot-strip-btn { display: flex; align-items: center; gap: 7px; background: var(--green); color: var(--purple); font-weight: 700; font-size: 13px; padding: 9px 18px; border-radius: 50px; text-decoration: none; transition: all 0.25s; }
.foot-strip-btn:hover { background: var(--green-light); transform: translateY(-1px); }
.foot-strip-btn-outline { background: transparent; border: 1.5px solid rgba(0,214,143,0.4); color: var(--green); }
.foot-strip-btn-outline:hover { background: rgba(0,214,143,0.1); }

/* Main */
.foot-main { padding: 60px 0 0; }
.foot-top {
    max-width: 1200px; margin: 0 auto; padding: 0 44px 50px;
    display: grid; grid-template-columns: 1.8fr 1fr 1.3fr; gap: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.78; margin-top: 18px; max-width: 260px; }
.foot-socials { display: flex; gap: 10px; margin-top: 24px; }
.soc-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 15px; transition: all 0.3s; }
.soc-btn:hover { background: var(--green); color: var(--purple); transform: translateY(-2px); }
.foot-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .1em; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { text-decoration: none; color: rgba(255,255,255,0.42); font-size: 13.5px; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.foot-col ul a i { font-size: 9px; opacity: 0; transition: all 0.2s; }
.foot-col ul a:hover { color: var(--green); padding-left: 4px; }
.foot-col ul a:hover i { opacity: 1; color: var(--green); }
.foot-contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 6px; }
.foot-contact-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.42); }
.foot-contact-item i { color: var(--green); font-size: 13px; width: 16px; flex-shrink: 0; }
.foot-contact-item a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.foot-contact-item a:hover { color: var(--green); }
.foot-nl-desc { font-size: 12.5px; color: rgba(255,255,255,0.38); margin-bottom: 10px; }
.nl-form { display: flex; gap: 8px; }
.nl-input { flex: 1; min-width: 0; padding: 12px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; font-size: 13px; font-family: var(--font); outline: none; width: 100%; }
.nl-input::placeholder { color: rgba(255,255,255,0.28); }
.nl-input:focus { border-color: var(--green); background: rgba(255,255,255,0.1); }
.nl-btn { padding: 12px 16px; background: var(--green); color: var(--purple); border: none; border-radius: 10px; font-weight: 800; font-size: 15px; cursor: pointer; transition: all 0.2s; flex-shrink: 0; display: flex; align-items: center; gap: 6px; }
.nl-btn:hover { background: var(--green-light); }
.nl-btn-text { display: none; font-family: var(--font); font-size: 14px; font-weight: 700; }

/* Bottom */
.foot-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 44px; display: flex; justify-content: space-between; align-items: center; }
.foot-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.28); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 12.5px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--green); }

/* ── SCROLL ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(32px); transition: all 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Prevent horizontal scroll */
html, body { overflow-x: hidden; max-width: 100%; }
* { word-break: break-word; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE (1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Hero */
    .hero-title { font-size: 48px; }
    .hero-inner { padding: 80px 28px 20px; gap: 40px; }

    /* Services */
    .rv-showcase-section { padding: 30px 28px; }
    .rv-sc-h2-bold { font-size: 44px; }
    .rv-sp-title { font-size: 40px; }
    .rv-sp-visual { flex: 0 0 340px; }

    /* How It Works */
    .how { padding: 30px 28px; }
    .how-sc-h2-bold { font-size: 44px; }
    .how-zz-row { gap: 40px; padding: 44px 0; }
    .how-zz-h3 { font-size: 28px; }

    /* Screenshots */
    .ss-inner { padding: 0 28px; }
    .screenshots { padding: 60px 0; }
    .ss-phone-side { width: 150px; }
    .ss-phone-center { width: 190px; }

    /* Why RapidVit */
    .why-h-title { font-size: 44px; }
    .why-flow { padding: 0 70px; }
    .why-fc-num { font-size: 64px; }
    .why-fc-ico { width: 60px; height: 60px; font-size: 24px; }

    /* Provider */
    .provider { padding: 70px 0; }
    .prov-wrap { padding: 0 28px; }

    /* Download */
    .download { padding: 70px 0; }

    /* FAQ */
    .faq { padding: 70px 0; }
    .faq-inner { padding: 0 28px; }

    /* Contact */
    .contact-form-section { padding: 70px 0; }
    .cf-inner { padding: 0 28px; }

    /* Footer */
    .foot-top { grid-template-columns: 1fr 1fr; }
}
/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE/TABLET (768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Navbar ── */
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* ── Hero ── */
    .hero-inner { grid-template-columns: 1fr; padding: 90px 20px 10px; text-align: center; gap: 0; }
    .hero-left { padding-top: 0; }
    .hero-title { font-size: 36px; letter-spacing: -1.5px; line-height: 1.1; }
    .hero-desc { margin: 0 auto 28px; font-size: 15px; max-width: 100%; }
    .hero-btns { justify-content: center; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 24px; }
    .hero-btns a { width: 100%; justify-content: center; max-width: 340px; padding: 14px 28px; }
    .hero-img-side {
        display: flex;
        min-height: unset;
        padding-top: 16px;
        padding-bottom: 8px;
        justify-content: center;
        align-items: center;
    }
    .hero-rider-img {
        width: 75%;
        max-width: 280px;
        height: auto;
        border-radius: 24px;
    }
    .float-card { display: none; }
    .hero-img-glow { width: 200px; height: 200px; }
    .hero-pills { justify-content: center; }
    .hero-features { grid-template-columns: 1fr; }
    .hero-trust { justify-content: center; }

    /* Stats bar — 3 columns, centered */
    .hero-stats-bar { flex-wrap: wrap; justify-content: center; }
    .hstat-bar-divider { display: none; }
    .hstat-bar-item { flex: 0 0 33.333%; padding: 18px 8px; }
    .hstat-bar-item strong { font-size: 24px; }
    .hstat-bar-item span { font-size: 9px; letter-spacing: 1px; }

    /* ── Ghost texts — hidden on mobile ── */
    .rv-sc-ghost { display: none; }
    .how-sc-ghost { display: none; }
    .why-h-ghost { display: none; }
    .tst-ghost { display: none; }

    /* ── Services ── */
    .rv-showcase-section { padding: 24px 16px 30px; }
    .rv-showcase-header { margin-bottom: 32px; }
    .rv-sc-h2-bold { font-size: 32px; letter-spacing: -0.5px; }
    .rv-sc-h2-light { font-size: 13px; }
    .rv-sc-accent-text { display: none; }
    .rv-showcase-tabs { width: 100%; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 4px 4px; scrollbar-width: none; }
    .rv-showcase-tabs::-webkit-scrollbar { display: none; }
    .rv-stab { font-size: 11px; padding: 8px 14px; white-space: nowrap; }
    .rv-showcase-panels-wrap { min-height: unset; }
    .rv-showcase-panel { flex-direction: column; gap: 24px; }
    .rv-sp-ghost-num { display: none; }
    .rv-sp-text { padding-bottom: 0; }
    .rv-sp-title { font-size: 30px; letter-spacing: -0.5px; }
    .rv-sp-visual { flex: 0 0 auto; width: 100%; max-width: 360px; margin: 0 auto; }
    .rv-sp-img { border-radius: 16px; }
    .rv-sp-stat-grid { gap: 8px 12px; }
    .rv-sp-stat-num { font-size: 18px; }
    .rv-sp-stat-lbl { font-size: 10px; }
    .rv-sp-desc { font-size: 14px; }

    /* ── Testimonials ── */
    .testi { padding: 24px 0; }
    .testimonials-section { padding: 0 16px 32px; }
    .rv-tst-h2-bold { font-size: 30px; }
    .tst-header { margin-bottom: 32px; }
    .tst-deck-wrap { width: min(340px, 92vw); margin: 0 auto; }
    .tst-deck { width: 100%; }
    .tst-card { width: min(280px, 80vw); left: auto; right: 0; }

    /* ── How It Works ── */
    .how { padding: 24px 16px; }
    .how-showcase-header { margin-bottom: 36px; }
    .how-sc-h2-bold { font-size: 32px; letter-spacing: -1px; }
    .how-sc-h2-light { font-size: 13px; }
    .how-sc-accent-text { display: none; }
    .how-zz-row { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
    .how-zz-row-rev .how-zz-visual { order: 2; }
    .how-zz-row-rev .how-zz-text   { order: 1; }
    .how-zz-h3 { font-size: 24px; }
    .how-zz-p { font-size: 14px; margin-bottom: 20px; }
    .how-zz-list li { font-size: 13px; }
    .how-zz-img-wrap { max-width: 100%; }
    .how-zz-img-badge { font-size: 11px; padding: 7px 14px; }

    /* ── App Screenshots ── */
    .screenshots { padding: 50px 0; }
    .ss-inner { padding: 0 16px; }
    .ss-layout { grid-template-columns: 1fr; gap: 40px; }
    .ss-desc-col { text-align: center; align-items: center; }
    .ss-desc-col .how-sc-tag-wrap { justify-content: center !important; }
    .ss-h2 { font-size: 30px; }
    .ss-desc { font-size: 14px; }
    .ss-imgs-col { justify-content: center; }
    .ss-phone-side { width: 120px; }
    .ss-phone-center { width: 152px; }
    .ss-imgs-row { gap: 8px; }

    /* ── Why RapidVit ── */
    .why { padding: 28px 16px 32px; }
    .why-h-title { font-size: 30px; letter-spacing: -0.5px; }
    .why-h-sub { font-size: 13px; }
    .why-flow { padding: 0 40px; }
    .why-flow-card { gap: 18px; padding: 22px 24px; margin: 12px 0; }
    .why-fc-num { font-size: 52px; min-width: 52px; }
    .why-fc-ico { width: 56px; height: 56px; font-size: 22px; border-radius: 18px; }
    .why-fc-h3 { font-size: 18px; }
    .why-fc-p { font-size: 13px; }

    /* ── Provider ── */
    .provider { padding: 50px 0; }
    .prov-wrap { padding: 0 16px; }
    .prov-inner { grid-template-columns: 1fr; gap: 36px; margin-top: 32px; }
    .prov-desc { font-size: 14px; max-width: 100%; }
    .prov-stats-row { flex-wrap: wrap; justify-content: center; width: 100%; padding: 16px 12px; }
    .prov-stat { text-align: center; padding: 0 12px; }
    .prov-stat-num { font-size: 26px; }
    .prov-perks-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .prov-cta { font-size: 14px; padding: 14px 28px; }

    /* ── Download CTA ── */
    .download { padding: 50px 0; }
    .dl-inner { grid-template-columns: 1fr; padding: 0 16px; gap: 40px; }
    .dl-left { text-align: center; }
    .dl-tag-row { justify-content: center; }
    .dl-app-feat { text-align: left; }
    .dl-rating-row { justify-content: center; }
    .dl-right { justify-content: center; }
    .dl-rider-img { width: 85%; max-width: 340px; border-radius: 24px; }
    .dl-h2 { font-size: 32px; letter-spacing: -1px; }
    .dl-desc { font-size: 14px; }
    .dl-app-features { gap: 14px; }
    .dl-rating-row { margin-bottom: 24px; }

    /* ── FAQ ── */
    .faq { padding: 50px 0; }
    .faq-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 16px; }
    .faq-head { text-align: center; margin-bottom: 0; }
    .faq-head .how-sc-tag-wrap { justify-content: center; }
    .faq-head .how-sc-ghost { left: 50%; transform: translateX(-50%); }
    .faq-q-text { font-size: 14px; }
    .faq-ans p { font-size: 13.5px; padding: 4px 16px 18px 16px; }
    .faq-contact-card { padding: 24px 20px; }

    /* ── Contact Form ── */
    .contact-form-section { padding: 50px 0; }
    .cf-inner { padding: 0 16px; }
    .cf-head { margin-bottom: 32px; }
    .cf-row { grid-template-columns: 1fr; }
    .cf-card { padding: 32px 20px; }

    /* ── Footer ── */
    .foot-main { padding: 40px 0 0; }
    .foot-top { grid-template-columns: 1fr; gap: 28px; padding: 0 16px 40px; }
    .footer-logo-img { height: 60px; }
    .foot-brand p { font-size: 13px; }
    .foot-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 16px; }
    .foot-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
    /* Newsletter — row layout on tablet */
    .nl-form { flex-direction: row; gap: 8px; }
    .nl-input { font-size: 13px; padding: 12px 14px; }
    .nl-btn { padding: 12px 18px; font-size: 14px; border-radius: 10px; flex-shrink: 0; }
    .nl-success { font-size: 12px; margin-top: 8px; }

    /* ── Store buttons ── */
    .store-btns { gap: 10px; }
    .store-btn { padding: 12px 20px; }
    .store-btn i { font-size: 22px; }
    .sb-text strong { font-size: 14px; }

    /* ── Section common ── */
    .sec-title { font-size: 30px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {

    /* ── Hero ── */
    .hero-inner { padding: 85px 16px 8px; }
    .hero-title { font-size: 28px; letter-spacing: -1px; }
    .hero-desc { font-size: 14px; margin-bottom: 24px; }
    .hero-btns a { font-size: 14px; padding: 13px 22px; }

    /* Stats bar — 3 columns on small mobile */
    .hstat-bar-item { flex: 0 0 33.333%; padding: 16px 6px; }
    .hstat-bar-item strong { font-size: 20px; }
    .hstat-bar-item span { font-size: 8.5px; letter-spacing: 0.8px; }

    /* ── Services ── */
    .rv-showcase-section { padding: 16px 12px 24px; }
    .rv-sc-h2-bold { font-size: 26px; }
    .rv-sp-title { font-size: 24px; }
    .rv-stab { font-size: 10px; padding: 7px 10px; }
    .rv-sp-chips span { font-size: 10px; padding: 3px 10px; }

    /* ── Testimonials ── */
    .rv-tst-h2-bold { font-size: 26px; }
    .tst-deck-wrap { width: min(330px, 90vw); }
    .tst-deck { height: 420px; }
    .tst-card { width: min(270px, 78vw); height: 390px; padding: 24px 18px 20px; }
    .tst-quote { font-size: 12px; line-height: 1.7; }
    .tst-name { font-size: 14px; }
    .tst-av { width: 72px; height: 72px; }

    /* ── How It Works ── */
    .how { padding: 20px 12px; }
    .how-sc-h2-bold { font-size: 26px; }
    .how-zz-row { padding: 24px 0; gap: 20px; }
    .how-zz-h3 { font-size: 22px; }
    .how-zz-step-label { font-size: 10px; }
    .how-zz-img-badge { font-size: 10px; padding: 6px 12px; bottom: 10px; left: 10px; }
    .how-zz-vis-card { min-height: 200px; }

    /* ── Screenshots ── */
    .screenshots { padding: 40px 0; }
    .ss-phone-side { width: 90px; }
    .ss-phone-center { width: 118px; }
    .ss-imgs-row { gap: 6px; }
    .ss-h2 { font-size: 26px; }
    .ss-desc { font-size: 13px; }
    .ss-point { font-size: 13px; }
    .ss-points { gap: 10px; }

    /* ── Why RapidVit ── */
    .why { padding: 24px 12px 28px; }
    .why-h-title { font-size: 26px; }
    .why-flow { padding: 0 14px; }
    .why-flow-svg { display: none; }
    .why-flow-card { gap: 14px; padding: 18px 18px; margin: 10px 0; }
    .why-fc-num { font-size: 40px; min-width: 44px; }
    .why-fc-ico { width: 48px; height: 48px; font-size: 20px; border-radius: 14px; }
    .why-fc-h3 { font-size: 16px; }
    .why-fc-p { font-size: 12px; }

    /* ── Provider ── */
    .provider { padding: 40px 0; }
    .prov-perks-grid { grid-template-columns: 1fr; gap: 10px; }
    .prov-perk { padding: 16px 14px; }
    .prov-stat-num { font-size: 24px; }
    .prov-stat-div { display: none; }

    /* ── Download ── */
    .download { padding: 40px 0; }
    .dl-rider-img { width: 90%; max-width: 300px; }
    .dl-h2 { font-size: 26px; letter-spacing: -0.5px; }
    .dl-app-features { gap: 12px; }
    .dl-app-feat h4 { font-size: 13px; }
    .dl-app-feat p { font-size: 11.5px; }
    .store-btns { flex-direction: column; align-items: center; }
    .store-btn { width: 100%; max-width: 280px; justify-content: center; }

    /* ── FAQ ── */
    .faq { padding: 40px 0; }
    .faq-inner { gap: 28px; padding: 0 12px; }
    .faq-q { padding: 14px 14px; gap: 10px; }
    .faq-q-text { font-size: 13px; }
    .faq-ic { width: 28px; height: 28px; font-size: 10px; }
    .faq-contact-card { padding: 20px 16px; }
    .faq-contact-card h4 { font-size: 15px; }
    .faq-contact-card p { font-size: 12.5px; }

    /* ── Contact Form ── */
    .contact-form-section { padding: 40px 0; }
    .cf-inner { padding: 0 12px; }
    .cf-card { padding: 24px 14px; border-radius: 18px; }
    .cf-input { padding: 12px 14px; font-size: 13.5px; }
    .cf-btn { width: 100%; justify-content: center; font-size: 14px; }

    /* ── Footer ── */
    .foot-top { padding: 0 12px 28px; gap: 22px; }
    .foot-bottom { padding: 14px 12px; }
    .foot-links { flex-direction: column; gap: 8px; align-items: center; }
    .soc-btn { width: 40px; height: 40px; }
    .footer-logo-img { height: 52px; }
    /* Newsletter — stacked on small mobile */
    .nl-form { flex-direction: column; gap: 10px; }
    .nl-input { width: 100%; font-size: 14px; padding: 14px 16px; border-radius: 12px; }
    .nl-btn { width: 100%; padding: 14px; border-radius: 12px; justify-content: center; }
    .nl-btn-text { display: inline; }
    .foot-nl-desc { font-size: 13px; color: rgba(255,255,255,0.5); }

    /* ── Section headings ── */
    .rv-tst-h2-bold { font-size: 24px; }
    .why-h-title { font-size: 24px; }
    .dl-h2 { font-size: 24px; }
    .ss-h2 { font-size: 24px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — VERY SMALL (360px)
══════════════════════════════════════════ */
@media (max-width: 360px) {
    .hero-title { font-size: 24px; }
    .hero-inner { padding: 80px 12px 8px; }
    .hero-btns a { font-size: 13px; padding: 12px 18px; }
    .rv-sc-h2-bold { font-size: 22px; }
    .rv-sp-title { font-size: 22px; }
    .how-sc-h2-bold { font-size: 22px; }
    .why-h-title { font-size: 22px; }
    .hstat-bar-item { flex: 0 0 50%; }
    .hstat-bar-item strong { font-size: 20px; }
    .tst-card { width: 100%; }
    .ss-phone-side { width: 75px; }
    .ss-phone-center { width: 100px; }
    .prov-perks-grid { grid-template-columns: 1fr; }
    .dl-h2 { font-size: 22px; }
    .why-fc-h3 { font-size: 15px; }
}
