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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay>* {
    pointer-events: auto;
}



.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-left: 20px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 12px;
    background: linear-gradient(135deg, #8a2be2, #4b0082);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    margin-top: auto;
    margin-bottom: 60px;
    margin-left: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

/* Hide logo in overlay if banner already has it - uncomment if needed */
/* .hero-overlay .logo-container {
    display: none;
} */

.cta-button {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 162px;
    margin-bottom: 100px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* App Screenshot */
.app-screenshot-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    width: 100%;
    max-width: 1200px;
    background-color: #2a2a2a;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
    overflow: hidden;
}

.browser-header {
    background-color: #3a3a3a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #4a4a4a;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-close {
    background-color: #ff5f57;
}

.control-minimize {
    background-color: #ffbd2e;
}

.control-maximize {
    background-color: #28ca42;
}

.browser-url {
    flex: 1;
    background-color: #2a2a2a;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
    font-family: monospace;
}

.browser-tab {
    background-color: #2a2a2a;
    padding: 6px 20px;
    border-radius: 6px 6px 0 0;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

.browser-content {
    background-color: #1a1a1a;
    padding: 0;
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* About Section */
.about {
    background-color: #000000;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: -173px !important;
}

.about-text {
    z-index: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Why Use Section */
.why-use {
    background-color: #000000;
    padding: 60px 20px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: rgba(106, 27, 178, 0.3);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(138, 43, 226, 0.5);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.feature-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 18px;
    color: #ffffff;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

/* Benefits Section */
.benefits {
    background-color: #000000;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.benefits-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
}

.demo-button {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -163px;
    margin-left: 351px;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 60px 20px 40px;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 12px;
}

.footer-logo-image {
    height: auto;
    max-width: 200px;
    width: auto;
}

.footer-text {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: -173px !important;
    }

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

    .app-screenshot {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-content {
        margin-left: 20px;
        margin-top: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .cta-button,
    .demo-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .about {
        padding: 60px 20px 40px;
    }
}