/* style/index-789b-core-features.css */
.page-index-789b-core-features {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text on dark background */
    line-height: 1.6;
    background-color: #0A192F; /* Main background color */
}

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

.page-index-789b-core-features__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A63 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700;
}

.page-index-789b-core-features__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-789b-core-features__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-789b-core-features__section {
    padding: 80px 0;
    background-color: #0A192F;
    color: #f5f5f5;
}

.page-index-789b-core-features__section--dark {
    background-color: #1A2A44;
    color: #f5f5f5;
}

.page-index-789b-core-features__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-index-789b-core-features__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #ccc;
}

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

.page-index-789b-core-features__feature-item, 
.page-index-789b-core-features__promo-item {
    background-color: #1A2A44;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-789b-core-features__feature-item:hover, 
.page-index-789b-core-features__promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-index-789b-core-features__feature-icon, 
.page-index-789b-core-features__list-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-789b-core-features__feature-title, 
.page-index-789b-core-features__list-title, 
.page-index-789b-core-features__promo-title {
    font-size: 1.7em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-789b-core-features__feature-text, 
.page-index-789b-core-features__list-text, 
.page-index-789b-core-features__promo-text {
    font-size: 1em;
    color: #e0e0e0;
}

.page-index-789b-core-features__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    margin: 10px;
}

.page-index-789b-core-features__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    border: none;
}

.page-index-789b-core-features__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-789b-core-features__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-index-789b-core-features__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-index-789b-core-features__btn--link {
    background-color: transparent;
    color: #e0e0e0;
    border: 1px solid #444;
    padding: 10px 25px;
    font-size: 1em;
}

.page-index-789b-core-features__btn--link:hover {
    color: #FFD700;
    border-color: #FFD700;
}

.page-index-789b-core-features__cta-group {
    text-align: center;
    margin-top: 50px;
}

.page-index-789b-core-features__split-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-index-789b-core-features__text-content {
    flex: 1;
    min-width: 300px;
}

.page-index-789b-core-features__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-index-789b-core-features__main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-index-789b-core-features__sub-title {
    font-size: 2em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-789b-core-features__text-block {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-index-789b-core-features__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-index-789b-core-features__list-item {
    background-color: #0A192F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-index-789b-core-features__list-item:hover {
    background-color: #1a2a44;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.page-index-789b-core-features__promo-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-789b-core-features__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-index-789b-core-features__step-item {
    background-color: #1A2A44;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-789b-core-features__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700; /* Gold circle */
    color: #0A192F; /* Dark blue number */
    border-radius: 50%;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-index-789b-core-features__step-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-789b-core-features__step-text {
    font-size: 1em;
    color: #e0e0e0;
}

.page-index-789b-core-features__section--cta {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient for CTA */
    color: #0A192F; /* Dark blue text on gold background */
    text-align: center;
    padding: 100px 0;
}

.page-index-789b-core-features__section-title--cta {
    color: #0A192F; /* Dark blue for CTA title */
    font-size: 3em;
    margin-bottom: 20px;
}

.page-index-789b-core-features__section-intro--cta {
    color: #333; /* Darker text for CTA intro */
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-index-789b-core-features__btn--large {
    padding: 18px 45px;
    font-size: 1.3em;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-789b-core-features__hero-title {
        font-size: 2.8em;
    }
    .page-index-789b-core-features__section-title {
        font-size: 2.2em;
    }
    .page-index-789b-core-features__sub-title {
        font-size: 1.8em;
    }
    .page-index-789b-core-features__feature-grid, 
    .page-index-789b-core-features__promo-grid, 
    .page-index-789b-core-features__feature-list, 
    .page-index-789b-core-features__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-789b-core-features__hero-section,
    .page-index-789b-core-features__section--cta {
        padding: 60px 0;
    }
    .page-index-789b-core-features__hero-title {
        font-size: 2.2em;
    }
    .page-index-789b-core-features__hero-description {
        font-size: 1.1em;
    }
    .page-index-789b-core-features__section-title {
        font-size: 1.8em;
    }
    .page-index-789b-core-features__section-intro {
        font-size: 1em;
    }
    .page-index-789b-core-features__split-content {
        flex-direction: column;
    }
    .page-index-789b-core-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-789b-core-features__hero-title {
        font-size: 1.8em;
    }
    .page-index-789b-core-features__section-title {
        font-size: 1.5em;
    }
    .page-index-789b-core-features__feature-title, 
    .page-index-789b-core-features__list-title, 
    .page-index-789b-core-features__promo-title {
        font-size: 1.4em;
    }
    .page-index-789b-core-features__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-index-789b-core-features__cta-group {
        display: flex;
        flex-direction: column;
    }
}