/* style/index-platform-highlights.css */
.page-index-platform-highlights {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-index-platform-highlights__hero {
    background: linear-gradient(135deg, #0A246A 0%, #2a4a90 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-platform-highlights__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
}

.page-index-platform-highlights__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(100px);
}

.page-index-platform-highlights__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-platform-highlights__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-index-platform-highlights__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-index-platform-highlights__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A246A; /* Deep blue text */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-platform-highlights__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-platform-highlights__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-index-platform-highlights__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A246A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-index-platform-highlights__section {
    padding: 80px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-index-platform-highlights__section:nth-of-type(even) {
    background-color: #f0f4f8; /* Light blue-gray for alternating sections */
}

.page-index-platform-highlights__section-title {
    font-size: 2.5em;
    color: #0A246A; /* Deep blue title */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-platform-highlights__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-index-platform-highlights__section-intro,
.page-index-platform-highlights__section-conclusion {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 40px auto;
    color: #555;
}

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

.page-index-platform-highlights__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0A246A;
}

.page-index-platform-highlights__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-index-platform-highlights__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-platform-highlights__feature-title {
    font-size: 1.5em;
    color: #0A246A; /* Deep blue title */
    margin-bottom: 15px;
}

.page-index-platform-highlights__feature-description {
    font-size: 1em;
    color: #666;
}

.page-index-platform-highlights__inline-link {
    color: #0A246A;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-platform-highlights__inline-link:hover {
    color: #FFD700;
}

.page-index-platform-highlights__cta-banner {
    background: linear-gradient(135deg, #0A246A 0%, #000000 100%); /* Dark blue to black gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    margin-top: 50px;
}

.page-index-platform-highlights__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index-platform-highlights__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-platform-highlights__hero-title {
        font-size: 2.8em;
    }
    .page-index-platform-highlights__section-title {
        font-size: 2em;
    }
    .page-index-platform-highlights__cta-title {
        font-size: 2.2em;
    }
    .page-index-platform-highlights__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-platform-highlights__hero {
        padding: 80px 0;
    }
    .page-index-platform-highlights__hero-title {
        font-size: 2.2em;
    }
    .page-index-platform-highlights__hero-description {
        font-size: 1em;
    }
    .page-index-platform-highlights__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-platform-highlights__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-index-platform-highlights__section {
        padding: 60px 0;
    }
    .page-index-platform-highlights__section-title {
        font-size: 1.8em;
    }
    .page-index-platform-highlights__section-intro,
    .page-index-platform-highlights__section-conclusion {
        font-size: 0.95em;
    }
    .page-index-platform-highlights__feature-title {
        font-size: 1.3em;
    }
    .page-index-platform-highlights__cta-banner {
        padding: 60px 0;
    }
    .page-index-platform-highlights__cta-title {
        font-size: 1.8em;
    }
    .page-index-platform-highlights__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-platform-highlights__hero-title {
        font-size: 1.8em;
    }
    .page-index-platform-highlights__section-title {
        font-size: 1.5em;
    }
    .page-index-platform-highlights__cta-title {
        font-size: 1.5em;
    }
    .page-index-platform-highlights__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-index-platform-highlights__features-grid {
        grid-template-columns: 1fr;
    }
}