/* ==========================================================================
   Video Background & Parallax Effects
   Menu EXP Enhanced Visual Features
   ========================================================================== */

/* Menu Visual Enhancements */
/* Platform Showcase in Menu Items */
.platform-showcase {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.6));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.platform-icon-small {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: scale(0.8);
    animation: iconFadeIn 0.5s ease-out forwards;
}

.platform-icon-small:nth-child(1) { animation-delay: 0.1s; }
.platform-icon-small:nth-child(2) { animation-delay: 0.2s; }
.platform-icon-small:nth-child(3) { animation-delay: 0.3s; }
.platform-icon-small:nth-child(4) { animation-delay: 0.4s; }

.platform-icon-small:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 15px rgba(37, 99, 235, 0.3));
}

.platform-icon-small .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Reservation Demo */
.reservation-demo {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.05), rgba(14, 165, 233, 0.03));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.mobile-mockup {
    width: 120px;
    height: 200px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.screen-content {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-preview {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    animation: cardHover 3s ease-in-out infinite;
}

.preview-image {
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.preview-info {
    padding: var(--spacing-sm);
    text-align: center;
}

.preview-info h5 {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 4px 0;
}

.preview-info .rating {
    font-size: 8px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.preview-info .book-button {
    background: var(--accent-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
}

.demo-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-style: italic;
}

/* AI Integration */
.ai-integration {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, rgba(26, 54, 93, 0.05), rgba(37, 99, 235, 0.03));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.chatgpt-mini {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.chat-header-mini {
    background: linear-gradient(135deg, #10A37F, #0d8f6a);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.ai-icon-mini {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.chat-header-mini span {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.chat-message-mini {
    padding: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.4;
}

.metrics-mini {
    display: flex;
    gap: var(--spacing-md);
}

.metric-mini {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.metric-number {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 2px;
}

.metric-text {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes iconFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.7) 0%,
        rgba(37, 99, 235, 0.6) 50%,
        rgba(14, 165, 233, 0.7) 100%
    );
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-xl);
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-icon {
    font-size: var(--font-size-lg);
    animation: iconBounce 2s ease-in-out infinite;
}

.badge-text {
    font-weight: 700;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Hero Typography */
.hero .hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-xl);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .hero-title .highlight {
    color: #FFD700;
    position: relative;
    display: inline-block;
}

.hero .hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

.hero .hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Enhanced CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-2xl);
}

.starter-cta {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: var(--primary-color) !important;
    font-weight: 800;
    font-size: var(--font-size-lg);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
    transform: translateY(0);
    transition: all var(--transition-normal);
}

.starter-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Floating EXP Concepts */
.hero-concepts-container {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    z-index: 4;
}

.exp-concepts.parallax-layer {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.exp-item.floating {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    width: 200px;
    opacity: 0;
    transform: translateX(100px);
    animation: floatIn 1s ease-out forwards;
}

.exp-item.floating[data-delay="0"] { animation-delay: 1s; }
.exp-item.floating[data-delay="0.2"] { animation-delay: 1.2s; }
.exp-item.floating[data-delay="0.4"] { animation-delay: 1.4s; }

.exp-item.floating:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(0) scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    color: white;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto var(--spacing-sm);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.parallax-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    min-height: 80vh;
}

.parallax-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.parallax-grid.reverse .parallax-text {
    order: 2;
}

.parallax-grid.reverse .experience-visual {
    order: 1;
}

.parallax-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    color: var(--primary-color);
}

.parallax-description {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Platform Icons Section */
.exposure-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.background-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
                      radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
}

.platform-icons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.platform-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    cursor: pointer;
    opacity: 0;
    animation: iconPop 0.6s ease-out forwards;
}

.platform-icon[data-delay="0"] { animation-delay: 0.2s; }
.platform-icon[data-delay="0.1"] { animation-delay: 0.4s; }
.platform-icon[data-delay="0.2"] { animation-delay: 0.6s; }
.platform-icon[data-delay="0.3"] { animation-delay: 0.8s; }
.platform-icon[data-delay="0.4"] { animation-delay: 1.0s; }
.platform-icon[data-delay="0.5"] { animation-delay: 1.2s; }

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    transition: all var(--transition-normal);
}

