/* style/app-download-ios.css */
.page-app-download-ios {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f7f6;
}

.page-app-download-ios__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-app-download-ios__hero {
    background-color: #0A1931;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-app-download-ios__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.9), rgba(255, 193, 7, 0.2));
    z-index: 1;
}

.page-app-download-ios__hero > * {
    position: relative;
    z-index: 2;
}

.page-app-download-ios__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFC107;
    line-height: 1.2;
    font-weight: bold;
}

.page-app-download-ios__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-app-download-ios__download-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.page-app-download-ios__qr-code-wrapper {
    text-align: center;
}

.page-app-download-ios__qr-code {
    width: 150px;
    height: 150px;
    border: 5px solid #fff;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios__qr-text {
    margin-top: 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #FFC107;
}

.page-app-download-ios__hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0.9;
}

.page-app-download-ios__button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios__button--primary {
    background-color: #FFC107;
    color: #0A1931;
    border: 2px solid #FFC107;
}

.page-app-download-ios__button--primary:hover {
    background-color: #e6b000;
    border-color: #e6b000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios__button--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-app-download-ios__button--secondary:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-app-download-ios__section--benefits {
    background-color: #fbfbfb;
}

.page-app-download-ios__section-title {
    font-size: 2.5em;
    color: #0A1931;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-app-download-ios__section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-app-download-ios__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-app-download-ios__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-ios__benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-app-download-ios__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(255, 193, 7, 0.4));
}

.page-app-download-ios__benefit-title {
    font-size: 1.5em;
    color: #0A1931;
    margin-bottom: 15px;
}

.page-app-download-ios__benefit-description {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.page-app-download-ios__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-app-download-ios__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fbfbfb;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page-app-download-ios__step-number {
    background-color: #FFC107;
    color: #0A1931;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-app-download-ios__step-title {
    font-size: 1.8em;
    color: #0A1931;
    margin-bottom: 15px;
}

.page-app-download-ios__step-description {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 25px;
}

.page-app-download-ios__step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    max-width: 600px;
    width: 100%;
    color: #444;
}

.page-app-download-ios__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-app-download-ios__list li::before {
    content: '✓';
    color: #FFC107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-app-download-ios__offer-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-app-download-ios__offer-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    font-size: 1.1em;
    line-height: 1.5;
    color: #333;
    border-left: 5px solid #FFC107;
}

.page-app-download-ios__offer-list li strong {
    color: #0A1931;
}

.page-app-download-ios__offer-cta {
    font-size: 1.2em;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    color: #0A1931;
    font-weight: bold;
}

.page-app-download-ios__offer-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios__faq-item {
    background-color: #fbfbfb;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-app-download-ios__faq-question {
    font-size: 1.3em;
    color: #0A1931;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.page-app-download-ios__faq-answer {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

.page-app-download-ios__section--cta-final {
    background-color: #0A1931;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-app-download-ios__section--cta-final .page-app-download-ios__section-title {
    color: #FFC107;
    margin-bottom: 25px;
}

.page-app-download-ios__section--cta-final .page-app-download-ios__section-subtitle {
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-app-download-ios__final-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-app-download-ios__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios__disclaimer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9em;
    color: #777;
    background-color: #f0f0f0;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-app-download-ios__hero-title {
        font-size: 2.8em;
    }
    .page-app-download-ios__section-title {
        font-size: 2em;
    }
    .page-app-download-ios__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-app-download-ios__hero {
        padding: 60px 0;
    }
    .page-app-download-ios__hero-title {
        font-size: 2.2em;
    }
    .page-app-download-ios__hero-description {
        font-size: 1.1em;
    }
    .page-app-download-ios__download-actions {
        flex-direction: column;
        gap: 20px;
    }
    .page-app-download-ios__section {
        padding: 40px 0;
    }
    .page-app-download-ios__section-title {
        font-size: 1.8em;
    }
    .page-app-download-ios__section-subtitle {
        font-size: 1em;
    }
    .page-app-download-ios__step-item {
        padding: 30px;
    }
    .page-app-download-ios__step-title {
        font-size: 1.5em;
    }
    .page-app-download-ios__step-description {
        font-size: 1em;
    }
    .page-app-download-ios__final-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .page-app-download-ios__hero-title {
        font-size: 1.8em;
    }
    .page-app-download-ios__hero-description {
        font-size: 0.95em;
    }
    .page-app-download-ios__button {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-app-download-ios__qr-code {
        width: 120px;
        height: 120px;
    }
    .page-app-download-ios__section-title {
        font-size: 1.5em;
    }
    .page-app-download-ios__benefit-title {
        font-size: 1.3em;
    }
    .page-app-download-ios__faq-question {
        font-size: 1.1em;
    }
    .page-app-download-ios__offer-list li {
        font-size: 1em;
        padding: 15px 20px;
    }
}