/* ============================================
   BLITZERBOT WEBSITE STYLES
   Brand Colors:
   - Primary Blue: #1E3A8A
   - Primary Orange: #FF8A00
   - Dark Background: #0F172A
   - Secondary Dark: #020617
   - Primary Text: #FFFFFF
   - Secondary Text: #E5E7EB
   ============================================ */

:root {
    --primary-blue: #1E3A8A;
    --primary-orange: #FF8A00;
    --dark-bg: #0F172A;
    --secondary-dark: #020617;
    --primary-text: #FFFFFF;
    --secondary-text: #E5E7EB;
    --disabled-text: #9CA3AF;
    --amber: #FFB020;
    --soft-red: #E5533D;
    
    --gradient-start: #0A0E27;
    --gradient-mid: #1A1F3A;
    --gradient-end: #2A1F3A;
    
    --container-width: 1200px;
    --section-padding: 100px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on all elements */
*,
*::before,
*::after {
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling for all browsers */
* {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-text);
    text-decoration: none;
    min-width: 60px;
    min-height: 60px;
}

.logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.logo-img[src=""],
.logo-img:not([src]) {
    display: none;
}

.logo-text {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a {
    color: var(--secondary-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-text);
}

.btn-primary-small {
    background: var(--primary-orange);
    color: var(--primary-text);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-small:hover {
    background: #FF9A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    position: relative;
}

.mobile-menu-toggle.active span {
    background: var(--primary-text);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    top: 0;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    top: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(2px 2px at 10% 90%, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.6;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 138, 0, 0.1);
    border: 1px solid rgba(255, 138, 0, 0.3);
    border-radius: 20px;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--secondary-text);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
    align-items: center;
}

.app-store-badge,
.play-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    line-height: 0;
    width: 200px;
    height: 60px;
    min-width: 200px;
    min-height: 60px;
    max-width: 200px;
    max-height: 60px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.app-store-badge:hover,
.play-store-badge:hover {
    transform: translateY(-3px) scale(1.05);
    opacity: 0.9;
}

.store-badge {
    height: 60px !important;
    width: 200px !important;
    min-height: 60px !important;
    min-width: 200px !important;
    max-height: 60px !important;
    max-width: 200px !important;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
    display: block;
    flex-shrink: 0;
}

.app-store-badge .store-badge {
    height: 60px !important;
    width: 200px !important;
    min-height: 60px !important;
    min-width: 200px !important;
    max-height: 60px !important;
    max-width: 200px !important;
    object-fit: contain;
    object-position: center;
}

.play-store-badge .store-badge {
    height: 60px !important;
    width: 200px !important;
    min-height: 60px !important;
    min-width: 200px !important;
    max-height: 60px !important;
    max-width: 200px !important;
    object-fit: contain;
    object-position: center;
}

.store-badge:hover {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .store-badge {
        height: 50px;
        width: 167px;
        max-height: 50px;
        max-width: 167px;
    }
    
    .app-store-badge,
    .play-store-badge {
        width: 167px;
        height: 50px;
    }
    
    .app-store-badge .store-badge,
    .play-store-badge .store-badge {
        height: 50px;
        width: 167px;
        max-height: 50px;
        max-width: 167px;
    }
    
    .download-buttons .store-badge {
        height: 60px;
        width: 200px;
        max-height: 60px;
        max-width: 200px;
    }
    
    .download-buttons .app-store-badge,
    .download-buttons .play-store-badge {
        width: 200px;
        height: 60px;
    }
    
    .download-buttons .app-store-badge .store-badge,
    .download-buttons .play-store-badge .store-badge {
        height: 60px;
        width: 200px;
        max-height: 60px;
        max-width: 200px;
    }
}

.hero-image {
    animation: fadeInUp 0.8s ease 1s both;
}

.phone-mockup {
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.2) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.mockup-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.mockup-img:hover {
    transform: scale(1.02);
}

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

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
    text-align: center;
}

.problem-text {
    font-size: 20px;
    color: var(--secondary-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--secondary-dark);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 138, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 138, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h2,
.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-text);
}

.feature-card p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* ============================================
   APP FEATURES SHOWCASE
   ============================================ */

.app-features {
    padding: var(--section-padding);
    background: var(--secondary-dark);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-showcase-item.reverse {
    direction: rtl;
}

.feature-showcase-item.reverse > * {
    direction: ltr;
}

.feature-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-badge {
    display: none;
}

.feature-showcase-content h2,
.feature-showcase-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-text);
    line-height: 1.2;
}

.feature-showcase-content p {
    font-size: 18px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.feature-showcase-image {
    position: relative;
}

.feature-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-showcase-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 138, 0, 0.2);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: var(--secondary-dark);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 138, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.1);
}

.review-stars {
    color: var(--primary-orange);
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-name {
    font-weight: 600;
    color: var(--primary-text);
    font-size: 15px;
}

.review-author-badge {
    font-size: 12px;
    color: var(--secondary-text);
    opacity: 0.7;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
    text-align: center;
}

.benefits-subtitle {
    font-size: 20px;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 20px auto 50px;
    line-height: 1.7;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(255, 138, 0, 0.3);
    transform: translateX(5px);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--primary-text);
    font-weight: 500;
    font-size: 16px;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    text-align: center;
}

