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

:root {
    --ink: #0f0e0c;
    --paper: #f5f2ed;
    --accent: #e8430a;
    --accent-hover: #c93608;
    --accent2: #1a3a2a;
    --muted: #7a7670;
    --border: rgba(15, 14, 12, 0.12);
    --ff-head: 'Syne', sans-serif;
    --ff-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 3rem;
    background: rgba(245, 242, 237, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo span { color: var(--accent); }

.nav-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    color: var(--muted);
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 0.55rem 1.25rem;
    border-radius: 2rem;
    font-weight: 500 !important;
    font-size: 0.875rem;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent) !important; }

.nav-track { margin-right: 0.5rem; }

.nav-track-form {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(15, 14, 12, 0.06);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.15rem 0.15rem 0.15rem 0.9rem;
    transition: border-color 0.2s;
}

.nav-track-form:focus-within { border-color: var(--accent); }

.nav-track-form input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--ff-body);
    font-size: 0.8rem;
    color: var(--ink);
    width: 120px;
    text-transform: uppercase;
}

.nav-track-form input::placeholder {
    color: var(--muted);
    text-transform: none;
}

.nav-track-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-track-btn:hover { background: var(--accent); }

.booking-success {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a3a2a, #0f2419);
    border-radius: 0.9rem;
    color: var(--paper);
    text-align: center;
    animation: fadeUp 0.5s ease;
}

.success-check {
    width: 48px;
    height: 48px;
    background: #5de8a0;
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.success-title {
    font-family: var(--ff-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.success-id {
    font-size: 0.85rem;
    color: rgba(245, 242, 237, 0.75);
    margin-bottom: 0.5rem;
}

.success-id strong {
    color: var(--paper);
    font-family: var(--ff-head);
    font-size: 1rem;
}

.success-desc {
    font-size: 0.82rem;
    color: rgba(245, 242, 237, 0.6);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.success-track-btn {
    background: #e8430a !important;
    width: 100%;
    justify-content: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
    overflow: hidden;
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 3rem;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero-eyebrow::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.35s;
}

.hero-title em {
    font-style: normal;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineIn 0.5s ease forwards 1s;
}

@keyframes lineIn { to { transform: scaleX(1); } }

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.65s;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }

.btn-primary .arrow {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
}

.btn-ghost:hover { color: var(--ink); }

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.8s;
}

.stat-num {
    font-family: var(--ff-head);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* HERO RIGHT */
.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--accent2);
}

.hero-map {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-map-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.route-card {
    background: rgba(245, 242, 237, 0.06);
    border: 1px solid rgba(245, 242, 237, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 360px;
    color: var(--paper);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1s;
}

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

.route-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #5de8a0;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.route-status::before {
    content: '';
    width: 6px; height: 6px;
    background: #5de8a0;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.route-id {
    font-size: 0.75rem;
    color: rgba(245, 242, 237, 0.4);
    font-family: monospace;
}

.route-points { display: flex; flex-direction: column; }

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.route-line-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-top: 4px;
}

.route-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid var(--paper);
    background: transparent;
}

.route-dot.active { background: var(--paper); }
.route-dot.dest { background: var(--accent); border-color: var(--accent); }

.route-connector {
    width: 1px;
    height: 36px;
    background: rgba(245, 242, 237, 0.2);
    margin: 4px 0;
}

