/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF8C42;
    --primary-dark: #E57733;
    --primary-light: #FFB17A;
    --secondary-color: #FFF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff9d4d 0%, #ff7b2d 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Language Switcher in Header */
.header .language-switcher {
    display: flex;
    gap: 10px;
}

.header .language-switcher button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header .language-switcher button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.header .language-switcher button.active {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Language Toggle - Hidden (using header language switcher instead) */
.lang-toggle {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff9d4d 0%, #ff7b2d 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: visible;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image,
.banner-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    object-fit: cover;
}

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

/* Partners Section */
.partners {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.partners-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff9d4d 0%, #ff7b2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 20px;
    animation: scroll 200s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 20px;
}

.partner-logo:hover {
    transform: scale(1.05);
    z-index: 10;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.how-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: -40px auto 60px;
}

/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: white;
    padding: 40px 40px 30px;
    text-align: left;
}

.slide-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.slide-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: white;
}

.download-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #FF8C42 0%, #FFB17A 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.3);
}

.download-text {
    color: white;
}

.download-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.download-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 280px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.store-badge:hover {
    background: white;
    color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-label {
    display: none;
}

.store-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.download-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.download-img:hover {
    transform: scale(1.05);
}

/* Apply Section */
.apply {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.apply-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: -20px;
    margin-bottom: 50px;
}

.apply-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.apply-tab {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-tab:hover {
    border-color: #FF8C42;
    color: #FF8C42;
    transform: translateY(-2px);
}

.apply-tab.active {
    background: linear-gradient(135deg, #FF8C42 0%, #FFB17A 100%);
    border-color: #FF8C42;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.apply-forms {
    max-width: 700px;
    margin: 0 auto;
}

.apply-form-container {
    display: none;
    animation: fadeIn 0.5s ease;
}

.apply-form-container.active {
    display: block;
}

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

.apply-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #FF8C42;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FF8C42 0%, #FFB17A 100%);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer-container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.footer-copyright {
    color: white;
    font-size: 0.95rem;
    opacity: 0.95;
    margin-top: 10px;
}

.footer-copyright span {
    display: inline;
}

/* City Scene Animation */
.city-scene {
    width: 100%;
    max-width: 100%;
    height: 150px;
    position: relative;
    margin: 20px 0;
}

/* Road */
.road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: rgba(44, 62, 80, 0.6);
    border-radius: 5px;
    overflow: hidden;
}

.road-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 20px,
        rgba(255, 255, 255, 0.5) 20px,
        rgba(255, 255, 255, 0.5) 40px
    );
    animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40px); }
}

