/**
 * Erebora Landing Page - Components
 * Buttons, cards, forms, modals, etc.
 */

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: var(--font-extrabold);
    font-size: var(--text-base);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--cta-gradient);
    color: var(--bg);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--ink);
    border: 2px solid var(--ring);
}

.btn-secondary:hover {
    border-color: var(--cta1);
    color: var(--cta1);
}

.btn-outline {
    background: transparent;
    color: var(--cta1);
    border: 2px solid var(--cta1);
}

.btn-outline:hover {
    background: var(--cta1);
    color: var(--bg);
}

.btn-small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-xlarge {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-xl);
    min-width: 280px;
}
/* Hero CTA - MEGA VISIBLE, IMPOSSIBLE TO MISS */
.btn-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-5) var(--space-10);
    font-size: clamp(18px, 5vw, 26px);
    font-weight: var(--font-extrabold);
    min-width: 340px;
    /* HIGH CONTRAST - Bright green that POPS */
    background: linear-gradient(135deg, #00c853 0%, #00e676 50%, #69f0ae 100%) !important;
    color: #000 !important;
    border: 5px solid #ff0000;
    outline: 5px solid #d4af37;
    outline-offset: 0px;
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.9),
        0 0 60px rgba(255, 0, 0, 0.6),
        0 0 100px rgba(212, 175, 55, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: visible;
    animation: hero-cta-mega-pulse 1.5s ease-in-out infinite;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main text row */
.btn-hero-cta .cta-main-text {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* Subtext - urgency line */
.btn-hero-cta .cta-subtext {
    font-size: clamp(12px, 3vw, 16px);
    font-weight: var(--font-semibold);
    color: #004d00;
    text-transform: none;
    letter-spacing: normal;
    opacity: 0.9;
}

/* Pulsing ring effect around the button - GREEN */
.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(0, 255, 136, 0.7);
    border-radius: var(--radius-lg);
    animation: hero-cta-ring-pulse 1.5s ease-in-out infinite;
    pointer-events: none;
}

/* Second outer ring for extra emphasis */
.btn-hero-cta::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: var(--radius-lg);
    animation: hero-cta-ring-pulse 1.5s ease-in-out infinite 0.2s;
    pointer-events: none;
}

@keyframes hero-cta-mega-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow:
            0 0 30px rgba(212, 175, 55, 0.9),
            0 0 60px rgba(255, 0, 0, 0.6),
            0 0 100px rgba(212, 175, 55, 0.4),
            0 8px 32px rgba(0, 0, 0, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.04);
        box-shadow:
            0 0 60px rgba(0, 255, 136, 1),
            0 0 100px rgba(0, 255, 136, 0.8),
            0 0 160px rgba(0, 255, 136, 0.5),
            0 12px 40px rgba(0, 0, 0, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 0.5),
            inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    }
}

@keyframes hero-cta-ring-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Hero button sheen handled by .sheen-btn class in animations.css */

.btn-hero-cta:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: #69f0ae;
    box-shadow:
        0 0 80px rgba(0, 255, 136, 1),
        0 0 120px rgba(0, 255, 136, 0.7),
        0 16px 48px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.btn-hero-cta .cta-finger {
    font-size: 1.8em;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.btn-hero-cta .cta-finger .finger-inner {
    display: inline-block;
    animation: finger-tap 1.2s ease-in-out infinite !important;
    transform-origin: center bottom;
    will-change: transform;
}

.btn-hero-cta .cta-text {
    position: relative;
    z-index: 1;
}

@keyframes finger-tap {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-10deg); }
}

/* ===== MOBILE RESPONSIVE - CTA ===== */
@media (max-width: 768px) {
    .hero-cta-wrapper {
        margin-top: var(--space-3);
        padding: 0 var(--space-3);
    }
    
    .hero-cta-arrow {
        font-size: 32px;
        margin-bottom: var(--space-1);
    }
    
    .hero-cta-arrow svg {
        width: 32px;
        height: 32px;
    }
    
    .btn-hero-cta {
        padding: var(--space-4) var(--space-5);
        min-width: unset;
        width: 100%;
        max-width: 360px;
        font-size: clamp(16px, 4.5vw, 20px);
        margin: 0 auto;
    }

    .btn-hero-cta .cta-finger {
        font-size: 1.5em;
    }
    
    .btn-hero-cta .cta-subtext {
        font-size: clamp(11px, 2.8vw, 14px);
    }
    
    .btn-hero-cta::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
    
    .btn-hero-cta::after {
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
    }
}

/* Extra small screens - button always fits */
@media (max-width: 380px) {
    .btn-hero-cta {
        padding: var(--space-3) var(--space-4);
        font-size: clamp(14px, 4vw, 16px);
        width: calc(100% - 16px);
    }
    
    .btn-hero-cta .cta-finger {
        font-size: 1.3em;
    }
    
    .btn-hero-cta .cta-subtext {
        font-size: 11px;
    }
    
    .btn-hero-cta::before,
    .btn-hero-cta::after {
        display: none;
    }
    
    .hero-cta-arrow {
        display: none;
    }
}

.btn-arrow {
    font-size: 0.8em;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* ===== HERO SECTION ===== */
.hero-title {
    text-align: center;
    margin-bottom: var(--space-1);
}

.kicker {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: var(--font-extrabold);
    letter-spacing: var(--tracking-widest);
    color: var(--ink);
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    margin-bottom: var(--space-1);
}

.headline {
    color: #D4AF37;
    background: linear-gradient(120deg, #D4AF37 0%, #D4AF37 40%, #fff 50%, #D4AF37 60%, #D4AF37 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #000000;
    text-shadow:
        0 1px 0 #b8860b,
        0 2px 0 #a67c00,
        0 3px 0 #8b6914,
        0 4px 0 #6b4f10,
        0 5px 10px rgba(0,0,0,0.3),
        0 8px 20px rgba(0,0,0,0.15);
    animation: sheen-text 3s ease-in-out infinite;
}

/* ===== HERO TESTIMONIAL CAROUSEL ===== */
.hero-testimonials {
    width: 100%;
    max-width: 500px;
    margin: var(--space-2) auto;
    position: relative;
    min-height: 80px;
}

.hero-testimonial {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.hero-testimonial.active {
    display: block;
}

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

.hero-testimonial-stars {
    color: var(--cta1);
    font-size: var(--text-lg);
    letter-spacing: 2px;
    margin-bottom: var(--space-2);
}

.hero-testimonial-text {
    color: var(--ink);
    font-size: var(--text-base);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-2);
}

.hero-testimonial-author {
    color: var(--cta1);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

.hero-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ring);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--cta1);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: var(--cta2);
}

