/**
 * 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 WRAPPER - Maximum Visibility ===== */
.hero-cta-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--space-4);
    width: 100%;
}

/* Bouncing arrow pointing at the button */
.hero-cta-arrow {
    color: #00ff88;
    font-size: 40px;
    margin-bottom: var(--space-2);
    animation: arrow-bounce-down 1s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.8));
}

.hero-cta-arrow svg {
    width: 40px;
    height: 40px;
    transform: rotate(90deg);
}

@keyframes arrow-bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* 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 40px rgba(0, 255, 136, 0.9),
            0 0 80px rgba(0, 255, 136, 0.6),
            0 0 120px rgba(0, 255, 136, 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-transform: uppercase;
    margin-bottom: var(--space-1);
}

.headline {
    color: var(--cta1);
    background: linear-gradient(120deg, var(--cta1) 0%, var(--cta1) 40%, #fff 50%, var(--cta1) 60%, var(--cta1) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    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: 550px;
}

@media (max-width: 768px) {
    .video-container {
        width: 98%;
        max-width: 100%;
        flex: 1 1 auto;
        min-height: 0;
    }
    
    .video-shell {
        width: 100%;
        max-height: calc(100vh - 500px);
        max-height: calc(100dvh - 500px);
    }
    
    /* Mobile hero must fit in viewport */
    #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-cta-arrow {
        display: none;
    }
    
    .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;
    object-position: center 0%; /* Show girl's helmet at top, crop extra space at bottom */
    /* No scale needed for custom thumbnail */
}

.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 2.4s ease-in-out infinite !important;
    animation: play-pulse 2.4s 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 2.4s ease-in-out infinite !important;
    animation: play-pulse 2.4s 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: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    position: relative;
    z-index: 10;
}

.trust-item {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    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);
}

.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);
}

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

/* ===== 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; }

/* Animated gradient border - gold/orange sweep effect */
.bike-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(90deg,
        #8B6914,
        #d4af37,
        #f7931e,
        #d4af37,
        #8B6914);
    background-size: 200% 100%;
    z-index: 0;
    animation: gradient-border-rotate 3s ease-in-out infinite;
}

/* Dark inner background to show border - creates the "border" effect */
.bike-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(30,30,30,0.98), rgba(15,15,15,0.95));
    z-index: 0;
}

/* 3D tilt effect on hover */
.bike-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Glow intensify on hover */
.bike-card:hover::before {
    animation: gradient-border-rotate 1.5s linear infinite;
}

/* 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;
}

/* 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;
    object-position: center 0%; /* Show girl's helmet at top, crop extra space at bottom */
    transition: transform 6s ease-out;
}

/* Ken Burns effect on hover - slow zoom, contained */
.bike-card:hover .bike-card-img {
    /* No scale needed for custom thumbnail */
}

/* Per-bike image positioning (center the bike in crop area) */
.bike-card[data-bike="rebel-chopper"] .bike-card-img { object-position: center center; }
.bike-card[data-bike="rebel-bobber"] .bike-card-img { object-position: center 0%; }
.bike-card[data-bike="ninja-250"] .bike-card-img { object-position: center 38%; }

/* Benelli - zoom in more to fill the space like other bikes */
.bike-card[data-bike="benelli-cruiser"] .bike-card-img {
    object-position: 40% 55%;
    transform: scale(1.3);
}
.bike-card[data-bike="benelli-cruiser"]:hover .bike-card-img {
    transform: scale(1.4);
}

/* Scooters - flip horizontally to face same direction as big bikes */
.bike-card[data-bike="nmax-155"] .bike-card-img {
    object-position: center 70%;
    transform: scaleX(-1);
}
.bike-card[data-bike="nmax-155"]:hover .bike-card-img {
    transform: scaleX(-1) scale(1.08);
}

.bike-card[data-bike="pcx-150"] .bike-card-img {
    object-position: center 0%;
    transform: scaleX(-1);
}
.bike-card[data-bike="pcx-150"]:hover .bike-card-img {
    transform: scaleX(-1) scale(1.08);
}

.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: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ring);
    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 rgba(255, 255, 255, 0.1);
}

