/* style/download-ios-app.css */

.page-download-ios-app {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

.page-download-ios-app__hero {
    background: linear-gradient(135deg, #007BFF, #FFC107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-ios-app__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: page-download-ios-app__bubble 15s infinite ease-in-out;
}

.page-download-ios-app__hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: page-download-ios-app__bubble 20s infinite reverse ease-in-out;
}

@keyframes page-download-ios-app__bubble {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(50px, -50px) scale(1.1); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

.page-download-ios-app__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-ios-app__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-download-ios-app__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-download-ios-app__btn--primary {
    background-color: #FFC107;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-download-ios-app__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-download-ios-app__btn--secondary {
    background-color: #007BFF;
    color: #fff;
    border: 2px solid #007BFF;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-download-ios-app__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.page-download-ios-app__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-download-ios-app__hero-image {
    max-width: 450px;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: page-download-ios-app__float 6s ease-in-out infinite;
}

@keyframes page-download-ios-app__float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.page-download-ios-app__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-download-ios-app__section:last-of-type {
    border-bottom: none;
}

.page-download-ios-app__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-download-ios-app__introduction p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 15px auto;
    color: #555;
}

.page-download-ios-app__preparation .page-download-ios-app__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-download-ios-app__step-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-download-ios-app__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-download-ios-app__step-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-download-ios-app__step-item p {
    color: #666;
}

.page-download-ios-app__ordered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
}

.page-download-ios-app__ordered-list li {
    margin-bottom: 40px;
    padding-left: 60px;
    position: relative;
}

.page-download-ios-app__ordered-list li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 5px;
    background-color: #007BFF;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.page-download-ios-app__ordered-list h3 {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-download-ios-app__ordered-list p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.page-download-ios-app__image-inline {
    display: block;
    max-width: 70%;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-download-ios-app__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-download-ios-app__list li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.page-download-ios-app__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC107;
    font-weight: 700;
    font-size: 1.2em;
}

.page-download-ios-app__list--benefits li {
    font-weight: 500;
}

.page-download-ios-app__list--benefits li strong {
    color: #007BFF;
}

.page-download-ios-app__btn-group {
    text-align: center;
    margin-top: 30px;
}

.page-download-ios-app__btn-group .page-download-ios-app__btn {
    margin: 0 15px;
}

.page-download-ios-app__image-full-width {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-download-ios-app__faq .page-download-ios-app__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-download-ios-app__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-download-ios-app__accordion-header {
    background-color: #f0f8ff;
    color: #007BFF;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.3em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-ios-app__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-download-ios-app__accordion-header.active {
    background-color: #e6f2ff;
}

.page-download-ios-app__accordion-header.active::after {
    transform: rotate(45deg);
}

.page-download-ios-app__accordion-content {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-download-ios-app__accordion-content p {
    padding: 15px 0;
    font-size: 1.05em;
    color: #444;
}

.page-download-ios-app__cta-final {
    background-color: #007BFF;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-download-ios-app__cta-final .page-download-ios-app__section-title {
    color: #FFC107;
    margin-bottom: 25px;
}

.page-download-ios-app__cta-final p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-download-ios-app__image-cta {
    max-width: 500px;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-download-ios-app__title {
        font-size: 2.5em;
    }

    .page-download-ios-app__subtitle {
        font-size: 1.2em;
    }

    .page-download-ios-app__section-title {
        font-size: 2em;
    }

    .page-download-ios-app__hero-image {
        max-width: 80%;
    }

    .page-download-ios-app__image-inline {
        max-width: 90%;
    }

    .page-download-ios-app__ordered-list li {
        padding-left: 50px;
    }

    .page-download-ios-app__ordered-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }

    .page-download-ios-app__ordered-list h3 {
        font-size: 1.5em;
    }

    .page-download-ios-app__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-download-ios-app__hero {
        padding: 60px 0;
    }

    .page-download-ios-app__title {
        font-size: 2em;
    }

    .page-download-ios-app__subtitle {
        font-size: 1em;
    }

    .page-download-ios-app__btn {
        padding: 12px 25px;
        font-size: 0.9em;
        margin: 5px;
    }

    .page-download-ios-app__btn--large {
        padding: 15px 30px;
        font-size: 1em;
    }

    .page-download-ios-app__hero-image {
        max-width: 90%;
    }

    .page-download-ios-app__section-title {
        font-size: 1.8em;
    }

    .page-download-ios-app__preparation .page-download-ios-app__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-download-ios-app__ordered-list li {
        padding-left: 45px;
    }

    .page-download-ios-app__ordered-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1.2em;
    }

    .page-download-ios-app__ordered-list h3 {
        font-size: 1.3em;
    }

    .page-download-ios-app__list li {
        font-size: 1em;
    }

    .page-download-ios-app__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-download-ios-app__accordion-content p {
        font-size: 0.95em;
    }

    .page-download-ios-app__cta-final p {
        font-size: 1em;
    }
}