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

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #1A1A1A;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #FF4D2E, #FF2E2E) 1;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo h2 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #FF4D2E, #FF2E2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    height: 38px; /* Increased by 20% from 32px */
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-text {
    height: 29px; /* Increased by 20% from 24px */
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-divider {
    font-size: 20px;
    font-weight: 300;
    color: #999999;
    margin: 0 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(90deg, #FF4D2E, #FF2E2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #FF4D2E, #FF2E2E);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.language-toggle {
    margin-left: 20px;
}

.lang-btn {
    background: rgba(255, 77, 46, 0.1);
    border: 1px solid rgba(255, 77, 46, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    background: rgba(255, 77, 46, 0.2);
    border-color: #FF4D2E;
}

.lang-divider {
    margin: 0 5px;
    opacity: 0.5;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1A1A1A;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Account for navbar height */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgba(255, 243, 232, 0.3) 50%, rgba(255, 255, 255, 1) 100%);
}

.stadium-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(255, 255, 255) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgb(255, 255, 255) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 77, 46, 0.1) 0%, transparent 50%);
    animation: stadiumLights 4s ease-in-out infinite alternate;
}

@keyframes stadiumLights {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.floating-phones {
    position: absolute;
    width: 100%;
    height: 100%;
}

.phone {
    position: absolute;
    width: 60px;
    height: 120px;
    background: linear-gradient(145deg, rgba(255, 77, 46, 0.1), rgba(255, 77, 46, 0.05));
    border: 1px solid rgba(255, 77, 46, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: floatPhone 6s ease-in-out infinite;
}

.phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    background: linear-gradient(45deg, #FF4D2E, #FF2E2E);
    border-radius: 5px;
    opacity: 0.8;
    animation: phoneGlow 2s ease-in-out infinite alternate;
}

.phone-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.phone-2 {
    top: 75%;
    right: 12%;
    animation-delay: 2s;
}

.phone-3 {
    top: 20%;
    right: 8%;
    animation-delay: 4s;
}

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

@keyframes phoneGlow {
    0% { opacity: 0.5; box-shadow: 0 0 20px rgba(255, 77, 46, 0.5); }
    100% { opacity: 1; box-shadow: 0 0 40px rgba(255, 77, 46, 0.8); }
}

.sound-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    animation: soundWave 3s ease-out infinite;
}

.wave-1 {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    animation-delay: 0s;
}

.wave-2 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation-delay: 1s;
}

.wave-3 {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation-delay: 2s;
}

@keyframes soundWave {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1000px;
    padding: 40px 20px;
    position: relative;
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1A1A1A, #FF4D2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

/* @keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 77, 46, 0.3); }
    100% { text-shadow: 0 0 40px rgba(255, 77, 46, 0.5); }
} */

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: #FF4D2E;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    color: #555555;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(90deg, #FF4D2E, #FF2E2E);
    color: #FFFFFF;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 77, 46, 0.4);
    background: linear-gradient(90deg, #FF2E2E, #FF4D2E);
}

.cta-secondary {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid rgba(255, 77, 46, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 77, 46, 0.1);
    border-color: #FF4D2E;
    transform: translateY(-3px);
}

.cta-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.app-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 77, 46, 0.1);
    border: 1px solid rgba(255, 77, 46, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1A1A1A;
}

.badge:hover {
    background: rgba(255, 77, 46, 0.2);
    transform: translateY(-2px);
}

.badge i {
    font-size: 24px;
}

/* Phone Video Player with Background */
.phone-background-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.phone-video-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: phoneFloat 4s ease-in-out infinite;
    margin-bottom: -280px; /* Half of the phone overlaps the background */
}

.fan-background {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.fan-background-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    z-index: 10;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 480px;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    margin-top: 25px;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 46, 0.1), rgba(255, 46, 46, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(255, 77, 46, 0.3);
}

.phone-home-button {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    border: 2px solid #444;
}

/* Partners Section */
.partners-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 77, 46, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 77, 46, 0.15);
    border-color: rgba(255, 77, 46, 0.2);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.partner-card.existing .partner-logo {
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    box-shadow: 0 8px 24px rgba(255, 77, 46, 0.25);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 32px;
}

.partner-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.partner-card p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Loading Partners */
.partner-card.loading {
    background: rgba(248, 248, 248, 0.9);
    border: 1px solid rgba(200, 200, 200, 0.2);
}

.partner-card.loading:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(200, 200, 200, 0.2);
}