@media (max-width: 768px) {
    .hero-testimonials {
        max-width: 100%;
        padding: 0 var(--space-2);
    }

    .hero-testimonial-text {
        font-size: var(--text-sm);
    }
}

/* ===== VIDEO CONTAINER ===== */
.video-container {
    width: 95%;
    max-width: 700px;
}

@media (max-width: 768px) {
    .video-container {
        width: 98%;
        max-width: 100%;
    }
    
    .video-shell {
        max-height: calc(100vh - 500px);
        max-height: calc(100dvh - 500px);
    }
}
/* Mobile hero must fit in viewport — from CORRECT Jan 7 backup */@media (max-width: 768px) {    #section-hero .section-content {        height: calc(100vh - 50px);        height: calc(100dvh - 50px);        max-height: none;        overflow: visible;        justify-content: space-between;        padding-top: var(--space-2);        padding-bottom: var(--space-2);    }    .hero-cta-wrapper {        margin-top: 0;        padding-bottom: 5px;        flex-shrink: 0;    }    .hero-testimonials {        margin: var(--space-1) auto;        min-height: auto;        flex-shrink: 0;    }    .hero-title { flex-shrink: 0; }    .trust-bar { flex-shrink: 0; }}/* Extra small phones */@media (max-width: 768px) and (max-height: 600px) {    .video-shell {        max-height: calc(100vh - 420px);        max-height: calc(100dvh - 420px);    }    .hero-testimonials { display: none; }    .btn-hero-cta {        padding: var(--space-3) var(--space-6);        font-size: var(--text-base);    }}

.video-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 0 4px var(--cta1), var(--shadow-xl);
}

.video-shell iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video Thumbnail for Lazy Loading */
.video-thumbnail {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-base);
}

.video-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zoom in slightly to crop YouTube's black letterbox bars from thumbnail */
    transform: scale(1.08);
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 115px;
    height: 115px;
    background: rgba(37, 211, 102, 0.3);
    border: 5px solid #25D366;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: play-pulse 1.2s ease-in-out infinite !important;
    animation: play-pulse 1.2s ease-in-out infinite !important;
}

@-webkit-keyframes play-pulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        -webkit-transform: scale(1.12);
        transform: scale(1.12);
        box-shadow: 0 0 0 30px rgba(37, 211, 102, 0), 0 0 60px rgba(37, 211, 102, 0.7);
    }
}

@keyframes play-pulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        -webkit-transform: scale(1.12);
        transform: scale(1.12);
        box-shadow: 0 0 0 30px rgba(37, 211, 102, 0), 0 0 60px rgba(37, 211, 102, 0.7);
    }
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    margin-left: 6px; /* Offset for visual centering of play icon */
}

.video-play-btn .play-bg {
    display: none; /* Hide the YouTube-style background */
}

.video-play-btn .play-icon {
    fill: white;
}

.video-play-btn:hover {
    background: rgba(37, 211, 102, 0.5);
    border-color: #1ee55a;
    -webkit-animation: play-pulse 1.2s ease-in-out infinite !important;
    animation: play-pulse 1.2s ease-in-out infinite !important;
}

/* Video Sound Control Button - positioned top-right to avoid YouTube controls */
.video-sound-btn {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-base);
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--cta1);
}

.video-sound-btn.hidden {
    display: none;
}

.video-sound-btn .sound-on {
    display: block;
}

.video-sound-btn .sound-off {
    display: none;
}

.video-sound-btn.muted .sound-on {
    display: none;
}

.video-sound-btn.muted .sound-off {
    display: block;
}

.video-sound-btn.muted {
    border-color: var(--urgency);
}

/* Play button label */
.video-play-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    white-space: nowrap;
    animation: label-bounce 2s ease-in-out infinite;
}

@keyframes label-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.video-thumbnail.hidden {
    display: none;
}

/* Sound Overlay */
.sound-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: var(--z-dropdown);
    cursor: pointer;
    transition: opacity var(--transition-base);
}

.sound-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.sound-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--cta-gradient);
    color: var(--bg);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: var(--font-extrabold);
    font-size: var(--text-base);
    box-shadow: var(--shadow-lg);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--success);
    box-shadow: 0 0 0 6px var(--success-dim);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Video CTA Overlay (10s delay) */
.video-cta-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: var(--z-dropdown);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.video-cta-overlay:not(.hidden) {
    opacity: 1;
}

.video-cta-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-extrabold);
    color: var(--ink);
    margin-bottom: var(--space-4);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(250, 248, 245, 0.7));
    backdrop-filter: blur(8px) saturate(130%);
    -webkit-backdrop-filter: blur(8px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--ink-dim);
}

.trust-icon {
    width: 16px;
    height: 16px;
    fill: var(--ink);
    opacity: 0.8;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    opacity: 0.6;
    animation: fade-bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    font-size: var(--text-2xl);
    color: var(--cta1);
    animation: bounce-down 1.5s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--cta1);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

/* ===== QUICK FAQ SECTION ===== */
.quick-faq-section {
    width: 100%;
    max-width: var(--container-max);
    margin-top: var(--space-6);
    padding: var(--space-4);
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--ring-gold);
    border-radius: var(--radius-lg);
}