.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;
    object-position: center 0%; /* Show girl's helmet at top, crop extra space at bottom */
    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: #ffffff;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color-scheme: dark;
    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 {
    /* Changed to white for better visibility */
    font-size: clamp(36px, 10vw, 48px);
    font-weight: var(--font-extrabold);
    color: var(--ink);
    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 rgba(255, 255, 255, 0.1);
}

.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);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--ring-gold);
}

.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: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--ring);
    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: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    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 {
    /* Glassmorphism card */
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.9) 0%,
        rgba(20, 20, 20, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    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;
    /* Subtle inner glow */
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1);
}

.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, #1a1a1a 0%, #1e2e24 50%, #1a1a1a 100%);
    z-index: var(--z-sticky);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.5);
    border-top: 2px solid #25D366;
}

.mobile-whatsapp-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 100%;
    color: #25D366;
    font-weight: var(--font-extrabold);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
    transition: all 0.3s ease;
}

.mobile-whatsapp-bar:hover {
    background: linear-gradient(135deg, #1e3a2a 0%, #25D366 50%, #1e3a2a 100%);
}

.mobile-whatsapp-bar:hover a {
    color: #ffffff;
    transform: scale(1.05);
}

.mobile-whatsapp-bar .whatsapp-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.5));
}

/* ===== 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, transform 0.3s ease;
}

/* Hide chat widget on hero section to not overlap CTA button */
body:has(#section-hero.active) .claude-chat-widget {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
}

/* Hide chat button when split screen is open */

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 0%; /* Show girl's helmet at top, crop extra space at bottom */
    object-position: center 70%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.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);
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Chat link buttons */
.chat-link-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--cta-gradient);
    color: var(--bg) !important;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
    text-decoration: none !important;
    margin: var(--space-2) 0;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: var(--transition-base);
}

.chat-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.chat-link-btn svg {
    width: 16px;
    height: 16px;
}

/* Booking link button - special styling */
.chat-booking-link {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.chat-booking-link:hover {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* Catalog button in chat */
.chat-catalog-btn {
    display: block;
    width: 100%;
    margin-top: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--cta-gradient);
    color: var(--bg) !important;
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-bold);
    font-size: var(--text-base);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: var(--transition-base);
}

.chat-catalog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.chat-catalog-btn:active {
    transform: translateY(0);
}

/* Retry button in chat */
.chat-retry-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--cta1);
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

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

/* Website link button */
.chat-website-link {
    background: var(--cta-gradient);
}

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

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

.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 {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    -webkit-animation: typing-bounce 1.4s ease-in-out infinite both !important;
    animation: typing-bounce 1.4s ease-in-out infinite both !important;
    position: relative;
    top: 0;
}

/* Approach 1: nth-child (dots are children 2,3,4 after typing-text) */
.message-bubble.typing .typing-dot:nth-child(2) {
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
}
.message-bubble.typing .typing-dot:nth-child(3) {
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
}
.message-bubble.typing .typing-dot:nth-child(4) {
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}

/* Approach 2: nth-of-type for span elements (typing-text is span 1, dots are 2,3,4) */
.message-bubble.typing span.typing-dot:nth-of-type(2) {
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
}
.message-bubble.typing span.typing-dot:nth-of-type(3) {
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
}
.message-bubble.typing span.typing-dot:nth-of-type(4) {
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}

/* Approach 3: Adjacent sibling selectors */
.message-bubble.typing .typing-text + .typing-dot {
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
}
.message-bubble.typing .typing-text + .typing-dot + .typing-dot {
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
}
.message-bubble.typing .typing-text + .typing-dot + .typing-dot + .typing-dot {
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}

/* Approach 4: First/last child variations */
.message-bubble.typing .typing-dot:first-of-type {
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
}
.message-bubble.typing .typing-dot:last-of-type {
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}

/* Approach 5: Direct targeting with combined selectors */
.typing .typing-dot:nth-child(2),
.typing span:nth-child(2).typing-dot {
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
}
.typing .typing-dot:nth-child(3),
.typing span:nth-child(3).typing-dot {
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
}
.typing .typing-dot:nth-child(4),
.typing span:nth-child(4).typing-dot {
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}

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

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

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

