/* ============================================
   Mobile App Page Styles
   ============================================ */

/* App Hero Section */
.app-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloating 20s infinite alternate;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary);
}

.orb-2 {
    bottom: 5%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #7c3509;
}

.orb-3 {
    top: 30%;
    right: 30%;
    width: 300px;
    height: 300px;
    background: var(--primary-hover);
    animation-delay: -5s;
}

@keyframes orbFloating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 100px) rotate(15deg);
    }
}

.app-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.app-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-hero-title {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin: 0;
}

.app-hero-description {
    font-size: var(--fs-body);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    width: fit-content;
}

.hero-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}




/* App Download Buttons */
.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-app-store,
.btn-google-play {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: #000;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.btn-app-store:hover,
.btn-google-play:hover {
    background: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-app-store svg,
.btn-google-play svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-app-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-app-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.btn-app-name {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Phone Mockup */
.app-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screenshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.screenshot-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.screenshot-status {
    display: flex;
    gap: 0.5rem;
}

.screenshot-status svg {
    width: 16px;
    height: 16px;
    color: var(--text-dark);
}

.screenshot-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
}

.stat-card-mini {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-icon-mini {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(158, 66, 11, 0.1);
    border-radius: 12px;
}

.stat-info-mini {
    flex: 1;
}

.stat-value-mini {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stat-label-mini {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* App Features Section */
.app-features {
    padding: 100px 0;
    background: var(--bg-light);
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.app-feature-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.app-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.app-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.app-feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.app-feature-card:hover .app-feature-icon {
    background: var(--primary);
}

.app-feature-card:hover .app-feature-icon svg {
    color: var(--white);
}

.app-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.app-feature-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}


/* Screenshots Section */
.app-screenshots {
    padding: 100px 0;
    background: var(--white);
}

.screenshots-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.screenshot-frame {
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--secondary);
    border-radius: 24px;
    padding: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 3rem;
}

.screenshot-placeholder p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.screenshot-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}


/* App CTA Section */
.app-cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: var(--white);
}

.app-cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.app-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.app-cta-title {
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.app-cta-description {
    font-size: var(--fs-body);
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.app-cta .app-download-buttons {
    justify-content: center;
}

.app-cta .btn-app-store,
.app-cta .btn-google-play {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.app-cta .btn-app-store:hover,
.app-cta .btn-google-play:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}


/* Why Mobile App Section */
.why-mobile-app {
    padding: 100px 0;
    background: var(--white);
}

.why-mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.why-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-mobile-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-mobile-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-mobile-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.why-mobile-text-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-mobile-text-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.why-mobile-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.mobile-stat-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.mobile-stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.mobile-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.mobile-stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.mobile-stat-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}


/* Technical Specs Section */
.tech-specs {
    padding: 100px 0;
    background: var(--bg-light);
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tech-spec-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.tech-spec-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tech-spec-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-spec-header svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.tech-spec-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}


.tech-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-spec-list li {
    font-size: 0.9375rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.tech-spec-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* App Testimonials Section */
.app-testimonials {
    padding: 100px 0;
    background: var(--white);
}

.app-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.app-testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.app-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}


.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: #ffc107;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-mobile {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name-mobile {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role-mobile {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ Section */
.app-faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}


.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .app-hero {
        padding: 100px 0 60px;
    }

    .app-hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .app-hero-content {
        text-align: center;
        align-items: center;
    }

    .app-hero-description {
        margin: 0 auto;
    }

    .app-hero-image {
        display: none;
    }


    .app-features-grid,
    .screenshots-carousel,
    .tech-specs-grid,
    .app-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-mobile-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {

    .app-hero,
    .app-features,
    .app-screenshots,
    .app-cta,
    .why-mobile-app,
    .tech-specs,
    .app-testimonials,
    .app-faq {
        padding: 80px 0;
    }

    .app-features-grid,
    .tech-specs-grid,
    .app-testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }


    .phone-frame {
        width: 280px;
        height: 570px;
    }
}

@media (max-width: 640px) {
    .app-download-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-app-store,
    .btn-google-play {
        width: 100%;
        justify-content: center;
    }

    .screenshots-carousel {
        grid-template-columns: 1fr;
    }

    .app-cta-title {
        font-size: var(--fs-h2);
    }
}