.quick-faq-title {
    text-align: center;
    color: var(--cta1);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

@media (max-width: 768px) {
    .quick-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-faq-grid {
        grid-template-columns: 1fr;
    }
}

.quick-faq-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-2);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition-base);
}

.quick-faq-item:hover {
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: var(--glow-gold-sm);
}

.quick-faq-icon {
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.quick-faq-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-faq-content strong {
    color: var(--ink);
    font-size: var(--text-sm);
}

.quick-faq-content span {
    color: var(--ink-dim);
    font-size: var(--text-xs);
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    margin-bottom: var(--space-6);
}

.filter-btn {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--ring);
    color: var(--ink-dim);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--cta1);
    color: var(--cta1);
    background: var(--surface-warm-hover);
    box-shadow: var(--glow-gold-sm);
}

.filter-btn.active {
    background: var(--cta-gradient);
    border-color: var(--cta1);
    color: var(--bg);
}

/* ===== BIKE SEARCH BAR ===== */
.bike-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: var(--space-2);
}
.bike-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--ink-dim);
    pointer-events: none;
}
.bike-search-input {
    width: 100%;
    padding: var(--space-3) var(--space-4) var(--space-3) 48px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--ring);
    color: var(--ink);
    font-size: var(--text-base);
    transition: var(--transition-base);
}
.bike-search-input:focus {
    outline: none;
    border-color: var(--cta1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.bike-search-input::placeholder {
    color: var(--ink-muted);
}

/* ===== BIKE CARD ===== */
.bike-card {
    /* NO background here - let ::after provide it so ::before border shows through */
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    /* perspective is on parent .bike-grid for 3D effect to work */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    /* Staggered animation on load */
    animation: stagger-fade-in 0.6s ease forwards;
    opacity: 0;
}

/* Stagger delays for bike cards */
.bike-card:nth-child(1) { animation-delay: 0ms; }
.bike-card:nth-child(2) { animation-delay: 100ms; }
.bike-card:nth-child(3) { animation-delay: 200ms; }
.bike-card:nth-child(4) { animation-delay: 300ms; }
.bike-card:nth-child(5) { animation-delay: 400ms; }
.bike-card:nth-child(6) { animation-delay: 500ms; }
.bike-card:nth-child(7) { animation-delay: 600ms; }

/* Subtle gold glow border - appears on hover */
.bike-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.2),
        rgba(184, 148, 31, 0.1),
        rgba(212, 175, 55, 0.15));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Glass panel background — warm tint for depth against off-white bg */
.bike-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg,
        rgba(250, 245, 235, 0.78) 0%,
        rgba(245, 240, 230, 0.88) 100%);
    backdrop-filter: blur(14px) saturate(155%);
    -webkit-backdrop-filter: blur(14px) saturate(155%);
    border: var(--glass-border);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 0;
}

.bike-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: none; /* shadow is on ::after */
}

.bike-card:hover::before {
    opacity: 1;
}

.bike-card:hover::after {
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.03),
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* All card content must be above pseudo-elements */
.bike-card > * {
    position: relative;
    z-index: 1;
}

.bike-card-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-extrabold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    z-index: 10;
}

.bike-card-badge.popular {
    background: linear-gradient(145deg, #ff8555, #f7931e);
    color: white;
}

.bike-card-badge.best-value {
    background: linear-gradient(145deg, #1ee5a0, #00d4aa);
    color: white;
}

.bike-card-badge.tourist {
    background: linear-gradient(145deg, #5ca5f2, #357abd);
    color: white;
}
.bike-card-badge.premium {
    background: linear-gradient(145deg, #d4af37, #b8941f);
    color: white;
}

.bike-card-badge.new {
    background: linear-gradient(145deg, #a855f7, #7c3aed);
    color: white;
}


/* Image container - MUST have overflow hidden for Ken Burns effect */
.bike-card-img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 2px solid var(--ring-gold);
    aspect-ratio: 4 / 3;
}

.bike-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-out;
}

/* Ken Burns effect on hover - slow zoom, contained */
.bike-card:hover .bike-card-img {
    transform: scale(1.08);
}

/* Per-bike image positioning now injected dynamically by bikes.js from DB values */

.bike-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--ink);
    text-align: center;
}

.bike-card-pricing {
    text-align: center;
    margin: var(--space-3) 0;
}

.bike-card-market-price {
    font-size: var(--text-xl);
    color: var(--ink-dim);
    margin-bottom: var(--space-2);
    font-weight: var(--font-semibold);
}

.bike-card-market-price .strikethrough {
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 3px;
    color: var(--ink);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
}

.bike-card-market-price .per-day {
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    color: var(--ink-muted);
}

.bike-card-your-price {
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    color: var(--cta1);
    line-height: 1.1;
}

.bike-card-your-price .per-day {
    font-size: var(--text-lg);
    font-weight: var(--font-normal);
    color: var(--ink-dim);
}

.bike-card-savings {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: white;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-top: var(--space-2);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

/* Price row with rates box */
.bike-card-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-1);
}

.bike-card-price-left {
    text-align: center;
}

.bike-card-price-left .bike-card-savings {
    margin-top: 0;
    margin-bottom: var(--space-1);
}

.bike-card-price-left .bike-card-your-price {
    margin: 0;
}

/* Weekly/Monthly rates box - small and compact */
.bike-card-rates-box {
    background: linear-gradient(135deg, rgba(247, 247, 248, 0.6), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-sm);
    padding: var(--space-2);
    font-size: 10px;
    line-height: 1.3;
    text-align: left;
    min-width: 95px;
}

.bike-card-rates-box .rate-row {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.bike-card-rates-box .rate-row:first-child {
    margin-bottom: 3px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--ring);
}

.bike-card-rates-box .rate-label {
    color: var(--ink-dim);
    font-weight: var(--font-medium);
}

.bike-card-rates-box .rate-price {
    color: var(--ink);
    font-weight: var(--font-bold);
}