.route-label {
    font-size: 0.72rem;
    color: rgba(245, 242, 237, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

.route-address {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--paper);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.route-eta {
    background: rgba(245, 242, 237, 0.08);
    border: 1px solid rgba(245, 242, 237, 0.12);
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.eta-label { font-size: 0.75rem; color: rgba(245, 242, 237, 0.5); }

.eta-val {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--paper);
}

.route-fare { font-size: 0.8rem; color: rgba(245, 242, 237, 0.4); }

.courier-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    background: rgba(245, 242, 237, 0.05);
    border: 1px solid rgba(245, 242, 237, 0.1);
    border-radius: 2rem;
    padding: 0.5rem 0.75rem;
}

.courier-avatar {
    width: 28px; height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.courier-name {
    font-size: 0.8rem;
    color: var(--paper);
    font-weight: 500;
    flex: 1;
}

.courier-rating { font-size: 0.72rem; color: rgba(245, 242, 237, 0.5); }

/* MARQUEE */
.marquee-strip {
    overflow: hidden;
    background: var(--ink);
    padding: 0.85rem 0;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
    align-items: center;
}

.marquee-track span {
    font-family: var(--ff-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 242, 237, 0.5);
}

.marquee-track .dot-sep { color: var(--accent); font-size: 1.2rem; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* SECTIONS */
.section { padding: 7rem 3rem; }

.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 480px;
}

/* STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
}

.step-card {
    background: var(--paper);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.3s;
}

.step-card:hover { background: #fff; }

.step-num {
    font-family: var(--ff-head);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(15, 14, 12, 0.06);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.step-icon {
    width: 40px; height: 40px;
    background: var(--ink);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.step-title {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* PRICING */
.pricing-section {
    background: var(--ink);
    color: var(--paper);
    padding: 7rem 3rem;
}

.pricing-section .section-label { color: #5de8a0; }
.pricing-section .section-label::before { background: #5de8a0; }
.pricing-section .section-sub { color: rgba(245, 242, 237, 0.55); }
.pricing-title { color: var(--paper); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: rgba(245, 242, 237, 0.08);
    border: 1px solid rgba(245, 242, 237, 0.08);
    border-radius: 1rem;
    overflow: hidden;
}

.pricing-card {
    background: var(--ink);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.3s;
}

.pricing-card:hover { background: #1a1916; }
.pricing-card.featured { background: var(--accent); }
.pricing-card.featured:hover { background: #d43d09; }

.pricing-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pricing-type {
    font-size: 0.8rem;
    color: rgba(245, 242, 237, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-type { color: rgba(255, 255, 255, 0.6); }

.pricing-amount {
    font-family: var(--ff-head);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: var(--paper);
}

.pricing-card.featured .pricing-amount { color: #fff; }

.pricing-from {
    font-size: 0.8rem;
    color: rgba(245, 242, 237, 0.4);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-from { color: rgba(255, 255, 255, 0.5); }

.pricing-divider {
    height: 1px;
    background: rgba(245, 242, 237, 0.1);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-divider { background: rgba(255, 255, 255, 0.2); }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    font-size: 0.875rem;
    color: rgba(245, 242, 237, 0.6);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.pricing-card.featured .pricing-features li { color: rgba(255, 255, 255, 0.75); }

.pricing-features li::before {
    content: '\2713';
    color: #5de8a0;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before { color: rgba(255, 255, 255, 0.9); }

/* COURIER / EARN */
.courier-section {
    padding: 7rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.earn-intro { margin-bottom: 2rem; }

.earn-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.earn-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.earn-bullets .arrow { color: var(--accent); font-weight: 700; }

.earn-card {
    background: var(--accent2);
    border-radius: 1.25rem;
    padding: 2.5rem;
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.earn-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.earn-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5de8a0;
    background: rgba(93, 232, 160, 0.12);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.earn-title {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.earn-desc {
    font-size: 0.9rem;
    color: rgba(245, 242, 237, 0.6);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.earn-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.earn-perk {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.9rem;
}

.perk-val {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--paper);
    letter-spacing: -0.03em;
}

.perk-label {
    font-size: 0.75rem;
    color: rgba(245, 242, 237, 0.45);
    margin-top: 0.15rem;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--paper);
    color: var(--ink);
    padding: 0.85rem 1.75rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s, background 0.2s;
}

.btn-light:hover { background: #fff; transform: translateY(-2px); }

/* TESTIMONIALS */
.testimonials-section {
    padding: 7rem 3rem;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.testi-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.testi-card:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
}

.testi-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.85rem;
}

.testi-text {
    font-size: 0.925rem;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--paper);
    flex-shrink: 0;
}

.testi-name { font-size: 0.875rem; font-weight: 500; }
.testi-biz { font-size: 0.775rem; color: var(--muted); }

/* REVIEWS SECTION */
.reviews-section {
    background: #fff;
    padding: 6rem 0;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ALL REVIEWS (seed + guest) */
.all-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    background: var(--paper);
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
}

.review-card.featured-review {
    grid-column: 1 / -1;
    border-left: 4px solid var(--accent);
    background: var(--paper);
}

.review-card .review-date {
    font-size: 0.72rem;
    color: var(--muted);
    position: absolute;
    top: 16px;
    right: 18px;
    letter-spacing: 0.03em;
}

.review-card .review-stars {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.review-card .review-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-card.featured-review .review-body {
    font-size: 1rem;
    line-height: 1.8;
}

.review-card .review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-card .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card .review-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.review-card .review-biz {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
}

.verified-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(232, 67, 10, 0.12);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
}

/* REVIEW FORM */
.review-form-wrap {
    margin-top: 3rem;
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: 1.25rem;
    padding: 2.5rem 3rem;
}

.review-form-header {
    margin-bottom: 2rem;
}

.review-form-header h3 {
    font-family: var(--ff-head);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.review-form-header p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: 0.7rem;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 67, 10, 0.08);
}

.review-form textarea {
    resize: vertical;
    min-height: 100px;
}

.review-stars-input {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-stars-input label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.star-picker {
    display: flex;
    gap: 6px;
    font-size: 1.8rem;
    cursor: pointer;
}

.star-picker span {
    color: rgba(15, 14, 12, 0.12);
    transition: color 0.15s, transform 0.15s;
}

.star-picker span.active {
    color: var(--accent);
}

.star-picker span:hover {
    transform: scale(1.15);
}

.review-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.review-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .reviews-container { padding: 0 1.5rem; }
    .all-reviews { grid-template-columns: 1fr; gap: 1rem; }
    .review-form-wrap { padding: 2rem 1.5rem; }
    .review-form-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .review-form input,
    .review-form textarea { font-size: 16px; padding: 0.9rem 1rem; }
    .star-picker { font-size: 2rem; gap: 8px; }
    .review-form-header h3 { font-size: 1.3rem; }
    .review-card { padding: 1.5rem; }
}

/* BOOK SECTION */
.book-section {
    padding: 7rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.payment-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    max-width: 340px;
}

.payment-label {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.payment-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mpesa-icon {
    background: #00b300;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.payment-name { font-size: 0.9rem; font-weight: 500; }
.payment-desc { font-size: 0.78rem; color: var(--muted); }

.booking-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2.5rem;
}

.form-title {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    background: var(--paper);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.mpesa-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.75rem;
    justify-content: center;
}

.mpesa-note::before {
    content: '\1F512';
    font-size: 0.8rem;
}

/* FOOTER */
footer {
    background: var(--ink);
    color: var(--paper);
    padding: 4rem 3rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 242, 237, 0.1);
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin-bottom: 1rem;
}

.footer-brand span { color: var(--accent); }

.footer-desc {
    font-size: 0.875rem;
    color: rgba(245, 242, 237, 0.45);
    line-height: 1.65;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 242, 237, 0.4);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(245, 242, 237, 0.6);
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--paper); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(245, 242, 237, 0.3);
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* TABLET (up to 1024px) */
@media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    .nav-links { gap: 1.5rem; }
    .section,
    .pricing-section,
    .testimonials-section,
    .courier-section,
    .book-section { padding: 5.5rem 2rem; }

    .hero-left { padding: 5rem 2rem; }
    .hero-title { font-size: clamp(2.8rem, 5vw, 4.5rem); }

    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .footer-top > div:first-child { grid-column: 1 / -1; }
}

/* MOBILE (up to 768px) */
@media (max-width: 768px) {
    nav { padding: 1rem 1.25rem; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(245, 242, 237, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 99;
    }

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

    .nav-links a {
        font-size: 1.3rem;
        color: var(--ink);
    }

    .nav-links .nav-cta { padding: 0.8rem 1.75rem; }
    .nav-track-form { background: transparent; border: 1px solid rgba(15,14,12,0.2); padding: 0.3rem 0.3rem 0.3rem 1rem; }
    .nav-track-form input { width: 160px; font-size: 1rem; }

    .nav-toggle { display: flex; z-index: 100; }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 4.5rem;
        min-height: auto;
    }

    .hero-left { padding: 3rem 1.5rem 2.5rem; }
    .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
    .hero-actions { gap: 0.75rem; }
    .btn-primary { padding: 0.85rem 1.6rem; font-size: 0.9rem; }
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .stat-num { font-size: 1.5rem; }

    .hero-right {
        min-height: 340px;
    }

    .hero-map-content { padding: 1.5rem; }

    .section,
    .pricing-section,
    .testimonials-section { padding: 4rem 1.25rem; }

    .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .section-sub { font-size: 0.95rem; }

    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        margin-top: 2.5rem;
    }

    .step-card { padding: 2rem 1.5rem; }

    .pricing-grid { margin-top: 2.5rem; }
    .pricing-card { padding: 2rem 1.5rem; }

    .courier-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 1.25rem;
    }

    .earn-card { padding: 2rem 1.5rem; }
    .earn-title { font-size: 1.6rem; }

    .book-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 1.25rem;
    }

    .booking-form { padding: 1.75rem 1.25rem; }

    .form-group input,
    .form-group select {
        font-size: 16px;
        padding: 0.85rem 0.95rem;
    }

    .form-row { grid-template-columns: 1fr; gap: 0; }

    footer { padding: 3rem 1.25rem 1.5rem; }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-top > div:first-child { grid-column: 1 / -1; }

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

/* SMALL MOBILE (up to 480px) */
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-eyebrow { font-size: 0.7rem; }
    .hero-stats { gap: 1.25rem; }
    .stat-num { font-size: 1.35rem; }
    .stat-label { font-size: 0.7rem; }

    .route-card { padding: 1.5rem; }
    .hero-map-content { padding: 1rem; }

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

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track { animation: none; }
}
