/*
Theme Name: CurbGo
Theme URI: https://curbgo.co.za
Author: CurbGo
Author URI: https://curbgo.co.za
Description: Official website theme for CurbGo — AI-powered ride platform for South Africa's townships and rural communities. Smart rides. Stronger communities.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: curbgo
Tags: transportation, business, custom-colors, custom-logo, full-width-template
*/

    --green-mid:    #2D6A2D;
    --green-light:  #7DC67D;
    --green-pale:   #E8F4E8;
    --green-glow:   rgba(45, 106, 45, 0.12);
    --off-white:    #F6F5F1;
    --cream:        #FDFCF8;
    --charcoal:     #1A1A1A;
    --slate:        #4A4A4A;
    --muted:        #888;
    --border:       #E0DDD6;
    --white:        #FFFFFF;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
    --shadow-md:    0 8px 32px rgba(0,0,0,.10);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.14);
    --radius-sm:    8px;
    --radius-md:    14px;
    --radius-lg:    22px;
    --radius-xl:    32px;
}

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

html { scroll-behavior: smooth; background: #FDFCF8; }

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #1A1A1A;
    background: #FDFCF8;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
    font-weight: 700;
    color: #1A1A1A;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: #4A4A4A; line-height: 1.7; }
a { text-decoration: none; color: #2D6A2D; transition: color .2s; }
a:hover { color: #1E4D1E; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section {
    padding: 96px 0;
}

.section.bg-off-white {
    background: #F6F5F1;
}

/* ── TEXT UTILITIES ── */
.text-green { color: #2D6A2D; }
.text-green-light { color: #7DC67D; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .18s, box-shadow .18s, background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: #2D6A2D;
    color: #fff;
    border-color: #2D6A2D;
}
.btn-primary:hover {
    background: #1E4D1E;
    border-color: #1E4D1E;
    color: #fff;
    box-shadow: 0 8px 24px rgba(45,106,45,.35);
}

.btn-outline {
    background: transparent;
    color: #2D6A2D;
    border-color: #2D6A2D;
}
.btn-outline:hover {
    background: #2D6A2D;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #2D6A2D;
    border-color: #fff;
}
.btn-white:hover {
    background: #E8F4E8;
    color: #1E4D1E;
    border-color: #E8F4E8;
}

.btn-sm  { padding: 9px 20px;  font-size: .875rem; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; }

/* ── SECTION TAGS ── */
.section-tag {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2D6A2D;
    background: #E8F4E8;
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 16px;
}
.tag-light {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #E0DDD6;
    transition: box-shadow .3s;
}
.nav.scrolled {
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1A1A1A;
    flex-shrink: 0;
}
.logo:hover { color: #1A1A1A; }
.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: #4A4A4A;
    padding: 8px 14px;
    border-radius: 50px;
    transition: background .2s, color .2s;
}
.nav-link:hover { background: #E8F4E8; color: #2D6A2D; }
.nav-link.active { color: #2D6A2D; background: #E8F4E8; font-weight: 600; }
.nav-inner .btn-sm { margin-left: 8px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1A1A1A;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 12px 24px 20px;
    border-top: 1px solid #E0DDD6;
    background: #FDFCF8;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: #4A4A4A;
    padding: 12px 0;
    border-bottom: 1px solid #E0DDD6;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link.active { color: #2D6A2D; font-weight: 600; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: #FDFCF8;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
}
.hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #E8F4E8, transparent 70%);
    top: -200px; right: -150px;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(125,198,125,.15), transparent 70%);
    bottom: -100px; left: -100px;
}
.hero-road {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E0DDD6, transparent);
}

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

.hero-badge {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #2D6A2D;
    background: #E8F4E8;
    border: 1px solid rgba(45,106,45,.2);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.hero-title { margin-bottom: 20px; }

.hero-sub {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2D6A2D;
}
.stat-label { font-size: .8rem; color: #888888; }
.stat-divider {
    width: 1px;
    height: 32px;
    background: #E0DDD6;
}

.hero-visual { position: relative; }
.phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-img {
    max-width: 100%;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,.18));
    animation: float 6s ease-in-out infinite;
}
.phone-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(45,106,45,.25), transparent 70%);
    filter: blur(20px);
}

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

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
    background: #2D6A2D;
    padding: 20px 0;
}
.trust-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-label {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    flex-shrink: 0;
}
.trust-locations {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.trust-locations span {
    font-size: .85rem;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.12);
    border-radius: 50px;
    padding: 4px 14px;
}

/* ══════════════════════════════
   STEPS GRID
══════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.step-card {
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 22px;
    padding: 36px 28px;
    transition: transform .25s, box-shadow .25s;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.step-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #E8F4E8;
    line-height: 1;
    margin-bottom: 16px;
}
.step-icon {
    width: 48px;
    height: 48px;
    color: #2D6A2D;
    margin-bottom: 20px;
}
.step-icon svg { width: 100%; height: 100%; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .95rem; }

/* ══════════════════════════════
   AI SECTION
══════════════════════════════ */
.ai-section { background: #F6F5F1; }
.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ai-content h2 { margin-bottom: 20px; }
.ai-content > p { margin-bottom: 32px; }

.ai-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    border: 1px solid #E0DDD6;
}
.ai-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E0DDD6;
    margin-bottom: 16px;
}
.ai-card-header span {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}
.ai-card-header small {
    margin-left: auto;
    font-size: .78rem;
    color: #888888;
}

