/* ===== APP PAGE STYLES ===== */

/* Hero Section */
.app-hero-section {
    position: relative;
    padding: 100px 0 60px;
    background: transparent;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.app-hero-section::before {
    display: none;
}

.app-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Decorative Stars - Hidden since background removed */
.app-hero-stars {
    display: none;
}

.app-hero-stars .star {
    position: absolute;
    animation: twinkle 3s ease-in-out infinite;
}

.app-hero-stars .star-1 {
    top: 15%;
    left: 8%;
    width: 24px;
    height: 24px;
    animation-delay: 0s;
}

.app-hero-stars .star-2 {
    top: 10%;
    right: 12%;
    width: 32px;
    height: 32px;
    animation-delay: 0.5s;
}

.app-hero-stars .star-3 {
    top: 40%;
    left: 5%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
}

.app-hero-stars .star-4 {
    top: 30%;
    right: 8%;
    width: 28px;
    height: 28px;
    animation-delay: 1.5s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.star svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.6);
}

/* Hero Wrapper - Side by Side Layout */
.app-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Hero Content (Left Side) */
.app-hero-content {
    text-align: left;
    max-width: 550px;
    flex: 1;
    padding-bottom: 0;
}

.app-hero-content h1 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 46px;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 20px;
}

.app-hero-content h1 .highlight {
    color: #d7942e;
    position: relative;
    display: inline;
}

.app-hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(215, 148, 46, 0.3);
    border-radius: 2px;
}

.app-hero-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Hero Buttons */
.app-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.app-hero-buttons .btn-app-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(215, 148, 46, 0.3);
}

.app-hero-buttons .btn-app-primary:hover {
    background: linear-gradient(135deg, #c5862a, #d7a820);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 148, 46, 0.4);
}

.app-hero-buttons .btn-app-primary i {
    font-size: 18px;
}

.app-hero-buttons .btn-app-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #d7942e;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #d7942e;
}

.app-hero-buttons .btn-app-secondary:hover {
    background: rgba(215, 148, 46, 0.1);
    border-color: #c5862a;
    transform: translateY(-2px);
}

.app-hero-buttons .btn-app-secondary i {
    font-size: 18px;
}

/* Hero Mockup (Right Side) - Single Phone Layout */
.app-hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    position: relative;
    flex: 1;
    max-width: 700px;
}

.app-hero-mockup .mockup-phone {
    transition: transform 0.5s ease;
    filter: drop-shadow(0 20px 50px rgba(215, 148, 46, 0.2));
}

.app-hero-mockup .mockup-phone:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 30px 60px rgba(215, 148, 46, 0.3));
}

.app-hero-mockup .mockup-single {
    width: 650px;
    max-height: 560px;
    position: relative;
}

.app-hero-mockup .mockup-phone img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    border-radius: 28px;
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05); */
}

/* ===== FEATURES SECTION ===== */
.app-features-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.app-features-section .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #d7942e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(215, 148, 46, 0.1);
    border-radius: 20px;
}

.app-features-section .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.app-feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.app-feature-row:last-child {
    margin-bottom: 0;
}

.app-feature-row.reverse {
    flex-direction: row-reverse;
}

.app-feature-text {
    flex: 1;
}

.app-feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.app-feature-image .phone-mockup-wrapper {
    position: relative;
    width: 600px;
}

.app-feature-image .phone-mockup-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.app-feature-image .phone-mockup-wrapper:hover img {
    transform: translateY(-8px);
}

.app-feature-image .phone-bg-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    /* background: linear-gradient(135deg, rgba(215, 148, 46, 0.1), rgba(232, 185, 35, 0.05)); */
    border-radius: 32px;
    z-index: -1;
}

/* Feature Cards */
.app-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.app-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    background: var(--pricing-card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.app-feature-card:hover {
    transform: translateX(8px);
    border-color: #d7942e;
    box-shadow: 0 4px 20px var(--feature-shadow);
}

.app-feature-card .card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.15), rgba(232, 185, 35, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d7942e;
    font-size: 20px;
}

.app-feature-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-color);
}