/* Buildings/Cafes */
.buildings {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.building {
    width: 60px;
    height: 50px;
    background: linear-gradient(135deg, #FF8C42 0%, #E57733 100%);
    border-radius: 5px 5px 0 0;
    position: relative;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.building::before {
    content: '🏪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    opacity: 0.3;
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: white;
    color: #FF8C42;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: tooltipPulse 3s ease-in-out infinite;
    z-index: 10;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
}

@keyframes tooltipPulse {
    0%, 100% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }
    10%, 90% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

.cafe-1 .tooltip {
    animation-delay: 0s;
}

.cafe-2 .tooltip {
    animation-delay: 1s;
}

.cafe-3 .tooltip {
    animation-delay: 2s;
}

/* Message Bubble Styles */
.message-bubble {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FF8C42;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.message-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.message-icon {
    font-size: 16px;
    animation: iconBounce 1s ease-in-out infinite;
}

.message-text {
    font-size: 11px;
    font-weight: 700;
    color: #FF8C42;
    white-space: nowrap;
}

@keyframes messageSlide {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        transform: translateX(50%);
        opacity: 1;
    }
    90% {
        transform: translateX(50%);
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.cafe-1 .message-bubble {
    animation-delay: 0s;
}

.cafe-2 .message-bubble {
    animation-delay: 1.3s;
}

.cafe-3 .message-bubble {
    animation-delay: 2.6s;
}

/* Scooter Message Bubbles */
.scooter-message {
    top: -60px;
    animation: scooterMessageSlide 5s ease-in-out infinite;
}

/* Cafe messages stay fixed (no animation) */
.building .message-bubble {
    animation: none;
}

@keyframes scooterMessageSlide {
    0% {
        transform: translateX(-200%);
        opacity: 0;
    }
    15% {
        transform: translateX(-50%);
        opacity: 1;
    }
    85% {
        transform: translateX(-50%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.scooter-1 .scooter-message {
    animation-delay: 0.8s;
}

.scooter-2 .scooter-message {
    animation-delay: 2s;
}

.scooter-3 .scooter-message {
    animation-delay: 3.2s;
}

.building-windows {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.3) 0px,
        rgba(255, 255, 255, 0.3) 8px,
        transparent 8px,
        transparent 12px
    );
}

.cafe-sign {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    animation: bobbing 2s ease-in-out infinite;
}

.store-name {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cafe-2 .cafe-sign {
    animation-delay: 0.7s;
}

.cafe-3 .cafe-sign {
    animation-delay: 1.4s;
}

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

/* Scooters */
.scooter {
    position: absolute;
    bottom: 25px;
    width: 120px;
    height: 70px;
}

.scooter svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
}

/* Scooter 1 - Left to Right */
.scooter-1 {
    animation: moveRight 8s linear infinite;
}

@keyframes moveRight {
    0% { left: -80px; }
    100% { left: calc(100% + 80px); }
}

/* Scooter 2 - Left to Right */
.scooter-2 {
    animation: moveRight2 10s linear infinite;
    animation-delay: 5s;
}

@keyframes moveRight2 {
    0% { left: -80px; }
    100% { left: calc(100% + 80px); }
}

/* Scooter 3 - Left to Right (Delayed) */
.scooter-3 {
    animation: moveRight 8s linear infinite;
    animation-delay: 4s;
    opacity: 0;
}

@keyframes moveRight {
    0% { 
        left: -80px;
        opacity: 1;
    }
    100% { 
        left: calc(100% + 80px);
        opacity: 1;
    }
}


/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partners-title {
        font-size: 1.5rem;
    }

    .partner-logo {
        width: 180px;
        height: 180px;
        padding: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .slide-image {
        height: 400px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .download-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
    }

    .download-title {
        font-size: 2.2rem;
    }

    .app-badges {
        margin: 0 auto;
        max-width: 250px;
    }

    .store-badge {
        padding: 10px 16px;
    }

    .store-icon {
        width: 28px;
        height: 28px;
    }

    .store-label {
        font-size: 0.65rem;
    }

    .store-name {
        font-size: 1rem;
    }

    .footer-logo {
        height: 70px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features,
    .how-it-works,
    .download,
    .apply {
        padding: 60px 0;
    }

    .apply-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .apply-tab {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .apply-form {
        padding: 25px 20px;
    }

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

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .banner-image,
    .banner-video {
        max-width: 300px;
    }

    .slide-image {
        height: 350px;
    }

    .slide-info {
        padding: 30px 20px 20px;
    }

    .slide-number {
        font-size: 2rem;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .download-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .download-title {
        font-size: 1.8rem;
    }

    .download-description {
        font-size: 1rem;
    }

    .app-badges {
        max-width: 220px;
        gap: 10px;
    }

    .store-badge {
        padding: 8px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .store-icon {
        width: 22px;
        height: 22px;
    }

    .store-label {
        font-size: 0.6rem;
    }

    .store-name {
        font-size: 0.8rem;
    }

    .app-badges {
        gap: 10px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-brand-name {
        font-size: 1.8rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .city-scene {
        height: 180px;
        max-width: 100%;
        padding-top: 20px;
    }

    .buildings {
        top: 0;
        height: 50px;
    }

    .building {
        width: 45px;
        height: 40px;
    }

    .cafe-sign {
        font-size: 18px;
        top: -20px;
    }

    .message-bubble {
        top: -55px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .scooter {
        width: 90px;
        height: 55px;
        bottom: 35px;
    }

    .scooter-message {
        top: -50px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .road {
        height: 20px;
    }
}