/* Claude Chatbot Typing Indicator - iPhone Style */
.claude-typing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    width: fit-content;
    min-height: 24px;
}

.claude-typing span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    -webkit-animation: claudeBounce 1.4s ease-in-out infinite both;
    animation: claudeBounce 1.4s ease-in-out infinite both;
}

.claude-typing span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.claude-typing span:nth-child(2) {
    -webkit-animation-delay: 0.16s;
    animation-delay: 0.16s;
}

.claude-typing span:nth-child(3) {
    -webkit-animation-delay: 0.32s;
    animation-delay: 0.32s;
}

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

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

/* Quick Prompts for Chatbot */
.claude-quick-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(0, 0, 0, 0.15);
}

.claude-quick-btn {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.claude-quick-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #D4AF37;
    transform: translateY(-1px);
}

.claude-quick-btn:active {
    transform: translateY(0);
}

.claude-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.claude-whatsapp-btn:hover {
    background: linear-gradient(135deg, #2be672 0%, #159e8c 100%);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.claude-whatsapp-btn svg {
    width: 14px;
    height: 14px;
}

.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);
}

/* 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-gold);
}

.footer-quick-links .btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--cta1);
}

@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);
    }
    
    .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;
    }
}

/* ===== 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;
}


/* ===== BIKE SELECTOR MODAL ===== */
.bike-selector-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bike-selector-modal.active {
    opacity: 1;
    visibility: visible;
}

