/* Redesigned App Download Section CSS - Matches Premium Mockup */
.app-download-section {
    padding: 80px 0;
    background-color: #fcfdfd; /* Extremely light subtle clean background */
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    position: relative;
}

.app-download-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Column */
.app-content-left {
    display: flex;
    flex-direction: column;
}

.trust-badge {
    font-size: 13px;
    font-weight: 800;
    color: #ff9e15; /* Brand orange */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.slash-decor {
    color: #ff9e15;
    font-style: italic;
    font-weight: 900;
    font-size: 16px;
}

.app-download-section h2 {
    font-size: 40px;
    font-weight: 850;
    color: #111213;
    line-height: 1.22;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.app-description {
    font-size: 15px;
    color: #5b626e;
    line-height: 1.65;
    margin-bottom: 35px;
    max-width: 540px;
}

/* Features Grid */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-icon {
    font-size: 26px;
    color: #ff9e15;
    transition: transform 0.3s ease-in-out;
    width: fit-content;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px) scale(1.1);
}

.feature-title {
    font-size: 13.5px;
    font-weight: 750;
    color: #1f2937;
    line-height: 1.35;
}

/* Store Buttons (Side-by-side) */
.download-stores-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn-redesigned {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111213;
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    border: 1.5px solid #111213;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.store-btn-redesigned i {
    font-size: 24px;
}

.store-btn-redesigned .btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn-redesigned .btn-text span {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.75;
}

.store-btn-redesigned .btn-text strong {
    font-size: 13.5px;
    font-weight: 700;
    display: block;
    margin-top: 1px;
}

/* Hover States for Buttons */
.store-btn-redesigned:hover {
    background: #ff9e15;
    border-color: #ff9e15;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255, 158, 21, 0.35);
}

/* Right Content Column (Lottie wrapper) */
.app-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lottie-animation-wrapper {
    width: 100%;
    max-width: 480px;
    background: transparent;
    transition: transform 0.4s ease-out;
}

.lottie-animation-wrapper:hover {
    transform: scale(1.02);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .app-download-container {
        gap: 40px;
    }
    .app-download-section h2 {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .app-download-section {
        padding: 60px 0;
    }
    .app-download-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .trust-badge {
        justify-content: center;
    }
    .app-description {
        margin-left: auto;
        margin-right: auto;
    }
    .app-features-grid {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .download-stores-wrapper {
        justify-content: center;
    }
    .lottie-animation-wrapper {
        max-width: 420px;
    }
}

@media (max-width: 576px) {
    .app-download-section h2 {
        font-size: 28px;
    }
    .app-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 300px;
    }
    .feature-item {
        align-items: center;
    }
    .download-stores-wrapper {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .store-btn-redesigned {
        justify-content: center;
    }
}