.loading-logo {
    background: rgba(200, 200, 200, 0.3);
    border: 2px dashed rgba(200, 200, 200, 0.5);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.partner-loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    object-fit: contain;
    opacity: 0.3;
    z-index: 1;
    border-radius: 8px;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(200, 200, 200, 0.3);
    border-top: 3px solid #FF4D2E;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    position: relative;
    z-index: 2;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-bottom: 12px;
}

.loading-bar {
    height: 12px;
    background: rgba(200, 200, 200, 0.3);
    border-radius: 6px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 46, 0.4), transparent);
    animation: loading-shimmer 2s ease-in-out infinite;
}

.loading-bar.short {
    width: 60%;
    margin: 0 auto;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.loading-label {
    font-size: 12px;
    color: #999999;
    font-style: italic;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Partners CTA */
.partners-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 243, 232, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 77, 46, 0.1);
}

.partners-cta p {
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 24px;
    font-weight: 500;
}

.partners-cta .cta-secondary {
    padding: 12px 32px;
    font-size: 16px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1A1A1A, #FF4D2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
    background: #F9F9F9;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 77, 46, 0.05) 0%, transparent 70%);
}

/* Features Carousel */
.features-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0 60px;
}

.features-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    height: 320px;
}

.feature-card {
    min-width: 100%;
    transform: translateX(0);
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 77, 46, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 77, 46, 0.3);
}

.carousel-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 77, 46, 0.4);
}

.carousel-arrow:active {
    transform: translateY(0);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 77, 46, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: #FF4D2E;
    transform: scale(1.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 46, 0.1), rgba(255, 46, 46, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 77, 46, 0.2);
    box-shadow: 0 12px 32px rgba(255, 77, 46, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(255, 77, 46, 0.25);
}

.feature-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    color: #1A1A1A !important;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.feature-card p {
    color: #666666;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    font-size: 14px;
}

/* Demo Section */
.demo-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 243, 232, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Frameless Video Player */
.frameless-video-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.frameless-video {
    width: 100%;
    height: auto;
    min-height: 450px;
    background: #000;
    border: none;
    outline: none;
}

.frameless-video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

.frameless-video::-webkit-media-controls-play-button,
.frameless-video::-webkit-media-controls-volume-slider,
.frameless-video::-webkit-media-controls-timeline,
.frameless-video::-webkit-media-controls-current-time-display,
.frameless-video::-webkit-media-controls-time-remaining-display {
    filter: brightness(0) invert(1);
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 46, 0.1), rgba(255, 46, 46, 0.1));
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-fallback:hover {
    background: linear-gradient(135deg, rgba(255, 77, 46, 0.2), rgba(255, 46, 46, 0.2));
}

.fallback-content {
    text-align: center;
    color: #FF4D2E;
}

.fallback-content i {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
}

.fallback-content p {
    font-size: 16px;
    margin: 0;
    color: #666666;
}

.demo-content {
    text-align: center;
    margin-bottom: 40px;
}

.demo-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1A1A1A, #FF4D2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: #FFFFFF;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.step {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255, 77, 46, 0.3), rgba(255, 46, 46, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.step-content {
    flex: 1;
    max-width: 500px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.step-icon i {
    font-size: 40px;
    color: #FFFFFF;
}

.step h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.step p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 243, 232, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1A1A1A, #FF4D2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 50px;
    color: #555555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #F4F4F4;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 77, 46, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 77, 46, 0.3);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FF4D2E;
}

.contact-details p {
    color: #333333;
    font-size: 1.1rem;
}

.contact-map {
    height: 400px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 77, 46, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(255, 77, 46, 0.1), rgba(255, 46, 46, 0.1));
}

.map-placeholder i {
    font-size: 4rem;
    color: #FF4D2E;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #555555;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    font-size: 1rem;
    color: #999999;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-links-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF4D2E;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #999999;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #999999;
}

/* Persistent Download Section - Popup Style */
.persistent-download {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    color: #FFFFFF;
    z-index: 999;
    border-radius: 16px;
    transform: translateY(0) scale(1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    box-sizing: border-box;
}

.persistent-download.hidden {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.download-content {
    padding: 20px;
    position: relative;
}

.download-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    z-index: 10;
}

.download-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.download-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-right: 40px; /* Space for close button */
}

.download-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.download-text h4 {
    margin: 0 0 2px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.download-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.2;
}