.bike-card-rates-box .rate-save {
    color: #22c55e;
    font-weight: var(--font-bold);
    font-size: 9px;
}

.bike-card-buttons {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-2);
}

.bike-card-buttons .btn {
    flex: 1;
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-2);
}

.bike-card-img {
    cursor: pointer;
    transition: var(--transition-base);
}

.bike-card-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* ===== CALCULATOR - CLEAN & SIMPLE ===== */
.calculator-card {
    background: var(--bg-card);
    border: 3px solid var(--ring-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    width: 100%;
    max-width: 600px;
}

@media (max-width: 768px) {
    .calculator-card {
        padding: var(--space-5);
        max-width: 95%;
    }
}

/* Bike Header - Larger */
.calc-bike-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-bottom: var(--space-5);
    border-bottom: 2px solid var(--ring);
    margin-bottom: var(--space-5);
}

.calc-bike-thumb {
    width: 120px;
    height: 85px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 3px solid var(--cta1);
}

.calc-bike-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--cta1);
    margin: 0;
    line-height: 1.3;
}

/* Date Section */
.calc-dates-section {
    margin-bottom: var(--space-6);
}

.calc-instruction {
    font-size: var(--text-lg);
    color: var(--ink);
    margin-bottom: var(--space-4);
    font-weight: var(--font-semibold);
    text-align: center;
}

/* Date Row - Side by Side with Arrow */
.calc-date-row {
    display: flex;
    align-items: flex-end;
    gap: var(--space-2);
}

.calc-date-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.calc-date-field label {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--cta1);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.calc-date-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.calc-date-input {
    width: 100%;
    padding: var(--space-4);
    padding-right: var(--space-10);
    border-radius: var(--radius-md);
    border: 2px solid var(--ring-gold);
    background: var(--bg-card-elevated);
    color: var(--ink);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color-scheme: light;
    cursor: pointer;
    transition: var(--transition-base);
}

.calc-date-input:hover {
    border-color: var(--cta1);
    background: rgba(212, 175, 55, 0.1);
}

.calc-date-input:focus {
    outline: none;
    border-color: var(--cta1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Hide default calendar icon */
.calc-date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Custom Calendar Icon - Bright Gold */
.calc-calendar-icon {
    position: absolute;
    right: var(--space-3);
    width: 22px;
    height: 22px;
    color: var(--cta1);
    pointer-events: none;
}

/* Arrow between dates */
.calc-date-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--cta1);
    margin-bottom: var(--space-3);
}

.calc-date-arrow svg {
    width: 100%;
    height: 100%;
}

/* Price Section */
.calc-price-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: 0 calc(var(--space-8) * -1);
    margin-bottom: calc(var(--space-8) * -1);
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

@media (max-width: 768px) {
    .calc-price-section {
        margin: 0 calc(var(--space-5) * -1);
        margin-bottom: calc(var(--space-5) * -1);
        padding: var(--space-4);
    }
}

/* Duration Display */
.calc-duration {
    text-align: center;
    padding: var(--space-3) var(--space-4);
    background: var(--bg-card);
    border: 2px dashed var(--ring-gold);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
}

.calc-duration .duration-text {
    color: var(--ink-dim);
    font-size: var(--text-base);
}

.calc-duration.active {
    background: var(--cta-gradient);
    border: none;
}

.calc-duration.active .duration-text {
    color: var(--bg);
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
}

/* ===== NEW PRICING DISPLAY LAYOUT ===== */

/* Market Price Row - Strikethrough at top - LARGE like final price */
.calc-price-market {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    text-align: center;
}

.calc-market-label {
    color: var(--ink-dim);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.calc-market-amount {
    font-size: clamp(32px, 9vw, 42px);
    font-weight: var(--font-extrabold);
    color: var(--ink);
    line-height: 1;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 4px;
}

/* Your Price Section - Main price */
.calc-price-yours {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    text-align: center;
}

.calc-yours-label {
    color: var(--success);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.calc-price-big {
    font-size: clamp(36px, 10vw, 48px);
    font-weight: var(--font-extrabold);
    color: var(--cta1);
    line-height: 1;
}

/* Savings Section - Breakdown of all savings */
.calc-savings-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
}

.calc-savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--ring);
}

.calc-savings-row:last-of-type {
    border-bottom: none;
}

.savings-label {
    color: var(--ink-dim);
    font-size: var(--text-sm);
}

.savings-value {
    color: var(--success);
    font-weight: var(--font-bold);
    font-size: var(--text-base);
}

.calc-savings-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-3);
    margin-top: var(--space-2);
    border-top: 2px solid var(--success);
}

.savings-total-label {
    color: var(--success);
    font-weight: var(--font-extrabold);
    font-size: var(--text-base);
    text-transform: uppercase;
}

.savings-total-value {
    color: var(--success);
    font-weight: var(--font-extrabold);
    font-size: var(--text-xl);
}

/* Legacy classes for backwards compatibility */
.calc-price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    text-align: center;
}

.calc-price-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.calc-strikethrough {
    color: var(--ink-dim);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
}

.calc-strikethrough .strike-amount {
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 3px;
    color: var(--ink);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
}

.calc-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.calc-savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Promo Code */
.calc-promo {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.calc-promo-input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 2px solid var(--ring);
    background: var(--bg-card);
    color: var(--ink);
    font-size: var(--text-base);
}

.calc-promo-input:focus {
    outline: none;
    border-color: var(--cta1);
}

.calc-promo-input::placeholder {
    color: var(--ink-muted);
}

.calc-promo-btn {
    padding: var(--space-3) var(--space-4);
    background: var(--bg-card-elevated);
    border: 2px solid var(--ring-gold);
    border-radius: var(--radius-md);
    color: var(--cta1);
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.calc-promo-btn:hover {
    background: var(--cta1);
    color: var(--bg);
}

.promo-message {
    font-size: var(--text-base);
    margin-top: var(--space-3);
    text-align: center;
}

.promo-message.success {
    color: var(--success);
}

.promo-message.error {
    color: var(--urgency);
}

/* ===== BENEFIT CARD ===== */
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--ring);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
}

