/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    position: relative;
    margin-top: 0 !important;
    padding-top: 0 !important;
}


.badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.hero-content {
    margin-top: 80px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero h1 {
    font-size: clamp(1.5rem, 5vw, 2.7rem);
    margin-bottom: 25px;
    margin-top: 10px;
    line-height: 1.2;
}

.hero p {
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
}

.hero .download-buttons {
    margin-top: 0;
    align-self: flex-start;
    width: auto;
}

.section-persona .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: auto;
}

.section-content {
    order: 1;
    max-width: 600px;
    padding-right: 40px;
}

.section-content h2 {
    margin-bottom: 25px;
    margin-top: 10px;
}

.section-content p {
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefit-item {
    margin-bottom: 20px;
    padding: 0;
}

.download-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: nowrap;
    margin-top: 40px;
    justify-content: flex-start;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.screenshot {
    position: absolute;
    border-radius: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.screenshot-main {
    width: min(80%, 250px);
    aspect-ratio: 340 / 736;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 25px;
    border: none;
    background: none;
    box-shadow: 0 0 4px 2px var(--primary-dark), 0 0 4px 2px var(--primary-light), 0 0 10px 5px rgba(255, 255, 255, 0.2);
}

img.main-screenshot {
    aspect-ratio: 340 / 736;
    width: 100%;
    height: auto;
}

.download-buttons .button.store-badge {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 15px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.button-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-color);
}

.button-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.store-icon {
    font-size: 1.8rem;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none !important;
}

/* Features Section Enhanced */
.features-enhanced {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-color) 0%, var(--darker-color) 100%);
}

.feature-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    padding: 40px;
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.feature-card-enhanced {
    background: linear-gradient(145deg, var(--lighter-color), rgba(19, 19, 19, 0.8));
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-icon-enhanced {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-icon-enhanced i {
    font-size: 2.5rem;
    color: white;
}

.feature-card-enhanced h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.feature-card-enhanced p {
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Pricing Section Enhanced */
.pricing-section-enhanced {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.pricing-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.pricing-card-enhanced {
    background: linear-gradient(145deg, var(--lighter-color), rgba(19, 19, 19, 0.9));
    border-radius: 24px;
    padding: 50px 40px 90px 40px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card-enhanced.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(145deg, var(--lighter-color), rgba(255, 107, 53, 0.05));
}

.pricing-badge-enhanced {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.pricing-price-enhanced {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1;
}

.pricing-price-enhanced span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features-enhanced {
    text-align: left;
    margin-bottom: 40px;
    padding: 0;
}

.pricing-features-enhanced li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features-enhanced li:last-child {
    border-bottom: none;
}

.pricing-features-enhanced li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

.pricing-button-enhanced {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .badge {
        display: none;
    }

    .mobile-only {
        display: flex !important;
        justify-content: center !important;
        order: 3;
        margin-top: 10px;
    }

    .container {
        padding: 0px;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-content {
        padding-right: 0;
        padding-left: 0;
        order: 1;
        width: 100%;
        min-height: auto;
        margin-top: 0;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-image {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        height: auto !important;
        margin: 50px auto 30px auto !important;
        margin-top: 130px !important;
        order: 2 !important;
        position: static !important;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 1.9rem);
        margin-bottom: 15px;
        text-align: center;
    }

    .hero p {
        font-size: clamp(1rem, 3vw, 1rem);
        line-height: 1.5 !important;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 30px;
        text-align: center !important;
    }

    .download-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin: 40px auto 0 auto;
        flex-wrap: nowrap;
        order: 3;
        width: 100%;
        max-width: 500px;
    }

    .download-buttons .button {
        padding: 16px 28px;
        font-size: 0.8rem;
        min-width: 200px;
        justify-content: center;
    }

    .download-buttons .button .store-icon {
        margin-right: 5px;
    }

    .app-screenshots {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .screenshot-main {
        position: static;
        width: 200px !important;
        height: 432px;
        margin-top: 50px !important;
        left: auto;
        transform: none;
    }

    .pricing-section-enhanced {
        padding: 80px 0;
    }

    .pricing-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        align-items: stretch;
    }

    .pricing-card-enhanced {
        padding: 40px 30px 80px 30px;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
        order: 3;
        justify-content: center;
    }

    .hero-content {
        order: 1;
        padding-right: 0;
        margin-bottom: 0;
        min-height: auto;
    }

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

    .hero-image {
        margin: 0 auto;
        margin-bottom: -50px !important;
    }

    .download-buttons {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 25px;
        margin-top: -5px !important;
    }

    .hero p {
        font-size: 1.025rem !important;
        margin-bottom: -30px !important;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .app-screenshots {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .screenshot-main {
        position: static;
        width: 200px;
        height: 350px;
        aspect-ratio: 340 / 736;
        left: auto;
    }

    img.main-screenshot {
        aspect-ratio: 340 / 736;
        width: 100%;
        height: auto;
    }

    .download-buttons .button.store-badge {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 180px;
    }

    .features-enhanced {
        padding: 60px 0;
    }

    .features-enhanced .section-header {
        margin-bottom: 20px;
    }

    .features-grid-enhanced {
        margin-top: 0;
        gap: 25px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.1rem;
        margin-bottom: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-section-enhanced {
        padding: 60px 0;
    }

    .pricing-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .pricing-card-enhanced {
        padding: 30px 25px 60px 25px;
    }

    .pricing-badge-enhanced {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 20px auto;
    }

    .hero {
        padding-top: 10px !important;
    }

    .hero h1 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }

    .hero p {
        font-size: 0.9rem !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }

    .hero-image {
        margin-top: 70px !important;
        margin-bottom: -50px !important;
    }

    .download-buttons {
        margin-top: -120px !important;
        flex-direction: row !important;
        gap: 2px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
        position: static !important;
    }

    .download-buttons .button {
        width: 45% !important;
        max-width: 180px !important;
        min-width: unset !important;
        padding: 12px 0 !important;
        font-size: 0.8rem !important;
        justify-content: center !important;
    }

    .mobile-only {
        gap: 10px !important;
    }

    .features-enhanced .container .section-header h2 {
        font-size: 1.6rem;
    }

    .features-enhanced .container .section-header h3 {
        font-size: 1rem;
    }

    .features-grid-enhanced .feature-card-enhanced h3 {
        font-size: 1.3rem;
    }


    .pricing-button-enhanced {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        padding: 14px 0 !important;
    }
}

@media (max-width: 380px) {

    .hero-image {
        padding-top: 0;
        margin-top: 0;
    }

    .download-buttons {
        flex-direction: row;
        gap: 8px;
        margin-top: 0;
    }

    .download-buttons .button {
        width: 100%;
        max-width: 200px;
        padding: 10px 16px;
    }

    .screenshot-main {
        width: 90vw;
        max-width: 160px;
        height: auto;
        aspect-ratio: 340 / 736;
    }

    .pricing-button-enhanced {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
        font-size: 0.95rem !important;
        padding: 14px 0 !important;
    }

    .pricing-price-enhanced {
        font-size: 2.5rem !important;
    }
}

@media (max-height: 667px) {

    .hero-content {
        padding-top: 0px auto !important;
    }

    .hero h1 {
        font-size: 1.7rem !important;
        margin-bottom: 70px !important;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 210px !important;
    }

    .hero-image {
        display: none !important;
    }
}