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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #257ab4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(37, 122, 180, 0.1);
}

.lang-btn.active {
    background: #257ab4;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 122, 180, 0.3);
}

/* Hero Section */
.hero {
    background: #fef8f3;
    padding: 80px 20px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 40px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Logo */
.logo-container {
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    display: block;
}

/* Hero Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 30px;
    text-shadow: none;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #4a5568;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-align: center;
}

/* Early CTA */
.cta-section-early {
    margin-top: 40px;
    text-align: center;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: #ca4d2a;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(202, 77, 42, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(202, 77, 42, 0.4);
    filter: brightness(1.1);
}

/* Why Section */
.why-section {
    background: #f8f9fa;
    padding: 100px 20px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
    color: #2d3748;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

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

.feature-text {
    max-width: 500px;
}

.feature-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.feature-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #257ab4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(37, 122, 180, 0.3);
}

.feature-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

.feature-text p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Carousel Container */
.feature-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    margin: 0 auto;
    justify-self: center;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.screenshot {
    min-width: 100%;
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #667eea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Privacy Note */
.privacy-note {
    text-align: center;
    margin-top: 80px;
    font-size: 1.05rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.lock-icon {
    width: 24px;
    height: 24px;
    color: #257ab4;
}

/* Final CTA Section */
.final-cta {
    background: #ca4d2a;
    padding: 100px 20px;
    text-align: center;
}

.cta-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-subheadline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #ca4d2a;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #2d3748;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
}

/* Responsive Design - Medium screens (tablets/small laptops) */
@media (max-width: 1200px) {
    .hero-inner {
        max-width: 1200px;
        grid-template-columns: 48% 52%;
        gap: 40px;
        padding: 0 20px;
    }

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

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

    .logo-container {
        max-width: 450px;
    }

    .container-wide {
        max-width: 1000px;
    }

    .feature-showcase {
        gap: 50px;
    }

    .feature-text {
        max-width: 450px;
    }

    .feature-text h3 {
        font-size: 1.6rem;
    }

    .feature-text p {
        font-size: 1.1rem;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        order: -1;
    }

    .hero-image {
        order: 1;
    }

    .language-toggle {
        top: 15px;
        right: 15px;
        padding: 4px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

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

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

    .logo-container {
        max-width: 400px;
    }

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

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-showcase.reverse {
        direction: ltr;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .feature-text p {
        font-size: 1.05rem;
    }

    .cta-headline {
        font-size: 2.2rem;
    }

    .cta-subheadline {
        font-size: 1.15rem;
    }

    .cta-button,
    .cta-button-large {
        font-size: 1.1rem;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 50px;
    }

    .feature-text h3 {
        font-size: 1.3rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .cta-headline {
        font-size: 1.8rem;
    }

    .cta-subheadline {
        font-size: 1.05rem;
    }

    .privacy-note {
        font-size: 0.95rem;
        flex-direction: column;
    }
}