/* Top-edge warm highlight for depth */
.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--surface-highlight);
    pointer-events: none;
    z-index: 0;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--elevation-gold-1);
    border-color: rgba(212, 175, 55, 0.25);
}

.benefit-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--cta2);
    margin-bottom: var(--space-2);
}

.benefit-card p {
    font-size: var(--text-sm);
    color: var(--ink-dim);
    line-height: var(--leading-relaxed);
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--ring);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: left;
}

.stars {
    color: var(--cta1);
    font-size: var(--text-lg);
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--ink);
    font-style: italic;
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
}

.testimonial-author {
    font-size: var(--text-sm);
    color: var(--ink-dim);
}

.testimonial-author strong {
    color: var(--cta2);
}

.google-reviews-link {
    display: inline-block;
    color: var(--cta2);
    font-weight: var(--font-bold);
    margin-top: var(--space-4);
    transition: var(--transition-fast);
}

.google-reviews-link:hover {
    color: var(--cta1);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--ring);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
    min-width: 120px;
}

.step-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.step-title {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--ink);
    margin-bottom: var(--space-1);
}

.step-time {
    font-size: var(--text-xs);
    color: var(--success);
    font-weight: var(--font-semibold);
}

.process-arrow {
    font-size: var(--text-2xl);
    color: var(--cta1);
}

@media (max-width: 768px) {
    .process-arrow {
        display: none;
    }

    .process-steps {
        flex-direction: column;
    }
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
    width: 100%;
    max-width: 600px;
}

.faq-title {
    color: var(--cta1);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    text-align: center;
}

.faq-item {
    border: 1px solid var(--ring);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    background: var(--bg-card);
    color: var(--ink);
    font-weight: var(--font-semibold);
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--bg-card-elevated);
}

.faq-icon {
    font-size: var(--text-xl);
    color: var(--cta1);
    transition: var(--transition-base);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: var(--space-4);
    padding-top: 0;
    color: var(--ink-dim);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

/* ===== WHAT'S INCLUDED SECTION ===== */
.included-section {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--ring);
}

.included-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--cta1);
    text-align: center;
    margin-bottom: var(--space-5);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (max-width: 480px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(250, 248, 245, 0.7));
    backdrop-filter: blur(8px) saturate(130%);
    -webkit-backdrop-filter: blur(8px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
}

.included-icon {
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.included-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.included-text strong {
    color: var(--ink);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
}

.included-text span {
    color: var(--ink-dim);
    font-size: var(--text-xs);
}

/* ===== GUARANTEES SECTION ===== */
.guarantees-section {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--ring);
}

.guarantees-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--cta1);
    text-align: center;
    margin-bottom: var(--space-5);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (max-width: 480px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(22, 163, 74, 0.03));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    text-align: center;
}

.guarantee-icon {
    font-size: var(--text-2xl);
    display: block;
    margin-bottom: var(--space-2);
}

.guarantee-card strong {
    display: block;
    color: var(--ink);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-1);
}

.guarantee-card p {
    color: var(--ink-dim);
    font-size: var(--text-xs);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* ===== MODALS ===== */
.modal {
    position: fixed;
    inset: 0;
    /* Glassmorphism overlay - frosted glass effect */
    background: radial-gradient(circle at 30% 40%, rgba(184, 148, 31, 0.06), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.04), transparent 50%),
                rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    padding: var(--space-4);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(250, 248, 245, 0.92) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-large {
    max-width: 900px;
}

.modal-close {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--bg-card-elevated);
    color: var(--ink);
    font-size: var(--text-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--urgency);
}

.modal-title {
    color: var(--cta1);
    text-align: center;
    margin-bottom: var(--space-4);
}

/* Exit Popup */
.exit-popup-content {
    text-align: center;
}

.exit-title {
    font-size: var(--text-2xl);
    color: var(--ink);
    margin-bottom: var(--space-2);
}

.exit-subtitle {
    font-size: var(--text-xl);
    font-weight: var(--font-extrabold);
    color: var(--success);
    margin-bottom: var(--space-3);
}

.exit-text {
    color: var(--ink-dim);
    margin-bottom: var(--space-4);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-3);
    text-align: left;
    border-bottom: 1px solid var(--ring);
}

.comparison-table th {
    background: var(--bg-card-elevated);
    color: var(--cta1);
    font-weight: var(--font-bold);
    white-space: nowrap;
}

.comparison-table td {
    color: var(--ink-dim);
}

.comparison-table .bike-name {
    color: var(--cta2);
    font-weight: var(--font-semibold);
}

.comparison-table .price-strike {
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
    color: var(--ink-muted);
    font-size: var(--text-xs);
    display: block;
}

.comparison-table .price-actual {
    color: var(--cta1);
    font-weight: var(--font-bold);
}

/* ===== SOCIAL PROOF NOTIFICATION ===== */
.social-proof {
    position: fixed;
    bottom: calc(var(--mobile-bar-height) + var(--space-4));
    left: var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--ring);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    max-width: 280px;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-popup);
    opacity: 0;
    transform: translateX(-400px);
    transition: var(--transition-base);
}

.social-proof.show {
    opacity: 1;
    transform: translateX(0);
}

.social-proof-close {
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    font-size: var(--text-lg);
    color: var(--ink-muted);
    opacity: 0.6;
}

.social-proof-close:hover {
    opacity: 1;
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--cta-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-extrabold);
    color: var(--bg);
    flex-shrink: 0;
}

.social-proof-name {
    font-weight: var(--font-bold);
    color: var(--cta2);
    font-size: var(--text-sm);
}

.social-proof-action {
    color: var(--ink-dim);
    font-size: var(--text-xs);
    margin-top: var(--space-1);
}