.download-subtitle {
    font-size: 18px;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 20px auto 50px;
    line-height: 1.7;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.download-buttons .app-store-badge,
.download-buttons .play-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    line-height: 0;
    width: 220px;
    height: 70px;
    min-width: 220px;
    min-height: 70px;
    max-width: 220px;
    max-height: 70px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.download-buttons .app-store-badge:hover,
.download-buttons .play-store-badge:hover {
    transform: translateY(-3px) scale(1.05);
    opacity: 0.9;
}

.download-buttons .store-badge {
    height: 70px !important;
    width: 220px !important;
    min-height: 70px !important;
    min-width: 220px !important;
    max-height: 70px !important;
    max-width: 220px !important;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
    display: block;
    flex-shrink: 0;
}

.download-buttons .app-store-badge .store-badge {
    height: 70px !important;
    width: 220px !important;
    min-height: 70px !important;
    min-width: 220px !important;
    max-height: 70px !important;
    max-width: 220px !important;
    object-fit: contain;
    object-position: center;
}

.download-buttons .play-store-badge .store-badge {
    height: 70px !important;
    width: 220px !important;
    min-height: 70px !important;
    min-width: 220px !important;
    max-height: 70px !important;
    max-width: 220px !important;
    object-fit: contain;
    object-position: center;
}

.download-buttons .store-badge:hover {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .download-buttons .store-badge {
        height: 60px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--section-padding);
    background: var(--secondary-dark);
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 138, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--primary-text);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--secondary-text);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 80px 20px 40px;
    background: var(--secondary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
}

.footer-tagline {
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--primary-text);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--secondary-text);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        padding-left: 10px;
        color: var(--primary-orange);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
        margin-top: 10px;
        padding: 16px;
        text-align: center;
        background: var(--primary-orange);
        border-radius: 8px;
    }
    
    .nav-links a:last-child:hover {
        padding-left: 16px;
        background: var(--amber);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile menu toggle animation is now in main styles */
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-showcase-item.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-section {
    padding: 160px 20px 100px;
    min-height: 100vh;
    background: var(--dark-bg);
    margin-top: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}

.legal-content h1 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--primary-text);
    margin-bottom: 32px;
    margin-top: 0;
    line-height: 1.2;
    padding-top: 0;
}

.legal-intro {
    font-size: 18px;
    color: var(--secondary-text);
    line-height: 1.8;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--primary-text);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    padding-top: 8px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--primary-text);
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.legal-content p {
    font-size: 16px;
    color: var(--secondary-text);
    line-height: 1.8;
    margin-bottom: 20px;
    margin-top: 0;
}

.legal-content p + p {
    margin-top: 16px;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
    margin-top: 0;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--secondary-text);
    line-height: 1.8;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.legal-content ul li:last-child {
    margin-bottom: 0;
}

.legal-content ul li::before {
    content: "•";
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 8px;
    top: -2px;
}

.legal-content a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--amber);
    text-decoration: underline;
}

.legal-date {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
    color: var(--disabled-text);
    font-size: 14px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-section {
    padding: 160px 20px 100px;
    min-height: 100vh;
    background: var(--dark-bg);
    margin-top: 0;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

.contact-content h1 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--primary-text);
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
    padding-top: 0;
}

.contact-intro {
    font-size: 18px;
    color: var(--secondary-text);
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-section,
    .contact-section {
        padding: 140px 20px 80px;
    }
    
    .legal-content,
    .contact-content {
        padding-top: 10px;
    }
    
    .legal-content h1,
    .contact-content h1 {
        margin-bottom: 24px;
    }
    
    .legal-intro,
    .contact-intro {
        font-size: 16px;
        margin-bottom: 32px;
        line-height: 1.7;
    }
    
    .legal-content h2 {
        margin-top: 40px;
        font-size: 24px;
    }
    
    .legal-content h3 {
        margin-top: 28px;
        font-size: 20px;
    }
    
    .legal-content p,
    .legal-content ul li {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .legal-content ul {
        margin-bottom: 28px;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    width: 100%;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.6;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 16px 18px;
    background: var(--secondary-dark);
    border: 1.5px solid rgba(229, 231, 235, 0.15);
    border-radius: 12px;
    color: var(--primary-text);
    font-size: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box;
}

.form-input:hover {
    border-color: rgba(255, 138, 0, 0.3);
}

.form-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.15);
    background: rgba(30, 58, 138, 0.1);
}

.form-input::placeholder {
    color: var(--disabled-text);
    opacity: 0.7;
}

.form-input.error {
    border-color: var(--soft-red);
    border-width: 2px;
    background: rgba(229, 83, 61, 0.05);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23E5E7EB' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.error-message {
    display: block;
    color: var(--soft-red);
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-orange);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.form-submit-btn:hover:not(:disabled) {
    background: var(--amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: flex;
    align-items: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 24px;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-error {
    background: rgba(229, 83, 61, 0.1);
    border: 1px solid rgba(229, 83, 61, 0.3);
    color: var(--soft-red);
}

.form-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    height: fit-content;
    position: sticky;
    top: 100px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(255, 138, 0, 0.3);
}

.info-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 16px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 138, 0, 0.1);
    border: 1.5px solid rgba(255, 138, 0, 0.3);
    border-radius: 12px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    width: 100%;
    justify-content: center;
}

.contact-email-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.contact-email-link:hover {
    background: rgba(255, 138, 0, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.2);
}

.contact-note {
    font-size: 14px;
    color: var(--disabled-text);
    font-style: italic;
    margin: 0;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }
    
    .contact-info-card {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 32px 24px;
    }
    
    .contact-info-card {
        padding: 32px 24px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-showcase-content h2,
    .feature-showcase-content h3 {
        font-size: 28px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

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