.bike-selector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.bike-selector-content {
    position: relative;
    background: var(--bg-dark, #1a1a1a);
    border: 2px solid var(--cta1, #c9a227);
    border-radius: var(--radius-lg, 16px);
    padding: var(--space-5, 24px);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.2s ease;
}

.bike-selector-modal.active .bike-selector-content {
    transform: scale(1);
}

.bike-selector-close {
    position: absolute;
    top: var(--space-3, 12px);
    right: var(--space-3, 12px);
    background: none;
    border: none;
    color: var(--ink-muted, #999);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.bike-selector-close:hover {
    color: var(--cta1, #c9a227);
}

.bike-selector-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl, 20px);
    color: var(--cta1, #c9a227);
    margin: 0 0 var(--space-4, 16px) 0;
    text-align: center;
}

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

.bike-selector-item {
    background: var(--surface, #222);
    border: 2px solid transparent;
    border-radius: var(--radius-md, 8px);
    padding: var(--space-2, 8px);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.bike-selector-item:hover {
    border-color: var(--cta1, #c9a227);
    transform: translateY(-2px);
}

.bike-selector-item.selected {
    border-color: var(--cta1, #c9a227);
    background: rgba(201, 162, 39, 0.1);
}

.bike-selector-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm, 4px);
    margin-bottom: var(--space-2, 8px);
}

.bike-selector-name {
    display: block;
    font-size: var(--text-sm, 14px);
    font-weight: var(--font-semibold, 600);
    color: var(--ink, #fff);
    margin-bottom: var(--space-1, 4px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bike-selector-price {
    display: block;
    font-size: var(--text-xs, 12px);
    color: var(--cta1, #c9a227);
    font-weight: var(--font-medium, 500);
}

/* Responsive - 2 columns on mobile */
@media (max-width: 480px) {
    .bike-selector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bike-selector-content {
        padding: var(--space-4, 16px);
    }

    .bike-selector-item img {
        height: 60px;
    }
}

/* Make calculator bike header look clickable */
.calc-bike-header {
    transition: opacity 0.2s ease;
}

.calc-bike-header:hover {
    opacity: 0.8;
}

.calc-bike-header::after {
    content: '▼';
    font-size: 10px;
    color: var(--cta1, #c9a227);
    margin-left: auto;
    opacity: 0.7;
}


/* ===== BIKE SELECTOR MODAL - PER-BIKE IMAGE POSITIONING ===== */
/* Bobber - show more of the bike (lower = more bottom visible) */
.bike-selector-item[data-bike-id="rebel-bobber"] img {
    object-position: center 90%;
}

/* NMAX - show the scooters, hide the sunset sky at top, flip horizontally */
.bike-selector-item[data-bike-id="nmax-155"] img {
    object-position: center 70%;
    transform: scaleX(-1);
}

/* PCX - flip horizontally to face same direction */
.bike-selector-item[data-bike-id="pcx-150"] img {
    transform: scaleX(-1);
}

/* ===== CALCULATOR THUMBNAIL - PER-BIKE POSITIONING ===== */
/* NMAX in calculator - flip and center on the scooter */
.calc-bike-thumb[alt*="NMAX"],
.calc-bike-thumb[alt*="nmax"] {
    transform: scaleX(-1);
    object-position: center 85%;
}

/* PCX in calculator - flip and center on the scooter */
.calc-bike-thumb[alt*="PCX"],
.calc-bike-thumb[alt*="pcx"] {
    transform: scaleX(-1);
    object-position: center 90%;
}


/* ===== BIKE SELECT PLACEHOLDER (when no bike selected) ===== */
.bike-select-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--space-4, 16px) var(--space-6, 24px);
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 3px solid var(--cta1, #c9a227);
    border-radius: var(--radius-lg, 12px);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.2);
    animation: pulse-border 2s ease-in-out infinite;
}

.bike-select-placeholder:hover {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(201, 162, 39, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.35);
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 162, 39, 0.2); }
    50% { box-shadow: 0 4px 30px rgba(201, 162, 39, 0.4); }
}

.bike-select-placeholder .placeholder-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg, 18px);
    font-weight: var(--font-extrabold, 800);
    color: var(--cta1, #c9a227);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide, 0.05em);
}

@media (max-width: 480px) {
    .bike-select-placeholder .placeholder-text {
        font-size: 18px !important;
    }
}

/* Hide the dropdown arrow when placeholder is shown */
.calc-bike-header:has(.bike-select-placeholder[style*="flex"])::after,
.calc-bike-header:has(.bike-select-placeholder:not([style*="none"]))::after {
    display: none;
}

/* ===== BIKE SELECTOR MODAL IMPROVEMENTS ===== */
/* Full bike name - allow wrap */
.bike-selector-name {
    display: block;
    font-size: var(--text-xs, 11px);
    font-weight: var(--font-semibold, 600);
    color: var(--ink, #fff);
    margin-bottom: var(--space-1, 4px);
    white-space: normal;
    line-height: 1.3;
    min-height: 2.6em;
}

/* Market price strikethrough */
.bike-selector-market {
    display: block;
    font-size: var(--text-xs, 11px);
    color: var(--ink-muted, #666);
    margin-bottom: 2px;
}

.bike-selector-market s {
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
}

/* Your price - make it pop */
.bike-selector-price {
    display: block;
    font-size: var(--text-sm, 13px);
    color: var(--cta1, #c9a227);
    font-weight: var(--font-bold, 700);
}

/* Flip scooters horizontally to face same direction */
.bike-selector-item.scooter img {
    transform: scaleX(-1);
}

/* Increase item height to fit full names */
.bike-selector-item img {
    height: 90px;
}

@media (max-width: 480px) {
    .bike-selector-item img {
        height: 70px;
    }
    
    .bike-selector-name {
        font-size: 10px;
    }
}


/* ===== CHAT HISTORY STYLES ===== */
/* Styles for displaying previous conversation when user returns */

.chat-history-header {
    text-align: center;
    padding: 12px 16px;
    margin: 8px 0 16px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.chat-history-header span {
    font-size: 12px;
    color: var(--cta1, #c9a227);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-history-divider {
    text-align: center;
    padding: 16px 0;
    margin: 16px 0;
    position: relative;
}

.chat-history-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.chat-history-divider span {
    position: relative;
    background: var(--surface-1, #1a1a1a);
    padding: 0 16px;
    font-size: 11px;
    color: var(--ink-muted, #888);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* History messages slightly faded to distinguish from current */
.claude-split-message.history-message .message-bubble {
    opacity: 0.85;
}