/* ===== MOBILE WHATSAPP BAR ===== */
.mobile-whatsapp-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--mobile-bar-height);
    background: linear-gradient(135deg, #25D366, #128C7E);
    z-index: var(--z-sticky);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-whatsapp-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 100%;
    color: white;
    font-weight: var(--font-extrabold);
    font-size: var(--text-base);
    letter-spacing: var(--tracking-wide);
    animation: pulse-bar 2s ease-in-out infinite;
}

.mobile-whatsapp-bar .whatsapp-icon {
    width: 28px;
    height: 28px;
}

/* ===== CLAUDE CHAT WIDGET ===== */
.claude-chat-widget {
    position: fixed;
    bottom: calc(var(--mobile-bar-height) + var(--space-4));
    right: var(--space-4);
    z-index: var(--z-popup);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide chat button when split screen is open */
.claude-split-screen.open ~ .claude-chat-widget,
body:has(.claude-split-screen.open) .claude-chat-widget {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.claude-chat-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--bg-card);
    border: 2px solid var(--cta1);
    border-radius: var(--radius-full);
    padding: var(--space-3) var(--space-4);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-base);
}

.claude-chat-trigger:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.chat-live-dot {
    width: 10px;
    height: 10px;
    background: var(--cta1);
    border-radius: 50%;
    animation: gold-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px var(--cta1);
}

@keyframes gold-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 6px var(--cta1);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 12px var(--cta1);
    }
}

.chat-label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--cta2);
}

/* Show abbreviated text on mobile */
@media (max-width: 768px) {
    .chat-label {
        font-size: var(--text-xs);
    }
}

.claude-chat-window {
    position: absolute;
    bottom: calc(100% + var(--space-2));
    left: 0;
    width: 320px;
    max-height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--ring);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

/* ===== BIKE DETAIL MODAL ===== */
.bike-detail-modal .modal-content {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.bike-detail-hero {
    position: relative;
    margin: calc(var(--space-6) * -1);
    margin-bottom: var(--space-4);
}

.bike-detail-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 70%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Bike Detail Gallery (scroll-snap horizontal slider) */
.gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}
.gallery-slide img, .gallery-slide video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-prev:hover, .gallery-next:hover { background: rgba(0,0,0,0.8); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s;
}
.gallery-dot.active { background: var(--cta1); }
.gallery-counter {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    z-index: 2;
}

.bike-detail-badge {
    position: absolute;
    bottom: var(--space-3);
    left: var(--space-3);
    background: var(--cta-gradient);
    color: var(--bg);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-extrabold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.bike-detail-header {
    text-align: center;
    margin-bottom: var(--space-4);
}

.bike-detail-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--cta1);
    margin-bottom: var(--space-1);
}

.bike-detail-tagline {
    font-size: var(--text-lg);
    color: var(--ink-dim);
    font-style: italic;
}

.bike-detail-description {
    color: var(--ink);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    text-align: center;
}

.bike-detail-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    margin-bottom: var(--space-6);
}

.highlight-tag {
    background: var(--bg-card-elevated);
    border: 1px solid var(--ring-gold);
    color: var(--cta2);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

.bike-detail-specs {
    background: var(--bg-card-elevated);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
}

.specs-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--cta1);
    margin-bottom: var(--space-3);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.specs-grid {
    display: grid;
    gap: var(--space-2);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--ring);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--ink-dim);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

.spec-value {
    color: var(--ink);
    font-size: var(--text-sm);
    text-align: right;
    max-width: 60%;
}

.bike-detail-perfect {
    text-align: center;
    margin-bottom: var(--space-4);
    padding: var(--space-3);
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid var(--ring-gold);
}

.perfect-label {
    color: var(--ink-dim);
    font-size: var(--text-sm);
    margin-left: var(--space-2);
}

.perfect-value {
    color: var(--cta1);
    font-weight: var(--font-bold);
}

.bike-detail-pricing {
    margin-bottom: var(--space-6);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--cta1);
    margin-bottom: var(--space-3);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-option {
    background: var(--bg-card-elevated);
    border: 1px solid var(--ring);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    text-align: center;
    position: relative;
}

.pricing-option.best {
    border-color: var(--cta1);
    background: rgba(212, 175, 55, 0.1);
}

.pricing-badge {
    position: absolute;
    top: calc(var(--space-2) * -1);
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: var(--bg);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    white-space: nowrap;
}

.pricing-period {
    display: block;
    color: var(--ink-dim);
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
}

.pricing-amount {
    display: block;
    color: var(--cta1);
    font-size: var(--text-lg);
    font-weight: var(--font-extrabold);
}

.pricing-savings {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-top: var(--space-2);
}

.bike-detail-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.bike-detail-actions .btn {
    width: 100%;
}

.bike-detail-actions .btn svg {
    margin-left: var(--space-2);
}

.bike-detail-actions .whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-left: var(--space-2);
}

/* ===== CLAUDE SPLIT-SCREEN CHAT ===== */
.claude-split-screen {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.claude-split-screen.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.claude-split-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.claude-split-panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 480px;
    height: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.claude-split-screen.open .claude-split-panel {
    right: 0;
}

/* Mobile: Account for WhatsApp bar at bottom */
@media (max-width: 768px) {
    .claude-split-panel {
        max-width: 100%;
        height: calc(100vh - var(--mobile-bar-height));
        height: calc(100dvh - var(--mobile-bar-height));
        top: 0;
        bottom: var(--mobile-bar-height);
    }
}

@media (min-width: 768px) {
    .claude-split-panel {
        max-width: 500px;
    }
}

.claude-split-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, var(--bg-card-elevated), var(--bg-card));
    border-bottom: 1px solid var(--ring-gold);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .claude-split-header {
        padding: var(--space-2) var(--space-3);
    }
}

.claude-split-title {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.claude-live-dot {
    width: 12px;
    height: 12px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--success);
}

