/* ===================================================== */
/* VÉLOLIBRE - CUSTOM CSS
   Colour theme based on Gabon's landscape
   No black, no cold greys
   Deep Rainforest Green | Mid Canopy Green | Laterite Amber
   Atlantic Sand | Tropical Mist
/* ===================================================== */

/* ===================================================== */
/* CSS VARIABLES (Root level)
/* ===================================================== */
:root {
    /* Primary colours - Deep Rainforest Green (replaces black) */
    --forest-deep: #0D2818;
    --forest-deep-rgb: 13, 40, 24;
    
    /* Primary brand green - Mid Canopy */
    --brand-green: #1A7A3C;
    --brand-green-light: #1E8540;
    --brand-green-soft: #2D9E5F;
    
    /* Accent - Laterite Amber & Equatorial Gold */
    --amber: #F5A623;
    --amber-dark: #E8970F;
    --amber-soft: #FEF3E2;
    
    /* Light surfaces - Atlantic Sand & Tropical Mist */
    --sand-light: #F7FBF8;
    --sand-mist: #EDF5EF;
    --palm-fresh: #E8F5EC;
    
    /* Text colours */
    --text-dark: #0D2818;
    --text-body: #2D5A3D;
    --text-muted: #6A8F76;
    --text-light: #EEF4F0;
    --text-muted-dark: #8AAF96;
    
    /* Semantic colours */
    --ocean-blue: #2A5DB0;
    --ocean-blue-light: #E8F0FE;
    --clay-brown: #6B5E52;
    --clay-brown-light: #F2EEE8;
    --alert-red: #A02020;
    --alert-red-light: #FBE9E9;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --navbar-height: 72px;
    --footer-padding: 32px 0;
}