.app-feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ===== ADVANTAGES SECTION ===== */
.app-advantages-section {
    padding: 80px 0;
    background: var(--pricing-bg);
}

.app-advantages-section .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #d7942e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(215, 148, 46, 0.1);
    border-radius: 20px;
}

.app-advantage-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.app-advantage-block:last-child {
    margin-bottom: 0;
}

.app-advantage-block.reverse {
    flex-direction: row-reverse;
}

.app-advantage-content {
    flex: 1;
}

.app-advantage-content .advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d7942e, #e8b923);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
}

.app-advantage-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.app-advantage-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.app-advantage-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-advantage-image .phone-mockup-wrapper {
    position: relative;
    width: 480px;
}

.app-advantage-image .phone-mockup-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.app-advantage-image .phone-mockup-wrapper:hover img {
    transform: translateY(-8px);
}

/* ===== TESTIMONIALS SECTION ===== */
.app-testimonials-section {
    padding: 80px 0;
    background: var(--bg-color);
    overflow: hidden;
}

.app-testimonials-section .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #d7942e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(215, 148, 46, 0.1);
    border-radius: 20px;
}

.testimonial-avatars {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.testimonial-avatars .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.6;
}

.testimonial-avatars .avatar.active {
    border-color: #d7942e;
    opacity: 1;
    transform: scale(1.15);
}

.testimonial-avatars .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--pricing-card-bg);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 20px var(--pricing-card-shadow);
}

.testimonial-card .stars {
    color: #f5a623;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 600;
    color: #d7942e;
    font-size: 16px;
}

.testimonial-card .author span {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 14px;
}

/* ===== FAQ SECTION ===== */
.app-faq-section {
    padding: 80px 0;
    background: var(--pricing-bg);
}

.app-faq-section .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #d7942e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(215, 148, 46, 0.1);
    border-radius: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pricing-card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d7942e;
}

.faq-item.active {
    border-color: #d7942e;
    box-shadow: 0 4px 15px var(--feature-shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.faq-question .faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(215, 148, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d7942e;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #d7942e;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== DOWNLOAD CTA SECTION ===== */
.app-download-section {
    padding: 80px 0;
    background: var(--cta-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.app-download-section .container {
    position: relative;
    z-index: 2;
}

.app-download-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: "Manrope", sans-serif;
}

.app-download-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
    text-decoration: none;
}

.download-btn .btn-icon {
    font-size: 28px;
    color: #d7942e;
}

.download-btn .btn-text {
    text-align: left;
}

.download-btn .btn-text small {
    display: block;
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.download-btn .btn-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .app-hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .app-hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .app-hero-content {
        text-align: center;
        max-width: 800px;
    }

    .app-hero-content p {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .app-hero-buttons {
        justify-content: center;
    }

    .app-hero-content h1 {
        font-size: 38px;
    }

    .app-hero-mockup {
        max-width: 100%;
    }

    .app-hero-mockup .mockup-single {
        width: 260px;
        max-height: 520px;
    }

    .app-feature-row,
    .app-advantage-block {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .app-feature-cards {
        align-items: center;
    }

    .app-feature-card {
        max-width: 500px;
    }

    .app-advantage-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-download-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .app-hero-section {
        padding: 60px 0 30px;
    }

    .app-hero-content h1 {
        font-size: 30px;
    }

    .app-hero-content p {
        font-size: 15px;
    }

    .app-hero-mockup .mockup-single {
        width: 240px;
        max-height: 480px;
    }

    .app-features-section .section-title,
    .app-advantages-section .section-title {
        font-size: 28px;
    }

    .app-advantage-content h3 {
        font-size: 24px;
    }

    .app-download-section h2 {
        font-size: 26px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .app-hero-content h1 {
        font-size: 26px;
    }

    .app-hero-buttons {
        flex-direction: column;
    }

    .app-hero-buttons .btn-app-primary,
    .app-hero-buttons .btn-app-secondary {
        width: 100%;
        justify-content: center;
    }

    .app-feature-image .phone-mockup-wrapper {
        width: 240px;
    }

    .app-advantage-image .phone-mockup-wrapper {
        width: 220px;
    }
}