.claude-title-info h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--cta1);
    margin: 0;
    line-height: 1.2;
}

.claude-subtitle {
    font-size: var(--text-xs);
    color: var(--ink-dim);
}

.claude-split-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-elevated);
    border: 1px solid var(--ring);
    border-radius: var(--radius-full);
    color: var(--ink);
    transition: var(--transition-base);
}

.claude-split-close:hover {
    background: var(--urgency);
    border-color: var(--urgency);
}

.claude-split-messages {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    min-height: 0; /* Important for flex overflow */
}

@media (max-width: 768px) {
    .claude-split-messages {
        padding: var(--space-2);
        gap: var(--space-2);
    }
}

.claude-split-message {
    display: flex;
    gap: var(--space-3);
    max-width: 90%;
}

.claude-split-message.user {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.claude-split-message.assistant {
    align-self: flex-start;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.claude-split-message.assistant .message-avatar {
    background: var(--success);
    color: var(--bg);
}

.claude-split-message.assistant .message-avatar svg {
    width: 20px;
    height: 20px;
}

.claude-split-message.user .message-avatar {
    background: var(--cta1);
    color: var(--bg);
}

.claude-split-message.user .message-avatar svg {
    width: 20px;
    height: 20px;
}

.message-bubble {
    background: var(--bg-card-elevated);
    border: 1px solid var(--ring);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--ink);
}

.claude-split-message.user .message-bubble {
    background: var(--cta1);
    color: var(--bg);
    border-color: var(--cta1);
}

.message-bubble.typing {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: var(--space-3) var(--space-4);
}

.message-bubble.typing .typing-text {
    font-size: var(--text-sm);
    color: var(--ink-muted);
    font-style: italic;
    margin-right: 2px;
    animation: typing-pulse 2s ease-in-out infinite;
}

.message-bubble.typing .typing-dot {
    width: 8px;
    height: 8px;
    background: var(--cta1);
    border-radius: 50%;
    display: inline-block;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.message-bubble.typing .typing-dot:nth-of-type(2) {
    animation-delay: 0.16s;
}

.message-bubble.typing .typing-dot:nth-of-type(3) {
    animation-delay: 0.32s;
}

@keyframes typing-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-8px); opacity: 1; }
}

@keyframes typing-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.claude-split-input-area {
    padding: var(--space-3);
    background: var(--bg-card-elevated);
    border-top: 1px solid var(--ring);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .claude-split-input-area {
        padding: var(--space-2);
    }
}

.claude-split-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.suggestion-btn {
    background: var(--bg-card);
    border: 1px solid var(--ring-gold);
    color: var(--cta2);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
    cursor: pointer;
}

.suggestion-btn:hover {
    background: var(--cta1);
    color: var(--bg);
    border-color: var(--cta1);
}

.claude-split-input-row {
    display: flex;
    gap: var(--space-2);
}

.claude-split-input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--ring);
    border-radius: var(--radius-full);
    color: var(--ink);
    font-size: var(--text-base);
}

.claude-split-input:focus {
    outline: none;
    border-color: var(--cta1);
}

.claude-split-input::placeholder {
    color: var(--ink-muted);
}

.claude-split-send {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cta-gradient);
    border: none;
    border-radius: 50%;
    color: var(--bg);
    cursor: pointer;
    transition: var(--transition-base);
}

.claude-split-send:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* ===== CHAT WHATSAPP BOOKING BUTTON ===== */
.chat-booking-btn-wrapper {
    margin-top: var(--space-2);
}

.chat-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    font-size: var(--text-base);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

.chat-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2be06f, #15a06a);
}

.chat-whatsapp-btn img {
    flex-shrink: 0;
}

/* Make 24/7 Support clickable */
.trust-item-clickable {
    cursor: pointer;
    transition: var(--transition-base);
}

.trust-item-clickable:hover {
    color: var(--cta1);
}

.trust-item-clickable:hover .trust-icon {
    fill: var(--cta1);
}

/* ===== FINAL CTA ===== */
.final-cta {
    margin-top: var(--space-8);
}

/* ===== SECTION BACK BUTTON ===== */
.section-back-btn {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--bg-card-elevated);
    border: 2px solid var(--cta1);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    color: var(--cta1);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: var(--z-dropdown);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-back-btn:hover {
    background: var(--cta1);
    border-color: var(--cta1);
    color: var(--bg);
    transform: translateX(-2px);
}

.section-back-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .section-back-btn {
        top: var(--space-3);
        left: var(--space-3);
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }

    .section-back-btn .back-label {
        display: none;
    }
}

/* ===== FOOTER QUICK LINKS ===== */
.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin: var(--space-4) 0;
}

.footer-quick-links .btn {
    justify-content: center;
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
}

.footer-quick-links .btn-outline {
    border-color: var(--ring);
    color: var(--ink);
}

.footer-quick-links .btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--ink);
    color: var(--ink);
}

@media (min-width: 768px) {
    .footer-quick-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .footer-quick-links .btn {
        flex: 1;
        min-width: 180px;
    }
}

/* ===== LEARN MORE / CONTINUE BUTTON ===== */
.btn-learn-more {
    margin-top: var(--space-4);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    color: var(--ink-muted);
    border-color: var(--ring);
    background: transparent;
    transition: all var(--transition-base);
}

.btn-learn-more:hover {
    color: var(--cta1);
    border-color: var(--cta1);
    background: rgba(212, 175, 55, 0.1);
}

.btn-learn-more .btn-arrow {
    margin-left: var(--space-2);
    transition: transform var(--transition-base);
}

.btn-learn-more:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== GOLD CTA BUTTON ===== */
.btn-gold {
    color: #000 !important;
    background: linear-gradient(135deg, var(--cta1), var(--cta2));
    color: var(--bg-body);
    font-weight: var(--font-bold);
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--cta2), var(--cta1));
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.btn-gold .btn-arrow {
    margin-left: var(--space-2);
}