/* ===================================================== */
/* BASE STYLES
/* ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--sand-light);
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

a {
    color: var(--brand-green);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--brand-green-light);
}

/* ===================================================== */
/* LOGO IMAGES
/* ===================================================== */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-img-small {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* ===================================================== */
/* NAVBAR - Fixed top, Deep Rainforest Green
/* ===================================================== */
.navbar {
    background-color: var(--forest-deep);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-spacer {
    height: var(--navbar-height);
}

.navbar-brand {
    padding: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Keep logo-mark for fallback, but prefer images */
.logo-mark {
    width: 40px;
    height: 40px;
    background-color: var(--amber);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark i {
    color: var(--forest-deep);
    font-size: 22px;
}

.logo-mark.small {
    width: 36px;
    height: 36px;
}

.logo-mark.small i {
    font-size: 18px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-dark);
    font-weight: 500;
}

/* Navigation links */
.navbar-nav .nav-link {
    color: var(--text-muted-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-light);
}

.navbar-nav .dropdown-menu {
    background-color: var(--forest-deep);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 8px;
    padding: 0.5rem 0;
}

.navbar-nav .dropdown-item {
    color: var(--text-muted-dark);
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Primary CTA button - Amber */
.btn-cta {
    background-color: var(--amber);
    color: var(--forest-deep);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: var(--amber-dark);
    color: var(--forest-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

/* Mobile navbar toggler */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(238, 244, 240, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================================== */
/* BUTTONS
/* ===================================================== */
.btn-primary-custom {
    background-color: var(--brand-green);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: var(--brand-green-light);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 122, 60, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid var(--text-light);
    transition: all 0.2s ease;
}

.btn-outline-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

.btn-amber {
    background-color: var(--amber);
    color: var(--forest-deep);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.2s ease;
}

.btn-amber:hover {
    background-color: var(--amber-dark);
    color: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* ===================================================== */
/* HERO SECTION (half height)
/* ===================================================== */
.hero {
    background-color: var(--forest-deep);
    padding: 4rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Diagonal line texture overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 2px,
        transparent 2px,
        transparent 8px
    );
    pointer-events: none;
}

/* Radial green glow */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(26, 122, 60, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-green-soft);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 158, 95, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(45, 158, 95, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45, 158, 95, 0);
    }
}

.hero-badge span {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero h1 .italic-amber {
    font-style: italic;
    color: var(--amber);
    font-weight: 600;
}

.hero-subtitle {
    color: var(--text-muted-dark);
    font-size: 1rem;
    max-width: 90%;
    margin: 1.5rem 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--amber);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phone mockup */
.phone-mockup {
    background-color: var(--sand-mist);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 280px;
    margin-left: auto;
}

.phone-screen {
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
}

.mockup-header {
    background-color: var(--forest-deep);
    padding: 12px;
}

.mockup-header i {
    color: var(--text-light);
    font-size: 14px;
}

.mockup-map {
    background-color: var(--palm-fresh);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-pin {
    background-color: var(--amber);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.mockup-bike-list {
    padding: 12px;
}

.mockup-bike-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 12px;
}

.mockup-scan-btn {
    background-color: var(--amber);
    color: var(--forest-deep);
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
}

/* ===================================================== */
/* FEATURE STRIP - Mid Canopy Green
/* ===================================================== */
.feature-strip {
    background-color: var(--brand-green);
    padding: 1.25rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--amber);
    font-size: 1.1rem;
}

.feature-item span {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===================================================== */
/* SECTION COMMON STYLES
/* ===================================================== */
.section {
    padding: 4rem 0;
}

.section-light {
    background-color: var(--sand-light);
}

.section-mist {
    background-color: var(--sand-mist);
}

.section-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* ===================================================== */
/* AUDIENCE CARDS (Three services)
/* ===================================================== */
.audience-cards {
    margin-top: 1rem;
}

.service-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header-custom {
    padding: 1.5rem;
    text-align: center;
}

.card-header-custom i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.card-header-custom .card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.card-header-custom .card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.card-header-custom .card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.header-green {
    background-color: var(--forest-deep);
}

.header-earth {
    background-color: #8B5A2B;
}

.header-ocean {
    background-color: var(--ocean-blue);
}

.card-body-custom {
    padding: 1.5rem;
    background-color: var(--sand-mist);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-body);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li i {
    color: var(--brand-green);
    width: 20px;
    margin-right: 8px;
    font-size: 0.75rem;
}

.card-link {
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.card-link:hover {
    gap: 10px;
}

/* ===================================================== */
/* HOW IT WORKS SECTION
/* ===================================================== */
.how-it-works-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.steps-container {
    flex: 1;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.2s ease;
    line-height: 1;
}

.step-item:hover .step-number {
    color: var(--amber);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.admin-preview {
    flex: 1;
    background-color: var(--forest-deep);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.preview-header {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.preview-header span {
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 500;
}

.preview-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preview-stat {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    flex: 1;
    text-align: center;
}

.preview-stat .stat-value {
    color: var(--amber);
    font-weight: 700;
    font-size: 1rem;
}

.preview-stat .stat-label-sm {
    color: var(--text-muted-dark);
    font-size: 0.6rem;
}

.preview-map {
    background-color: var(--brand-green);
    height: 80px;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
}

.preview-alerts {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.5rem;
}

.alert-row {
    font-size: 0.65rem;
    padding: 0.25rem 0;
    color: var(--text-muted-dark);
}

/* ===================================================== */
/* TRUST FEATURES CARDS
/* ===================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-card {
    background-color: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: var(--palm-fresh);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.trust-icon i {
    font-size: 1.8rem;
    color: var(--brand-green);
}

.trust-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===================================================== */
/* BIKE STATE SYSTEM (Status chips)
/* ===================================================== */
.status-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.status-chip {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-available {
    background-color: var(--palm-fresh);
    color: var(--brand-green);
}

.status-rented {
    background-color: var(--amber-soft);
    color: #8A5A0A;
}

.status-delivery {
    background-color: var(--ocean-blue-light);
    color: var(--ocean-blue);
}

.status-maintenance {
    background-color: var(--clay-brown-light);
    color: var(--clay-brown);
}

.status-alert {
    background-color: var(--alert-red-light);
    color: var(--alert-red);
}

.legend-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-body);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-available { background-color: var(--brand-green); }
.dot-rented { background-color: var(--amber); }
.dot-delivery { background-color: var(--ocean-blue); }
.dot-maintenance { background-color: var(--clay-brown); }
.dot-alert { background-color: var(--alert-red); }

/* ===================================================== */
/* PAYMENT METHODS SECTION (Dark background)
/* ===================================================== */
.payment-section {
    background-color: var(--forest-deep);
}

.payment-section .section-heading {
    color: var(--text-light);
}

.payment-section .section-description {
    color: var(--text-muted-dark);
}

.payment-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    flex: 1;
    min-width: 120px;
    transition: transform 0.2s ease;
}

.payment-card:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.08);
}

.payment-card i {
    font-size: 2rem;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.payment-card .payment-name {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.payment-badge-card {
    display: inline-block;
    background-color: var(--brand-green);
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 6px;
}

/* ===================================================== */
/* CTA BAND (Full width amber)
/* ===================================================== */
.cta-band {
    background-color: var(--amber);
    padding: 2.5rem 0;
    text-align: center;
}

.cta-band h2 {
    font-family: var(--font-serif);
    color: var(--forest-deep);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-band p {
    color: var(--forest-deep);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-forest {
    background-color: var(--forest-deep);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
}

.btn-forest:hover {
    background-color: #1A3A28;
    color: white;
}

.btn-outline-forest {
    background-color: transparent;
    color: var(--forest-deep);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--forest-deep);
}

.btn-outline-forest:hover {
    background-color: var(--forest-deep);
    color: var(--amber);
}

/* ===================================================== */
/* FOOTER (Half height, compact)
/* ===================================================== */
.footer {
    background-color: var(--forest-deep);
    padding: var(--footer-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-description {
    color: var(--text-muted-dark);
    font-size: 0.75rem;
    margin: 0.75rem 0;
    line-height: 1.5;
}

.payment-badges {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}

.payment-badge {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted-dark);
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.contact-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted-dark);
    font-size: 0.75rem;
}

.contact-links i {
    width: 16px;
    font-size: 0.8rem;
}

.contact-links a {
    color: var(--text-muted-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
}

.footer-copyright {
    color: var(--text-muted-dark);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted-dark);
}

.footer-legal a:hover {
    color: var(--text-light);
}

/* ===================================================== */
/* RESPONSIVE BREAKPOINTS
/* ===================================================== */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .phone-mockup {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .how-it-works-grid {
        flex-direction: column;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 3rem 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }
    
    .hero h1 {
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto 1.5rem auto;
        width: fit-content;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .feature-strip .row {
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .payment-badges {
        justify-content: center;
    }
    
    .contact-links li {
        justify-content: center;
    }
    
    .cta-band h2 {
        font-size: 1.4rem;
    }
    
    /* Logo responsiveness */
    .logo-img {
        height: 32px;
    }
    
    .logo-img-small {
        height: 28px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 1.3rem;
    }
    
    .status-chips {
        gap: 0.5rem;
    }
    
    .status-chip {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Further logo adjustments for mobile */
    .logo-img {
        height: 28px;
    }
    
    .logo-wrapper {
        gap: 8px;
    }
}