.download-buttons {
    display: flex;
    gap: 8px;
    width: 100%;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1;
    justify-content: center;
    min-height: 44px;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.download-btn i {
    font-size: 18px;
    flex-shrink: 0;
}

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

.btn-text .small {
    font-size: 9px;
    opacity: 0.8;
}

.btn-text .large {
    font-size: 12px;
    font-weight: 600;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 420px; /* Position to left of popup */
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    color: #FFFFFF;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(255, 77, 46, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.floating-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 77, 46, 0.4);
}

.floating-contact i {
    font-size: 18px;
}

.floating-contact span {
    font-size: 14px;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Logo Mobile */
    .logo-icon {
        height: 34px; /* Increased by 20% from 28px */
    }
    
    .logo-text {
        height: 24px; /* Increased by 20% from 20px */
    }
    
    .logo-divider {
        font-size: 18px;
    }
    
    /* Phone with Background Mobile */
    .phone-video-container {
        margin-bottom: -200px; /* Adjust overlap for mobile */
    }
    
    .fan-background {
        max-width: 100%;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: 100px;
        min-height: calc(100vh - 20px);
    }
    
    .hero-content {
        padding: 30px 15px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .app-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
    
    /* Hide phones on mobile for cleaner look */
    .floating-phones {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .step-number {
        font-size: 4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .video-placeholder {
        width: 90%;
        height: 250px;
    }

    .demo-content {
        bottom: 50px;
        padding: 0 20px;
    }

    .demo-content h2 {
        font-size: 2rem;
    }

    .demo-content p {
        font-size: 1rem;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
        padding: 15px;
    }
    
    .phone-screen {
        height: 380px;
        margin-top: 20px;
    }
}

/* Privacy Policy and Terms of Service Pages */
.privacy-header {
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
    padding: 120px 0 60px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/pattern-overlay.png');
    opacity: 0.1;
    z-index: 1;
}

.privacy-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.privacy-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.privacy-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 77, 46, 0.2);
    padding-bottom: 10px;
}

.privacy-card h2:first-child {
    margin-top: 0;
}

.privacy-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 15px;
}

.privacy-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-card li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 10px;
    position: relative;
}

.privacy-card li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4D2E, #FF2E2E);
}

.privacy-card strong {
    font-weight: 600;
    color: #1A1A1A;
}

/* Responsive styles for privacy pages */
@media (max-width: 768px) {
    .privacy-header {
        padding: 100px 0 40px;
    }
    
    .privacy-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .privacy-header {
        padding: 90px 0 30px;
    }
    
    .privacy-card {
        padding: 25px 15px;
    }
    
    .privacy-card h2 {
        font-size: 1.5rem;
    }
    
    /* Smaller logo for mobile */
    .logo-icon {
        height: 29px; /* Increased by 20% from 24px */
    }
    
    .logo-text {
        height: 22px; /* Increased by 20% from 18px */
    }
    
    .logo-divider {
        font-size: 16px;
        margin: 0 1px;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    /* Phone with Background Small Mobile */
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    
    .phone-screen {
        height: 380px;
    }
    
    .phone-video-container {
        margin-bottom: -160px; /* Smaller overlap for small screens */
    }
    
    .floating-contact span {
        display: none;
    }

    .floating-contact {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .phone-frame {
        width: 180px;
        height: 360px;
        padding: 12px;
    }
    
    .phone-screen {
        height: 300px;
        margin-top: 15px;
    }
    
    .phone-video-container {
        margin-top: 40px;
    }
    
    .frameless-video-container {
        max-width: 90%;
        margin: 30px auto 0;
    }
    
    .frameless-video {
        min-height: 250px;
    }
    
    /* Partners Section Mobile */
    .partners-section {
        padding: 80px 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .partner-card {
        padding: 24px 20px;
    }
    
    .partner-logo {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .logo-placeholder {
        font-size: 24px;
    }
    
    .partner-card h4 {
        font-size: 18px;
    }
    
    .partners-cta {
        padding: 32px 20px;
    }
    
    .partners-cta p {
        font-size: 16px;
    }
    
    /* Persistent Download Mobile */
    .persistent-download {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
    
    .download-content {
        padding: 16px;
    }
    
    .download-info {
        margin-bottom: 12px;
        padding-right: 35px;
    }
    
    .download-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .download-text h4 {
        font-size: 14px;
    }
    
    .download-text p {
        font-size: 11px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 6px;
    }
    
    .download-btn {
        padding: 8px 12px;
        min-height: 40px;
    }
    
    .download-btn i {
        font-size: 16px;
    }
    
    .btn-text .small {
        font-size: 8px;
    }
    
    .btn-text .large {
        font-size: 11px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .floating-contact span {
        display: none;
    }
}

/* AOS Animation Styles */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}