/* Secondary nav row for continue buttons */
.section-nav-secondary {
    margin-top: var(--space-4);
    display: flex;
    justify-content: center;
    width: 100%;
}

.section-nav-secondary .btn {
    min-width: 280px;
}

@media (max-width: 768px) {
    .section-nav-secondary .btn {
        min-width: 100%;
        max-width: 320px;
    }
}

/* ===== MOBILE DATE PICKER FIX ===== */
@media (max-width: 768px) {
    .calc-date-row {
        gap: var(--space-1);
        width: 100%;
        overflow: hidden;
    }
    
    .calc-date-field {
        flex: 1;
        min-width: 0;
        max-width: 45%;
    }
    
    .calc-date-input {
        padding: var(--space-3);
        padding-right: var(--space-8);
        font-size: var(--text-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .calc-date-arrow {
        flex-shrink: 0;
        width: 20px;
    }
}

/* ===== LOW STOCK WARNING ===== */
.bike-card-stock {
    background: #dc2626;
    color: #fff;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--space-1) var(--space-3);
    border-radius: 50px;
    display: inline-block;
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

/* ===== URGENCY COUNTDOWN BANNER ===== */
.urgency-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: var(--space-4);
    font-weight: var(--font-bold);
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: urgency-pulse 2s ease-in-out infinite;
}

.urgency-banner.expired {
    background: linear-gradient(135deg, var(--cta1), var(--cta2));
    color: #000;
    animation: none;
}

.urgency-timer {
    font-family: var(--font-mono, monospace);
    font-size: var(--text-lg);
    min-width: 50px;
}

.urgency-icon {
    font-size: 1.3em;
}

@keyframes urgency-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .urgency-banner {
        font-size: var(--text-sm);
        padding: var(--space-2) var(--space-3);
    }
}

/* ===== DESKTOP HERO SECTION ADJUSTMENTS ===== */
@media (min-width: 769px) {
    #section-hero .section-content {
        gap: var(--space-2);
    }
    
    #section-hero {
        padding-bottom: var(--space-4);
    }
    
    .video-container {
        max-width: 800px;
    }
    
    .hero-title .kicker {
        font-size: 30px;
    }
    
    .hero-title .headline {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    
    .hero-testimonials {
        max-width: 550px;
    }
}

    
    .hero-testimonial-text {
        font-size: var(--text-sm);
    }
    
    .hero-testimonial-author {
        font-size: var(--text-xs);
    }
    
    .hero-testimonial-stars {
        font-size: var(--text-sm);
    }
}

/* ===== DESKTOP HERO SECTION ADJUSTMENTS ===== */
@media (min-width: 769px) {
    #section-hero .section-content {
        gap: var(--space-2);
    }
    
    #section-hero {
        padding-bottom: var(--space-4);
    }
    
    .video-container {
        max-width: 800px;
    }
    
    .hero-title .kicker {
        font-size: 30px;
    }
    
    .hero-title .headline {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .btn-hero-cta {
        padding: var(--space-4) var(--space-8);
        font-size: var(--text-lg);
    }
    
    .hero-testimonials {
        max-width: 550px;
    }
}

/* ===== DESKTOP - COMPACT HERO TO FIT ABOVE FOLD ===== */
@media (min-width: 769px) {
    /* Hero section must fit in viewport minus WhatsApp bar (44px) */
    #section-hero .section-content {
        max-height: calc(100vh - 60px);
        max-height: calc(100dvh - 60px);
        overflow: visible;
        justify-content: space-evenly;
        padding-bottom: 20px;
    }
    
    /* Video container centers and constrains video */
    .video-container {
        flex: 0 1 auto;
        max-width: min(800px, calc((100vh - 440px) * 16 / 9));
        max-width: min(800px, calc((100dvh - 440px) * 16 / 9));
    }
    
    /* Video shell fills container, maintains 16:9 */
    .video-shell {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    
    /* Reduce gaps to fit CTA */
    .hero-cta-wrapper {
        margin-top: 0;
        flex-shrink: 0;
        padding-bottom: 10px;
    }
    
    .hero-cta-arrow {
        display: none;
    }
    
    .hero-testimonials {
        flex-shrink: 0;
    }
    
    .trust-bar {
        flex-shrink: 0;
    }
    
    /* Compact testimonials */
    .hero-testimonials {
        margin: var(--space-1) auto;
        min-height: 60px;
        max-width: 500px;
    }
    
    .hero-testimonial-text {
        font-size: var(--text-xs);
        line-height: 1.4;
    }
    
    .hero-testimonial-author {
        font-size: 10px;
        margin-top: 2px;
    }
    
    .hero-testimonial-stars {
        font-size: var(--text-xs);
        margin-bottom: 2px;
    }
    
    /* Compact CTA */
    .hero-cta-wrapper {
        margin-top: var(--space-2);
    }
    
    .hero-cta-arrow {
        margin-bottom: var(--space-1);
    }
    
    .hero-cta-arrow svg {
        width: 28px;
        height: 28px;
    }
    
    .btn-hero-cta {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-base);
        min-width: 320px;
    }
    
    .btn-hero-cta .cta-subtext {
        font-size: 11px;
    }
    
    /* Smaller title */
    .hero-title .kicker {
        font-size: 22px;
        margin-bottom: 0;
    }
    
    .hero-title .headline {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
    
    /* Compact trust bar */
    .trust-bar {
        padding: var(--space-2) var(--space-3);
        gap: var(--space-2);
        flex-wrap: wrap;
    }
    
    .trust-item {
        font-size: 11px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* ===== MOBILE PERFORMANCE ===== */
@media (max-width: 768px) {
    .bike-card::after,
    .trust-bar,
    .modal-content {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
}

/* ===== GPU ACCELERATION ===== */
.bike-card,
.benefit-card,
.testimonial-card,
.btn,
.modal-content {
    will-change: transform;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .bike-card,
    .benefit-card,
    .testimonial-card,
    .btn {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