.driver-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 8px;
    border: 1px solid transparent;
    transition: background .2s;
}
.driver-row:hover { background: #F6F5F1; }
.driver-row-featured {
    border-color: #7DC67D;
    background: #E8F4E8;
}
.driver-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2D6A2D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.driver-info { flex: 1; min-width: 0; }
.driver-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: .9rem;
}
.driver-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: .78rem;
    color: #4A4A4A;
}
.badge-best {
    background: #2D6A2D;
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
}
.driver-route {
    font-size: .78rem;
    color: #888888;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.driver-meta { font-size: .75rem; color: #2D6A2D; margin-top: 2px; }
.driver-fare {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #1E4D1E;
    font-size: .95rem;
    flex-shrink: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}
.feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.feature-icon {
    width: 32px;
    height: 32px;
    background: #E8F4E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2D6A2D;
    margin-top: 2px;
}
.feature-list li strong { display: block; margin-bottom: 2px; font-size: .95rem; }
.feature-list li span { font-size: .87rem; color: #888888; }

/* ══════════════════════════════
   DUAL CTA
══════════════════════════════ */
.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.cta-card {
    border-radius: 32px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.cta-rider { background: #1E4D1E; }
.cta-driver { background: #1A1A1A; }

.cta-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
}
.cta-card-icon svg { width: 32px; height: 32px; }

.cta-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.cta-card > p {
    color: rgba(255,255,255,.75);
    margin-bottom: 24px;
}
.cta-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
}
.cta-card ul li {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    padding-left: 20px;
    position: relative;
}
.cta-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7DC67D;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section { background: #F6F5F1; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px;
    border: 1px solid #E0DDD6;
    transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.testimonial-quote { margin-bottom: 16px; }
.testimonial-text {
    font-size: .97rem;
    color: #1A1A1A;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2D6A2D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author span { font-size: .8rem; color: #888888; }

/* ══════════════════════════════
   DOWNLOAD CTA
══════════════════════════════ */
.download-cta-section {
    background: #1E4D1E;
    overflow: hidden;
    position: relative;
}
.download-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.download-cta-content { position: relative; z-index: 1; }
.download-cta-content h2 { color: #fff; margin-bottom: 16px; }
.download-cta-content > p { color: rgba(255,255,255,.8); margin-bottom: 36px; }
.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    padding: 14px 22px;
    color: #fff;
    transition: background .2s, transform .2s;
}
.store-btn:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
    color: #fff;
}
.store-btn div { display: flex; flex-direction: column; }
.store-btn small { font-size: .72rem; opacity: .8; }
.store-btn strong { font-size: 1rem; font-family: 'Syne', sans-serif; }
.store-note { font-size: .82rem; color: rgba(255,255,255,.6); }
.download-img {
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.14);
}

/* ══════════════════════════════
   PAGE HEROES
══════════════════════════════ */
.page-hero {
    padding: 140px 0 80px;
}
.page-hero-green { background: #1E4D1E; }
.page-hero-dark  { background: #1A1A1A; }
.page-hero-content { max-width: 680px; }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; }
.text-white-underline {
    color: #7DC67D;
    text-decoration: underline;
    text-decoration-color: rgba(125,198,125,.4);
    text-underline-offset: 8px;
}

/* ══════════════════════════════
   STEPS VISUAL (riders page)
══════════════════════════════ */
.steps-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step-visual-item {
    display: flex;
    gap: 28px;
    position: relative;
}
.step-visual-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #E8F4E8;
    color: #2D6A2D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.step-visual-line {
    position: absolute;
    left: 26px;
    top: 52px;
    bottom: -32px;
    width: 2px;
    background: #E0DDD6;
}
.step-visual-line.hidden { display: none; }
.step-visual-content {
    padding-bottom: 48px;
    padding-top: 12px;
}
.step-visual-content h3 { margin-bottom: 8px; }
.step-visual-content p { font-size: .97rem; }

/* ══════════════════════════════
   FEATURES GRID
══════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px;
    border: 1px solid #E0DDD6;
    transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.feature-card-icon {
    width: 52px;
    height: 52px;
    background: #E8F4E8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D6A2D;
    margin-bottom: 20px;
}
.feature-card-icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { font-size: .9rem; }

/* ══════════════════════════════
   PRICING TABLE
══════════════════════════════ */
.pricing-table {
    border: 1px solid #E0DDD6;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
}
.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 24px;
    padding: 18px 28px;
    border-bottom: 1px solid #E0DDD6;
    align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-header {
    background: #2D6A2D;
    color: #fff;
    font-weight: 600;
    font-size: .87rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pricing-header span { color: #fff; }
.pricing-fare { font-family: 'Syne', sans-serif; font-weight: 700; color: #2D6A2D; }
.pricing-note { font-size: .87rem; color: #888888; }
.pricing-disclaimer { font-size: .85rem; color: #888888; }

/* ══════════════════════════════
   DRIVER DASHBOARD CARD
══════════════════════════════ */
.driver-dashboard-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    border: 1px solid #E0DDD6;
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.dash-greeting { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; }
.dash-status {
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}
.dash-status.online { background: #d4f7d4; color: #1E4D1E; }
.dash-earnings {
    background: #2D6A2D;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    color: #fff;
}
.dash-earn-label { font-size: .82rem; opacity: .8; margin-bottom: 6px; }
.dash-earn-amount {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.dash-earn-meta {
    display: flex;
    gap: 8px;
    font-size: .82rem;
    opacity: .8;
}
.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.dash-tile {
    background: #F6F5F1;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dash-tile svg { margin-bottom: 4px; }
.dash-tile span { font-size: .78rem; color: #888888; }
.dash-tile strong { font-size: .87rem; color: #1A1A1A; font-weight: 600; }

.earnings-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
    padding: 24px;
    background: #E8F4E8;
    border-radius: 14px;
}
.earn-stat { text-align: center; }
.earn-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2D6A2D;
    display: block;
}
.earn-label { font-size: .8rem; color: #888888; }

/* ══════════════════════════════
   TWO COL SECTION
══════════════════════════════ */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.two-col-large { gap: 80px; }
.two-col-section h2 { margin-bottom: 16px; }
.two-col-section p { margin-bottom: 16px; }

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px;
    background: #F6F5F1;
    border-radius: 22px;
}
.req-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .95rem;
}
.req-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.req-required { background: #2D6A2D; color: #fff; }
.req-optional { background: #E0DDD6; color: #888888; }
.req-item em { font-size: .82rem; color: #888888; }

/* ══════════════════════════════
   ABOUT VALUES
══════════════════════════════ */
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.value-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #E0DDD6;
}
.value-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2D6A2D;
    margin-top: 6px;
    flex-shrink: 0;
}
.value-card strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.value-card p { font-size: .9rem; margin: 0; }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.impact-stat {
    text-align: center;
    padding: 40px 24px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #E0DDD6;
}
.impact-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #2D6A2D;
    display: block;
    margin-bottom: 8px;
}
.impact-label { font-weight: 600; font-size: .95rem; display: block; margin-bottom: 6px; }
.impact-sub { font-size: .82rem; color: #888888; }

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.safety-card {
    padding: 32px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #E0DDD6;
    transition: transform .25s, box-shadow .25s;
}
.safety-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.safety-icon {
    width: 52px;
    height: 52px;
    background: #E8F4E8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.safety-card h3 { margin-bottom: 10px; }
.safety-card p { font-size: .9rem; }

/* ══════════════════════════════
   DOWNLOAD PAGE
══════════════════════════════ */
.download-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.download-app-info h2 { margin-bottom: 12px; }
.download-sub { font-size: 1.05rem; margin-bottom: 36px; }
.store-buttons-large { margin-bottom: 36px; }
.store-btn-large { padding: 16px 28px; }
.store-btn-large small { font-size: .78rem; }
.store-btn-large strong { font-size: 1.1rem; }

.app-specs {
    border: 1px solid #E0DDD6;
    border-radius: 14px;
    overflow: hidden;
}
.spec-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 14px 20px;
    border-bottom: 1px solid #E0DDD6;
    font-size: .9rem;
}
.spec-item:last-child { border-bottom: none; }
.spec-item strong { font-weight: 600; color: #1A1A1A; }
.spec-item span { color: #4A4A4A; }
.download-mockup {
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.14);
}

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #E0DDD6;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    text-align: left;
    gap: 16px;
}
.faq-question:hover { color: #2D6A2D; }
.faq-arrow {
    flex-shrink: 0;
    transition: transform .25s;
    color: #888888;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding-bottom: 22px;
}
.faq-answer p { font-size: .97rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
    background: #1A1A1A;
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.4;
}
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.5); }
.footer-col h4 {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    transition: color .2s;
}
.footer-col ul a:hover { color: #7DC67D; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: background .2s, color .2s;
}
.footer-socials a:hover { background: #2D6A2D; color: #fff; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}
[data-animate="fade-in"] { transform: translateY(0); }
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}
[data-animate="stagger"].visible > * {
    animation: fadeUp .6s ease forwards;
}
[data-animate="stagger"].visible > *:nth-child(1) { animation-delay: 0s; }
[data-animate="stagger"].visible > *:nth-child(2) { animation-delay: .12s; }
[data-animate="stagger"].visible > *:nth-child(3) { animation-delay: .24s; }
[data-animate="stagger"].visible > *:nth-child(4) { animation-delay: .36s; }
[data-animate="stagger"].visible > *:nth-child(5) { animation-delay: .48s; }
[data-animate="stagger"].visible > *:nth-child(6) { animation-delay: .60s; }

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

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .ai-grid { gap: 48px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav-links, .nav-inner .btn-sm { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 120px 0 64px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .phone-img { max-height: 260px; margin: 0 auto; }
    .hero-stats { gap: 20px; }
    .steps-grid { grid-template-columns: 1fr; }
    .ai-grid { grid-template-columns: 1fr; gap: 40px; }
    .dual-cta-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .download-cta-inner { grid-template-columns: 1fr; }
    .download-cta-visual { display: none; }
    .two-col-section { grid-template-columns: 1fr; gap: 36px; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .safety-grid { grid-template-columns: 1fr; }
    .download-page-grid { grid-template-columns: 1fr; }
    .download-phone-visual { display: none; }
    .pricing-row { grid-template-columns: 1fr 1fr; }
    .pricing-row span:last-child { display: none; }
    .pricing-header span:last-child { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .trust-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .earnings-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .store-buttons { flex-direction: column; }
    .impact-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 32px 24px; }
}

/* ══════════════════════════════
   NEWS TICKER
══════════════════════════════ */
.news-ticker {
    background: #2D6A2D;
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
    margin-top: -70px;
    position: relative;
    z-index: 5;
}
.ticker-label {
    flex-shrink: 0;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    background: #1E4D1E;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
}
.ticker-track {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}
.ticker-inner {
    display: flex;
    animation: ticker 38s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    font-size: .8rem;
    color: rgba(255,255,255,.9);
    padding-right: 8px;
}
.ticker-sep { margin: 0 16px; opacity: .4; }
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.ticker-more {
    flex-shrink: 0;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    padding: 0 16px;
    border-left: 1px solid rgba(255,255,255,.2);
    height: 100%;
    display: flex;
    align-items: center;
    transition: color .2s;
}
.ticker-more:hover { color: #fff; }

/* ══════════════════════════════
   HERO - UBER STYLE
══════════════════════════════ */
.hero-uber {
    position: relative;
    background: #1A1A1A;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 80px 0 64px;
    overflow: hidden;
}
.hero-uber-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(45,106,45,.15) 0%, transparent 60%);
}
.hero-map-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237dc67d' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-roads {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-uber-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-uber-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}
.hero-uber-title span { color: #7DC67D; }
.hero-uber-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    max-width: 420px;
}
.hero-app-img {
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
}

/* ── BOOKING WIDGET ── */
.booking-widget {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.3);
    max-width: 420px;
}
.widget-tabs {
    display: flex;
    border-bottom: 1px solid #E0DDD6;
}
.widget-tab {
    flex: 1;
    padding: 14px;
    font-family: 'Syne', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    color: #888888;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
}
.widget-tab.active {
    color: #1A1A1A;
    border-bottom-color: #1A1A1A;
}
.widget-body {
    padding: 20px;
}
.widget-body.hidden { display: none; }
.widget-input-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #E0DDD6;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
}
.widget-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-bottom: 1px solid #E0DDD6;
}
.widget-input:last-child { border-bottom: none; }
.widget-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.widget-dot.green { background: #2D6A2D; }
.widget-dot.black { background: #1A1A1A; }
.widget-field {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem;
    color: #1A1A1A;
    background: transparent;
}
.widget-field::placeholder { color: #888888; }
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px;
    border-radius: 14px;
    font-size: 1rem;
}

/* ══════════════════════════════
   SUGGESTIONS STRIP
══════════════════════════════ */
.suggestions-strip {
    background: #FDFCF8;
    padding: 40px 0;
    border-bottom: 1px solid #E0DDD6;
}
.suggestions-title {
    font-size: 1rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 20px;
}
.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.suggestion-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 14px;
    color: #1A1A1A;
    transition: box-shadow .2s, transform .2s;
}
.suggestion-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    transform: translateY(-2px);
    color: #1A1A1A;
}
.suggestion-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.suggestion-icon svg { width: 22px; height: 22px; }
.suggestion-text { flex: 1; }
.suggestion-text strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.suggestion-text span { font-size: .8rem; color: #888888; }
.suggestion-arrow { width: 18px; height: 18px; color: #888888; flex-shrink: 0; }

/* ══════════════════════════════
   COMMUNITIES BANNER
══════════════════════════════ */
.communities-banner {
    background: #F6F5F1;
    padding: 80px 0;
}
.communities-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
}
.communities-text h2 { margin-bottom: 16px; }
.communities-text > p { margin-bottom: 24px; }
.community-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.community-tag {
    font-size: .82rem;
    padding: 5px 14px;
    background: #E8F4E8;
    color: #1E4D1E;
    border-radius: 50px;
    font-weight: 500;
}
.community-tag-more {
    background: #2D6A2D;
    color: #fff;
    font-weight: 600;
}
.communities-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid #E0DDD6;
}
.comm-stat {}
.comm-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #2D6A2D;
    margin-bottom: 4px;
}
.comm-label { font-size: .88rem; color: #4A4A4A; }

/* ══════════════════════════════
   FEATURE SPLIT (Uber-style)
══════════════════════════════ */
.feature-split { background: #FDFCF8; }
.feature-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.feature-split-text h2 { margin-bottom: 16px; }
.feature-split-text > p { margin-bottom: 28px; }
.feature-split-text h2 em { color: #2D6A2D; font-style: normal; }

.ai-match-card {
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
.ai-match-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E0DDD6;
    margin-bottom: 14px;
}
.ai-match-header span { font-family: 'Syne', sans-serif; font-weight: 700; }
.ai-match-header small { margin-left: auto; font-size: .78rem; color: #888888; }
.ai-driver-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1px solid transparent;
    transition: background .15s;
}
.ai-driver-row.featured { background: #E8F4E8; border-color: #7DC67D; }
.ai-driver-row:hover { background: #F6F5F1; }
.ai-drv-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #2D6A2D;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}
.ai-drv-info { flex: 1; }
.ai-drv-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}
.ai-drv-top strong { font-size: .9rem; }
.star-rating { font-size: .78rem; color: #f5a623; }
.best-badge {
    background: #2D6A2D;
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
}
.ai-drv-meta { font-size: .78rem; color: #888888; }
.ai-drv-fare { font-family: 'Syne', sans-serif; font-weight: 700; color: #1E4D1E; }

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}
.check-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.check-list li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.check-list li div {}
.check-list li strong { display: block; margin-bottom: 2px; }
.check-list li span { font-size: .88rem; color: #888888; }

/* ══════════════════════════════
   SAFETY SECTION
══════════════════════════════ */
.safety-section { background: #F6F5F1; }
.safety-header { text-align: center; margin-bottom: 52px; }
.safety-header h2 { margin-top: 10px; }
.safety-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.safety-feat-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 24px;
    border: 1px solid #E0DDD6;
    transition: transform .25s, box-shadow .25s;
}
.safety-feat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.10); }
.safety-feat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #E8F4E8;
    line-height: 1;
    margin-bottom: 14px;
}
.safety-feat-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.safety-feat-card p { font-size: .9rem; }
.safety-cta { text-align: center; }

/* ══════════════════════════════
   EARN SECTION
══════════════════════════════ */
.earn-section { background: #FDFCF8; }
.earn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.earn-text h2 { margin-bottom: 16px; }
.earn-text > p { margin-bottom: 28px; }
.earn-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.earn-card {
    background: #E8F4E8;
    border-radius: 14px;
    padding: 20px;
}
.earn-big {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2D6A2D;
    margin-bottom: 4px;
}
.earn-desc { font-size: .83rem; color: #4A4A4A; }
.earn-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-link {
    background: none;
    border: none;
    color: #2D6A2D;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: 0;
    cursor: pointer;
    transition: color .2s;
}
.btn-link:hover { color: #1E4D1E; }

.earn-dashboard {
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.earn-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.earn-dash-name { font-family: 'Syne', sans-serif; font-weight: 700; }
.earn-online { font-size: .82rem; color: #2D6A2D; font-weight: 600; }
.earn-dash-main {
    background: #2D6A2D;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    color: #fff;
}
.earn-dash-label { font-size: .82rem; opacity: .8; margin-bottom: 4px; }
.earn-dash-amount { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; }
.earn-dash-sub { font-size: .82rem; opacity: .75; }
.earn-dash-bars {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 80px;
    margin-bottom: 20px;
}
.earn-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}
.earn-bar {
    width: 100%;
    background: #7DC67D;
    border-radius: 4px 4px 0 0;
    min-height: 4px;
}
.earn-bar-col span { font-size: .72rem; color: #888888; }
.earn-dash-route { background: #F6F5F1; border-radius: 8px; padding: 14px; }
.earn-route-tag { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #2D6A2D; margin-bottom: 4px; }
.earn-route-line { font-weight: 600; font-size: .9rem; margin-bottom: 3px; }
.earn-route-meta { font-size: .8rem; color: #888888; }

/* ══════════════════════════════
   NEWSROOM PREVIEW (home)
══════════════════════════════ */
.newsroom-preview-section { background: #F6F5F1; }
.newsroom-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.news-preview-card {
    border-radius: 22px;
    padding: 32px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #1A1A1A;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .25s, box-shadow .25s;
}
.news-preview-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.10); color: #1A1A1A; }
.news-preview-cat {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #2D6A2D;
    margin-bottom: 12px;
}
.news-preview-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; color: #1A1A1A; flex: 1; margin-bottom: 16px; }
.news-preview-date { font-size: .82rem; color: #888888; }

/* ══════════════════════════════
   DOWNLOAD CTA DARK
══════════════════════════════ */
.download-cta-dark { background: #1E4D1E; }
.download-dark-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.download-dark-text h2 { color: #fff; margin-bottom: 14px; }
.download-dark-text p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.download-phone-img { border-radius: 32px; box-shadow: 0 20px 60px rgba(0,0,0,.14); max-height: 340px; object-fit: cover; }

/* ══════════════════════════════
   TOWNSHIPS PAGE
══════════════════════════════ */
.page-hero-full {
    padding: 130px 0 80px;
}
.page-hero-inner { max-width: 700px; }
.page-hero-text h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero-text > p { color: rgba(255,255,255,.8); font-size: 1.05rem; }

.township-stats-box {
    background: #E8F4E8;
    border-radius: 32px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.tstat-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #2D6A2D;
    margin-bottom: 4px;
}
.tstat-label { font-size: .9rem; color: #4A4A4A; }

.province-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.province-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    border: 2px solid #E0DDD6;
    transition: transform .25s, box-shadow .25s;
}
.province-card.status-active { border-color: #7DC67D; }
.province-card.status-coming { border-color: #E0DDD6; opacity: .8; }
.province-card.status-planned { border-color: #E0DDD6; opacity: .65; }
.province-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.10); }
.province-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.province-card-header h3 { font-size: 1.1rem; }
.province-badge {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    background: #E8F4E8;
    color: #2D6A2D;
}
.status-coming .province-badge, .status-planned .province-badge {
    background: #F6F5F1;
    color: #888888;
}
.province-desc { font-size: .88rem; color: #4A4A4A; margin-bottom: 16px; }
.province-towns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.province-towns span {
    font-size: .76rem;
    color: #4A4A4A;
    background: #F6F5F1;
    border-radius: 50px;
    padding: 3px 10px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.approach-card {
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 22px;
    padding: 32px;
    transition: transform .25s, box-shadow .25s;
}
.approach-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.10); }
.approach-icon {
    width: 52px; height: 52px;
    background: #E8F4E8;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.approach-icon svg { width: 26px; height: 26px; }
.approach-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.approach-card p { font-size: .9rem; }

.driver-story-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.driver-story-text h2 { color: #fff; margin-bottom: 14px; }
.driver-story-text p { color: rgba(255,255,255,.75); margin-bottom: 24px; }

/* ══════════════════════════════
   NEWSROOM PAGE
══════════════════════════════ */
.newsroom-hero {
    background: #1A1A1A;
    padding: 140px 0 80px;
}
.newsroom-hero-content h1 { color: #fff; margin-bottom: 16px; }
.newsroom-hero-content p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 500px; }

.newsroom-featured { padding: 60px 0 0; background: #FDFCF8; }
.featured-article-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 32px;
    overflow: hidden;
    color: #1A1A1A;
    transition: box-shadow .25s;
}
.featured-article-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.14); color: #1A1A1A; }
.featured-article-img {
    min-height: 280px;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 28px;
}
.featured-article-cat {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #2D6A2D;
    background: #E8F4E8;
    border-radius: 50px;
    padding: 5px 14px;
    position: relative;
    z-index: 1;
}
.featured-article-decoration {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-article-decoration svg { width: 100%; height: 100%; }
.featured-article-body { padding: 40px; display: flex; flex-direction: column; }
.featured-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888888;
    margin-bottom: 14px;
}
.featured-article-body h2 { font-size: 1.5rem; margin-bottom: 14px; line-height: 1.35; }
.featured-article-body > p { font-size: .97rem; margin-bottom: 20px; flex: 1; }
.article-meta { font-size: .82rem; color: #888888; display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.read-link { color: #2D6A2D; font-weight: 600; font-size: .9rem; }

.newsroom-filter { background: #FDFCF8; padding: 28px 0 0; }
.cat-filters { display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 1px solid #E0DDD6; padding-bottom: 0; }
.cat-filter {
    font-size: .87rem;
    font-weight: 500;
    color: #888888;
    padding: 10px 18px;
    border-radius: 50px 50px 0 0;
    transition: color .2s, background .2s;
    border-bottom: 3px solid transparent;
}
.cat-filter:hover { color: #2D6A2D; }
.cat-filter.active { color: #2D6A2D; border-bottom-color: #2D6A2D; font-weight: 600; }

.newsroom-grid-section { background: #FDFCF8; padding: 48px 0 80px; }
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.article-card {
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 22px;
    overflow: hidden;
    color: #1A1A1A;
    transition: transform .25s, box-shadow .25s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.10); color: #1A1A1A; }
.article-card-img {
    height: 120px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 14px;
}
.article-cat-badge {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #2D6A2D;
    background: rgba(255,255,255,.85);
    border-radius: 50px;
    padding: 4px 12px;
}
.article-card-body { padding: 20px; }
.article-card-body h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.45; }
.article-card-body p { font-size: .88rem; margin-bottom: 14px; }

.press-contact { background: #F6F5F1; }
.press-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.press-contact-inner h2 { margin-bottom: 14px; }
.press-contact-inner > div > p { margin-bottom: 24px; }
.press-contacts { display: flex; flex-direction: column; gap: 16px; }
.press-contact-item { display: flex; flex-direction: column; gap: 2px; }
.press-contact-item strong { font-size: .87rem; color: #888888; }
.press-contact-item a { font-weight: 600; color: #2D6A2D; }
.press-downloads { background: #ffffff; border-radius: 22px; padding: 28px; border: 1px solid #E0DDD6; }
.press-downloads h4 { margin-bottom: 16px; }
.press-download-list { display: flex; flex-direction: column; gap: 8px; }
.press-dl-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #2D6A2D; font-weight: 500; padding: 10px 0; border-bottom: 1px solid #E0DDD6; }
.press-dl-item:last-child { border-bottom: none; }
.press-dl-item:hover { color: #1E4D1E; }

/* ══════════════════════════════
   ARTICLE PAGE
══════════════════════════════ */
.article-hero { padding: 120px 0 60px; }
.article-hero-inner {}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .87rem;
    color: #2D6A2D;
    font-weight: 600;
    margin-bottom: 20px;
}
.article-cat-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #2D6A2D;
    background: #E8F4E8;
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 16px;
}
.article-title { font-size: clamp(1.6rem, 3.5vw, 2.6rem); max-width: 760px; margin-bottom: 24px; }
.article-byline { display: flex; align-items: center; gap: 12px; }
.byline-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #2D6A2D;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}
.article-byline strong { display: block; font-size: .95rem; color: inherit; }
.article-byline span { font-size: .82rem; color: inherit; opacity: .75; }

.article-body-wrap { padding: 64px 0 80px; }
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}
.article-content { font-size: 1.05rem; line-height: 1.8; color: #4A4A4A; }
.article-content p { margin-bottom: 20px; }
.article-content h3 { font-size: 1.3rem; color: #1A1A1A; margin: 32px 0 16px; }
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 36px;
    margin-top: 36px;
    border-top: 1px solid #E0DDD6;
    font-size: .88rem;
    color: #888888;
}
.share-btn {
    font-size: .85rem;
    font-weight: 600;
    color: #2D6A2D;
    padding: 6px 14px;
    border: 1px solid #2D6A2D;
    border-radius: 50px;
}
.share-btn:hover { background: #2D6A2D; color: #fff; }

.article-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-widget { background: #F6F5F1; border-radius: 22px; padding: 24px; }
.sidebar-widget h4 { margin-bottom: 10px; }
.sidebar-widget > p { font-size: .9rem; margin-bottom: 16px; }
.sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
    font-size: .9rem;
    color: #2D6A2D;
    font-weight: 500;
    border-bottom: 1px solid #E0DDD6;
    padding-bottom: 10px;
    line-height: 1.45;
}
.sidebar-links a:last-child { border-bottom: none; }

/* ══════════════════════════════
   FOOTER UPDATES
══════════════════════════════ */
.footer {
    background: #1A1A1A;
    padding: 72px 0 0;
}
.footer-top {
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}
.footer-logo:hover { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col ul a:hover { color: #7DC67D; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    transition: background .2s, color .2s;
}
.footer-socials a:hover { background: #2D6A2D; color: #fff; }

/* ── NAV UPDATES ── */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.btn-ghost {
    background: transparent;
    color: #1A1A1A;
    border: 1px solid #E0DDD6;
}
.btn-ghost:hover { background: #F6F5F1; }

/* ══════════════════════════════
   RESPONSIVE UPDATES
══════════════════════════════ */
@media (max-width: 1024px) {
    .suggestions-grid { grid-template-columns: 1fr 1fr; }
    .safety-features-grid { grid-template-columns: 1fr 1fr; }
    .province-grid { grid-template-columns: 1fr 1fr; }
    .approach-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .news-preview-grid { grid-template-columns: 1fr 1fr; }
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .hero-uber-inner { gap: 40px; }
    .earn-grid { gap: 48px; }
    .communities-inner { gap: 48px; }
}

@media (max-width: 768px) {
    .news-ticker { padding-top: 60px; margin-top: -60px; }
    .hero-uber { padding: 60px 0 48px; }
    .hero-uber-inner { grid-template-columns: 1fr; }
    .hero-uber-visual { order: -1; text-align: center; }
    .hero-app-img { max-height: 220px; }
    .booking-widget { max-width: 100%; }
    .suggestions-grid { grid-template-columns: 1fr 1fr; }
    .communities-inner { grid-template-columns: 1fr; }
    .feature-split-grid { grid-template-columns: 1fr; }
    .earn-grid { grid-template-columns: 1fr; }
    .download-dark-inner { grid-template-columns: 1fr; }
    .download-dark-inner .download-phone-img { display: none; }
    .safety-features-grid { grid-template-columns: 1fr 1fr; }
    .news-preview-grid { grid-template-columns: 1fr; }
    .newsroom-preview-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .featured-article-card { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .province-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .driver-story-cta { grid-template-columns: 1fr; }
    .driver-story-img { display: none; }
    .press-contact-inner { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-actions .btn-ghost { display: none; }
    .earn-numbers { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .suggestions-grid { grid-template-columns: 1fr; }
    .safety-features-grid { grid-template-columns: 1fr; }
    .news-preview-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .earn-numbers { grid-template-columns: 1fr 1fr; }
    .ticker-more { display: none; }
}

/* ══════════════════════════════
   V3 ADDITIONS
══════════════════════════════ */

/* Hero store hint line */
.hero-store-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .83rem;
    color: #888888;
    margin-top: 20px;
}
.hero-store-hint svg { color: #2D6A2D; flex-shrink: 0; }

/* Nav CTAs */
.nav-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.nav-link-subtle {
    font-size: .88rem;
    color: #4A4A4A;
}
.nav-link-subtle:hover { color: #2D6A2D; }

/* Steps grid - 4 col for home v3 */
.steps-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .steps-grid { grid-template-columns: 1fr; } }

/* AI card CTA line */
.ai-card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: #2D6A2D;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #E0DDD6;
}

/* Communities strip */
.communities-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.comm-strip-text h2 { margin-bottom: 14px; }
.comm-strip-text p  { margin-bottom: 24px; }
.comm-strip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
}
.comm-area-tag {
    font-size: .82rem;
    font-weight: 500;
    padding: 5px 14px;
    background: #E8F4E8;
    color: #1E4D1E;
    border-radius: 50px;
}
.comm-area-more {
    background: #2D6A2D;
    color: #fff;
}
@media (max-width: 768px) {
    .communities-strip { grid-template-columns: 1fr; gap: 32px; }
}

/* Newsroom filter bar */
.newsroom-filter-bar {
    background: #FDFCF8;
    padding: 0;
    border-bottom: 1px solid #E0DDD6;
}
.cat-filters {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 0;
}
.cat-filter {
    font-size: .87rem;
    font-weight: 500;
    color: #888888;
    padding: 14px 18px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
    display: inline-block;
}
.cat-filter:hover { color: #2D6A2D; }
.cat-filter.active {
    color: #2D6A2D;
    border-bottom-color: #2D6A2D;
    font-weight: 600;
}

/* Newsroom body */
.newsroom-body {
    padding: 48px 0 72px;
    background: #FDFCF8;
}

/* Featured card */
.featured-article-card {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 32px;
    overflow: hidden;
    color: #1A1A1A;
    transition: box-shadow .25s;
}
.featured-article-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.14); color: #1A1A1A; }
.featured-article-img {
    min-height: 280px;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 24px;
}
.featured-article-cat {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #2D6A2D;
    background: rgba(255,255,255,.88);
    border-radius: 50px;
    padding: 5px 14px;
    position: relative;
    z-index: 1;
}
.featured-article-decoration {
    position: absolute;
    inset: 0;
}
.featured-article-decoration svg { width: 100%; height: 100%; }
.featured-article-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.featured-label {
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888888;
    margin-bottom: 12px;
}
.featured-article-body h2 { font-size: 1.45rem; margin-bottom: 12px; line-height: 1.35; }
.featured-article-body > p { font-size: .97rem; color: #4A4A4A; margin-bottom: 18px; flex: 1; }
.article-meta { font-size: .82rem; color: #888888; margin-bottom: 16px; }
.read-link { color: #2D6A2D; font-weight: 600; font-size: .9rem; }

/* Articles grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.article-card {
    background: #ffffff;
    border: 1px solid #E0DDD6;
    border-radius: 22px;
    overflow: hidden;
    color: #1A1A1A;
    transition: transform .25s, box-shadow .25s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.10); color: #1A1A1A; }
.article-card-img {
    height: 130px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 12px;
}
.article-cat-badge {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #2D6A2D;
    background: rgba(255,255,255,.88);
    border-radius: 50px;
    padding: 4px 12px;
}
.article-card-body { padding: 20px; }
.article-card-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.45; }
.article-card-body p  { font-size: .88rem; margin-bottom: 12px; }

/* Empty / offline states */
.newsroom-empty {
    text-align: center;
    padding: 80px 0;
    color: #888888;
    font-size: 1.05rem;
}
.newsroom-empty a { margin-top: 20px; display: inline-block; }
.newsroom-offline { max-width: 480px; margin: 80px auto; text-align: center; }
.offline-notice {
    background: #F6F5F1;
    border-radius: 22px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.offline-notice p { font-size: .97rem; color: #4A4A4A; }

/* Pagination */
.newsroom-pagination {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #E0DDD6;
}

/* Press contact section */
.press-contact-section { background: #F6F5F1; }
.press-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.press-contact-inner h2 { margin-bottom: 12px; }
.press-contact-inner > div > p { margin-bottom: 22px; }
.press-contacts { display: flex; flex-direction: column; gap: 14px; }
.press-contact-item { display: flex; flex-direction: column; gap: 2px; }
.press-contact-item strong { font-size: .85rem; color: #888888; }
.press-contact-item a { font-weight: 600; color: #2D6A2D; }
.press-downloads {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid #E0DDD6;
}
.press-downloads h4 { margin-bottom: 14px; }
.press-download-list { display: flex; flex-direction: column; }
.press-dl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 500;
    color: #2D6A2D;
    padding: 11px 0;
    border-bottom: 1px solid #E0DDD6;
}
.press-dl-item:last-child { border-bottom: none; }
.press-dl-item:hover { color: #1E4D1E; }

/* Article page */
.article-hero { position: relative; }
.article-hero-inner {}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .87rem;
    color: #2D6A2D;
    font-weight: 600;
    margin-bottom: 18px;
}
.article-cat-label {
    display: inline-block;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #2D6A2D;
    background: #E8F4E8;
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.article-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 22px; }
.article-byline { display: flex; align-items: center; gap: 12px; }
.byline-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #2D6A2D;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}
.article-byline strong { display: block; font-size: .95rem; color: inherit; }
.article-byline span   { font-size: .82rem; color: inherit; opacity: .75; }

.article-body-wrap { padding: 60px 0 80px; }
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}
.article-content { font-size: 1.05rem; line-height: 1.8; color: #4A4A4A; }
.article-content p  { margin-bottom: 20px; }
.article-content h2,
.article-content h3 { font-size: 1.3rem; color: #1A1A1A; margin: 32px 0 14px; }
.article-content ul,
.article-content ol { margin: 0 0 20px 22px; }
.article-content li { margin-bottom: 6px; }
.article-content img { border-radius: 14px; margin: 24px 0; max-width: 100%; }
.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid #E0DDD6;
    font-size: .87rem;
    color: #888888;
}
.share-btn {
    font-size: .83rem;
    font-weight: 600;
    color: #2D6A2D;
    padding: 6px 14px;
    border: 1px solid #2D6A2D;
    border-radius: 50px;
}
.share-btn:hover { background: #2D6A2D; color: #fff; }

.article-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 86px; }
.sidebar-widget { background: #F6F5F1; border-radius: 22px; padding: 22px; }
.sidebar-widget h4 { margin-bottom: 8px; }
.sidebar-widget > p { font-size: .9rem; margin-bottom: 14px; }
.sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
    font-size: .88rem;
    color: #2D6A2D;
    font-weight: 500;
    border-bottom: 1px solid #E0DDD6;
    padding-bottom: 10px;
    line-height: 1.45;
    display: block;
}
.sidebar-links a:last-child { border-bottom: none; }

/* Footer brand block */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}
.footer-desc { font-size: .87rem; color: rgba(255,255,255,.48); }
.footer-col h4 {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .9rem; color: rgba(255,255,255,.68); transition: color .2s; }
.footer-col ul a:hover { color: #7DC67D; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    transition: background .2s, color .2s;
}
.footer-socials a:hover { background: #2D6A2D; color: #fff; }

/* Responsive additions */
@media (max-width: 1024px) {
    .featured-article-card { grid-template-columns: 1fr; }
    .featured-article-img  { min-height: 180px; }
    .articles-grid         { grid-template-columns: 1fr 1fr; }
    .press-contact-inner   { grid-template-columns: 1fr; }
    .article-layout        { grid-template-columns: 1fr; }
    .article-sidebar       { position: static; }
    .footer-grid           { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .articles-grid  { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom  { flex-direction: column; gap: 14px; text-align: center; }
    .nav-ctas .nav-link-subtle { display: none; }
}

/* ══════════════════════════════
   DARK SECTION TEXT SAFEGUARDS
   Ensure no dark text appears on
   any dark/green-dark background
══════════════════════════════ */

/* Page heroes (green-dark and charcoal) */
.page-hero-green *,
.page-hero-dark * {
    color: inherit;
}
.page-hero-green,
.page-hero-dark {
    color: #fff;
}
.page-hero-green .section-tag,
.page-hero-dark .section-tag {
    color: #fff;
    background: rgba(255,255,255,.18);
}
.page-hero-green h1,
.page-hero-green h2,
.page-hero-green h3,
.page-hero-dark h1,
.page-hero-dark h2,
.page-hero-dark h3 {
    color: #fff;
}
.page-hero-green p,
.page-hero-dark p {
    color: rgba(255,255,255,.82);
}
.page-hero-green a:not(.btn),
.page-hero-dark a:not(.btn) {
    color: #7DC67D;
}

/* Full-width page hero (townships) */
.page-hero-full {
    color: #fff;
}
.page-hero-full h1,
.page-hero-full h2,
.page-hero-full h3 {
    color: #fff;
}
.page-hero-full p {
    color: rgba(255,255,255,.82);
}
.page-hero-text .section-tag {
    color: #fff;
    background: rgba(255,255,255,.18);
}

/* Trust bar (green-mid) */
.trust-bar,
.trust-bar * {
    color: rgba(255,255,255,.9);
}
.trust-label { color: rgba(255,255,255,.75) !important; }

/* CTA cards (dark and forest green) */
.cta-card,
.cta-card *:not(.btn) {
    color: rgba(255,255,255,.85);
}
.cta-card h3 { color: #fff; }
.cta-card > p { color: rgba(255,255,255,.75); }

/* Download CTA section (green-dark) */
.download-cta-section,
.download-cta-section h2,
.download-cta-section h3 {
    color: #fff;
}
.download-cta-section p { color: rgba(255,255,255,.8); }
.download-cta-section .section-tag {
    color: #fff;
    background: rgba(255,255,255,.18);
}

/* Newsroom hero (charcoal) */
.newsroom-hero {
    color: #fff;
}
.newsroom-hero h1,
.newsroom-hero h2 { color: #fff; }
.newsroom-hero p   { color: rgba(255,255,255,.75); }
.newsroom-hero .section-tag {
    color: #fff;
    background: rgba(255,255,255,.18);
}

/* Driver story CTA (dark forest green) */
.driver-story-cta {
    color: #fff;
}
.driver-story-text h2 { color: #fff; }
.driver-story-text p  { color: rgba(255,255,255,.75); }
.driver-story-text .section-tag {
    color: #fff;
    background: rgba(255,255,255,.18);
}

/* Earn dashboard main panel (green-mid bg) */
.earn-dash-main,
.earn-dash-main * {
    color: #fff;
}
.earn-dash-label  { color: rgba(255,255,255,.8) !important; }
.earn-dash-amount { color: #fff !important; }
.earn-dash-sub    { color: rgba(255,255,255,.75) !important; }

/* Footer (charcoal) */
.footer {
    color: rgba(255,255,255,.7);
}
.footer h1,
.footer h2,
.footer h3,
.footer h4 { color: #fff; }
.footer p   { color: rgba(255,255,255,.5); }
.footer a:not(.btn):not(.logo) { color: rgba(255,255,255,.7); }
.footer a:not(.btn):not(.logo):hover { color: #7DC67D; }

/* Safety and feature numbers that use green-pale color — keep readable */
.safety-feat-num,
.step-number {
    color: #E8F4E8;
}

/* ══════════════════════════════
   MISSING CLASS DEFINITIONS
══════════════════════════════ */

/* Nav logo mark and light variant */
.logo-mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-light .logo-text { color: #fff; }
.logo-light:hover { color: #fff; }

/* Hero content wrapper */
.hero-content {
    position: relative;
    z-index: 1;
}

/* AI visual wrapper (used in home + drivers) */
.ai-visual {
    position: relative;
}

/* Dual CTA section background */
.dual-cta-section {
    background: #F6F5F1;
}

/* tstat (township stats) text */
.tstat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ══════════════════════════════
   STORE BUTTONS ON LIGHT BG
   Download page uses store-btn 
   on cream/white background
══════════════════════════════ */
.store-buttons-large .store-btn {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: #fff;
}
.store-buttons-large .store-btn:hover {
    background: #1E4D1E;
    border-color: #1E4D1E;
    color: #fff;
    transform: translateY(-2px);
}
.store-buttons-large .store-btn small { color: rgba(255,255,255,.7); }
.store-buttons-large .store-btn strong { color: #fff; }

/* Also fix spec-item on light bg */
.spec-item { color: #1A1A1A; }
.spec-item strong { color: #1A1A1A; }
.spec-item span { color: #4A4A4A; }
