.app-branding h1,
.breadcrumb a {
    color: var(--primary-color)
}

.carousel,
.hero {
    overflow: hidden
}

.about-content,
.feature-card,
.hero-content,
.section-title,
.stats-grid {
    text-align: center
}

.breadcrumb a,
.footer-brand a,
footer .footer-bottom a {
    text-decoration: none;
    transition: opacity .3s
}

.breadcrumb {
    background: #fff;
    padding: 12px 0;
    font-size: .875rem;
    border-bottom: 1px solid #e0e0e0
}

.features,
.hero {
    padding: 60px 0
}

.breadcrumb a:hover {
    opacity: .7
}

.breadcrumb span {
    color: var(--text-light)
}

.hero {
    background: linear-gradient(135deg, #527d9c 0, #f8a009 35%, #50b951 65%, #3e6988 100%);
    position: relative
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .85);
    z-index: 1
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%
}

.app-branding {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

.app-branding h1 {
    font-size: 1.8rem;
    margin: 0
}

.hero-text h2,
.section-title h3 {
    color: var(--primary-color);
    margin-bottom: 12px
}

.hero-text h2 {
    font-size: 2rem;
    line-height: 1.2
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #555;
    max-width: 90%
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px auto 0;
    width: 100%;
    max-width: 280px;
    align-items: center;
    justify-content: center
}

.cta-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px
}

.app-badge {
    height: 60px;
    width: auto;
    transition: transform .3s;
    display: block;
    margin: 0 auto
}

.app-badge:hover,
.feature-card:hover {
    transform: translateY(-3px)
}

.app-screenshots {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1;
    width: 100%
}

.screenshot-carousel {
    width: 225px;
    height: 460px;
    overflow: hidden;
    position: relative;
    margin: 0 auto
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out
}

.carousel-item.active {
    opacity: 1
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    z-index: 10;
    flex-wrap: wrap;
    max-width: 280px
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .2);
    cursor: pointer;
    transition: .3s
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2)
}

.section-title {
    margin-bottom: 40px;
    padding: 0 20px
}

.section-title h3 {
    font-size: 1.8rem
}

.section-title p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 100%;
    margin: 0 auto
}

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

.feature-card {
    padding: 30px 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    transition: transform .3s;
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 20px
}

.about-test,
.more-apps {
    background: #f8f9fa
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-color)
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: .95rem
}

.about-test {
    padding: 60px 0
}

.about-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 24px
}

.about-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 16px;
    text-align: left
}

.stats {
    padding: 50px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px
}

.final-cta,
.more-apps {
    padding: 60px 0;
    text-align: center
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px
}

.stat-item p {
    color: var(--text-light);
    font-size: 1rem
}

.more-apps h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--primary-color)
}

.more-apps p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1rem
}

.more-apps .btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: .3s
}

.more-apps .btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px)
}

.final-cta {
    background: var(--primary-color);
    color: #fff
}

.final-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    padding: 0 20px
}

.final-cta p {
    font-size: 1rem;
    margin-bottom: 32px;
    opacity: .9;
    padding: 0 20px
}

.final-cta .cta-buttons {
    max-width: 280px;
    margin: 0 auto
}

@media (max-width:480px) {
    .carousel-dots {
        max-width: 240px;
        gap: 6px
    }

    .dot {
        width: 8px;
        height: 8px
    }

    .hero-description {
        max-width: 95%
    }
}

@media (min-width:480px) and (max-width:767px) {
    .carousel-dots {
        max-width: 280px
    }
}

@media (max-width:767px) {
    .breadcrumb {
        display: none
    }
}

@media (min-width:768px) {
    .hero {
        padding: 80px 0
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        text-align: left
    }

    .app-branding {
        justify-content: flex-start
    }

    .app-branding h1 {
        font-size: 2rem
    }

    .app-icon {
        width: 70px;
        height: 70px
    }

    .hero-text h2 {
        font-size: 2.8rem
    }

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

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%
    }

    .cta-buttons {
        flex-direction: row;
        gap: 16px;
        max-width: none;
        justify-content: flex-start
    }

    .screenshot-carousel {
        width: 265px;
        height: 540px
    }

    .dot {
        width: 12px;
        height: 12px
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }

    .about-content h3,
    .final-cta h3,
    .more-apps h3,
    .section-title h3 {
        font-size: 2.2rem
    }

    .about-content p,
    .final-cta p,
    .more-apps p {
        font-size: 1.1rem
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px
    }

    .stat-item h4 {
        font-size: 2.5rem
    }

    .final-cta .cta-buttons {
        flex-direction: row;
        gap: 16px;
        max-width: none;
        justify-content: center
    }
}

@media (min-width:1024px) {
    .hero {
        padding: 100px 0 80px
    }

    .app-branding h1 {
        font-size: 2.2rem
    }

    .features,
    .more-apps {
        padding: 80px 0
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px
    }

    .section-title h3 {
        font-size: 2.5rem
    }

    .screenshot-carousel {
        width: 343px;
        height: 700px
    }
}

@media (min-width:1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}