.platform-icon:hover .icon-img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(37, 99, 235, 0.3));
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: pulse 3s ease-in-out infinite;
}

.platform-icon:hover .icon-pulse {
    animation-duration: 1s;
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-light) 100%);
}

.dining-scene {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="rgba(37,99,235,0.1)"/><circle cx="80" cy="70" r="3" fill="rgba(14,165,233,0.1)"/><circle cx="50" cy="20" r="1.5" fill="rgba(37,99,235,0.08)"/></svg>'),
                linear-gradient(45deg, rgba(37, 99, 235, 0.02), rgba(14, 165, 233, 0.02));
    background-size: 200px 200px, cover;
}

.experience-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-elements {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
}

.reservation-mobile {
    background: #1a1a1a;
    padding: var(--spacing-sm);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mobile-screen {
    background: white;
    width: 280px;
    height: 500px;
    border-radius: 20px;
    padding: var(--spacing-lg);
    overflow: hidden;
}

.restaurant-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: cardFloat 3s ease-in-out infinite;
}

.card-image {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.card-content {
    padding: var(--spacing-lg);
}

.card-content h4 {
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--primary-color);
}

.rating {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.book-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.book-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.loyalty-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    width: 200px;
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.3);
}

.card-header {
    margin-bottom: var(--spacing-lg);
}

.card-title {
    font-weight: 700;
    font-size: var(--font-size-base);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.progress-fill {
    background: #FFD700;
    height: 100%;
    width: 80%;
    border-radius: 4px;
    animation: progressFill 2s ease-in-out;
}

.progress-text {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* Expertise Section */
.expertise-section {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    color: white;
}

.restaurant-facade {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="60" width="80" height="40" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="40" r="8" fill="rgba(255,255,255,0.03)"/><circle cx="70" cy="40" r="8" fill="rgba(255,255,255,0.03)"/></svg>'),
                radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 300px 300px, cover;
}

.expertise-section .parallax-title,
.expertise-section .parallax-description {
    color: white;
}

.ai-assistant {
    max-width: 400px;
}

.chatgpt-interface {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-header {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: white;
}

.ai-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.chat-messages {
    padding: var(--spacing-lg);
}

.ai-message {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.typing-indicator {
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    gap: var(--spacing-xs);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-map {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.map-pin {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}

.map-pin::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.floating-reviews {
    position: absolute;
    bottom: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite reverse;
}

.review-bubble {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.review-bubble .stars {
    display: block;
    margin-bottom: var(--spacing-xs);
}

.review-bubble p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
}

.metrics-floating {
    position: absolute;
    top: 30%;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    z-index: 4;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: metricPop 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.metric-card:nth-child(1) { animation-delay: 0.2s; }
.metric-card:nth-child(2) { animation-delay: 0.4s; }
.metric-card:nth-child(3) { animation-delay: 0.6s; }

.metric-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: #FFD700;
    margin-bottom: var(--spacing-xs);
}

.metric-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes underlineGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

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

@keyframes progressFill {
    from { width: 0%; }
    to { width: 80%; }
}

@keyframes typing {
    0%, 60%, 100% { transform: scale(1); opacity: 0.5; }
    30% { transform: scale(1.2); opacity: 1; }
}

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

@keyframes metricPop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-concepts-container {
        display: none;
    }
    
    .parallax-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .parallax-grid.reverse .parallax-text {
        order: 1;
    }
    
    .parallax-grid.reverse .experience-visual {
        order: 2;
    }
    
    .platform-icons-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-floating {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: var(--spacing-2xl);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .parallax-title {
        font-size: var(--font-size-2xl);
    }
    
    .parallax-description {
        font-size: var(--font-size-base);
    }
    
    .platform-icons-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .mobile-screen {
        width: 240px;
        height: 400px;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .platform-icons-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .metrics-floating {
        flex-direction: column;
    }
}
