/* style/index-core-features.css */
.page-index-core-features {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    background-color: #0A2342;
    line-height: 1.6;
}

.page-index-core-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-core-features__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a5e 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-index-core-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-core-features__hero-title .highlight {
    color: #E0B400;
}

.page-index-core-features__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    color: #e0e0e0;
}

.page-index-core-features__hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-index-core-features__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-index-core-features__btn--primary {
    background-color: #E0B400;
    color: #0A2342;
    box-shadow: 0 4px 15px rgba(224, 180, 0, 0.4);
}

.page-index-core-features__btn--primary:hover {
    background-color: #f5c700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 180, 0, 0.6);
}

.page-index-core-features__btn--secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-index-core-features__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-index-core-features__btn--text {
    background: none;
    border: none;
    color: #E0B400;
    padding: 0;
    font-size: 1em;
    font-weight: 500;
    text-decoration: underline;
    margin-top: 15px;
}

.page-index-core-features__btn--text:hover {
    color: #f5c700;
}

.page-index-core-features__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-index-core-features__hero-image-wrapper {
    margin-top: 50px;
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.page-index-core-features__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-core-features__section {
    padding: 80px 0;
    text-align: center;
    background-color: #0A2342;
    color: #f0f0f0;
}

.page-index-core-features__section--dark {
    background-color: #1a3a5e;
}

.page-index-core-features__section-title {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #E0B400;
    font-weight: 700;
}

.page-index-core-features__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #c0c0c0;
}

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

.page-index-core-features__grid--small {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-index-core-features__feature-card,
.page-index-core-features__promo-card,
.page-index-core-features__info-card {
    background-color: #0a2f5a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-core-features__feature-card:hover,
.page-index-core-features__promo-card:hover,
.page-index-core-features__info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-core-features__feature-icon,
.page-index-core-features__promo-icon,
.page-index-core-features__info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    object-fit: contain;
}

.page-index-core-features__card-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-core-features__card-text {
    font-size: 0.95em;
    color: #c0c0c0;
    flex-grow: 1;
}

.page-index-core-features__container--reverse {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.page-index-core-features__container--reverse:nth-child(even) {
    flex-direction: row-reverse;
}

.page-index-core-features__content-block {
    flex: 1;
    min-width: 40%;
}

.page-index-core-features__image-block {
    flex: 1;
    min-width: 40%;
}

.page-index-core-features__responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-core-features__text {
    font-size: 1.05em;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.page-index-core-features__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-core-features__list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
    font-size: 1em;
}

.page-index-core-features__list li::before {
    content: '✔';
    color: #E0B400;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    top: -2px;
}

.page-index-core-features__promo-card {
    background-color: #0a2f5a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-index-core-features__action-center {
    margin-top: 50px;
}

.page-index-core-features__cta-banner {
    background: linear-gradient(90deg, #0A2342, #E0B400);
    padding: 60px 0;
    text-align: center;
    color: #0A2342;
}

.page-index-core-features__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A2342;
    font-weight: 700;
}

.page-index-core-features__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #2a2a2a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-core-features__hero-title {
        font-size: 2.5em;
    }
    .page-index-core-features__section-title {
        font-size: 2em;
    }
    .page-index-core-features__container--reverse {
        flex-direction: column;
        text-align: center;
    }
    .page-index-core-features__container--reverse:nth-child(even) {
        flex-direction: column;
    }
    .page-index-core-features__content-block,
    .page-index-core-features__image-block {
        min-width: 100%;
    }
    .page-index-core-features__cta-title {
        font-size: 2.2em;
    }
    .page-index-core-features__grid {
        grid-template-columns: 1fr;
    }
    .page-index-core-features__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-core-features__btn--large {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-index-core-features__hero {
        padding: 60px 0;
        min-height: 500px;
    }
    .page-index-core-features__hero-title {
        font-size: 2em;
    }
    .page-index-core-features__hero-description {
        font-size: 1em;
    }
    .page-index-core-features__section {
        padding: 60px 0;
    }
    .page-index-core-features__section-title {
        font-size: 1.8em;
    }
    .page-index-core-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-core-features__cta-title {
        font-size: 1.8em;
    }
    .page-index-core-features__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-core-features__hero-title {
        font-size: 1.8em;
    }
    .page-index-core-features__section-title {
        font-size: 1.6em;
    }
    .page-index-core-features__btn--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .page-index-core-features__hero-actions {
        gap: 10px;
    }
    .page-index-core-features__btn {
        width: 100%;
        max-width: 250px;
    }
}