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

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

/* Hero Section */
.page-index-platform-highlights__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-platform-highlights__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.2), transparent 70%);
    transform: rotate(15deg);
    z-index: 0;
}

.page-index-platform-highlights__hero-section .page-index-platform-highlights__container {
    position: relative;
    z-index: 1;
}

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

.page-index-platform-highlights__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e9ecef;
}

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

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

.page-index-platform-highlights__btn--primary {
    background-color: #ffc107;
    color: #007bff;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

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

.page-index-platform-highlights__btn--secondary {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-platform-highlights__btn--secondary:hover {
    background-color: #ffc107;
    color: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-index-platform-highlights__btn--tertiary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-platform-highlights__btn--tertiary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-index-platform-highlights__features-section {
    padding: 80px 0;
    text-align: center;
}

.page-index-platform-highlights__section--light-bg {
    background-color: #f8f9fa;
    color: #333;
}

.page-index-platform-highlights__section--dark-bg {
    background-color: #007bff;
    color: #fff;
}

.page-index-platform-highlights__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #007bff;
    font-weight: bold;
}

.page-index-platform-highlights__section--dark-bg .page-index-platform-highlights__section-title,
.page-index-platform-highlights__section--dark-bg .page-index-platform-highlights__cta-title {
    color: #ffc107;
}

.page-index-platform-highlights__section-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #555;
}

.page-index-platform-highlights__section--dark-bg .page-index-platform-highlights__section-description,
.page-index-platform-highlights__section--dark-bg .page-index-platform-highlights__cta-description {
    color: #e9ecef;
}

.page-index-platform-highlights__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-index-platform-highlights__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #007bff;
}

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

.page-index-platform-highlights__feature-icon {
    width: 100%; /* Make images fill container */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Cover the area, cropping if necessary */
    margin-bottom: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.page-index-platform-highlights__feature-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-platform-highlights__feature-text {
    font-size: 1.1em;
    color: #495057;
    line-height: 1.8;
}

/* CTA Section */
.page-index-platform-highlights__cta-section {
    padding: 100px 0;
    text-align: center;
}

.page-index-platform-highlights__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-platform-highlights__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-index-platform-highlights__cta-group {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-platform-highlights__hero-title {
        font-size: 2.8em;
    }
    .page-index-platform-highlights__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-platform-highlights__section-title {
        font-size: 2.2em;
    }
    .page-index-platform-highlights__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-platform-highlights__hero-title {
        font-size: 2.2em;
    }
    .page-index-platform-highlights__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-platform-highlights__hero-section,
    .page-index-platform-highlights__features-section,
    .page-index-platform-highlights__cta-section {
        padding: 60px 0;
    }
    .page-index-platform-highlights__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-index-platform-highlights__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-platform-highlights__hero-cta-group,
    .page-index-platform-highlights__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-platform-highlights__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-index-platform-highlights__section-title {
        font-size: 1.8em;
    }
    .page-index-platform-highlights__section-description {
        font-size: 1em;
    }
    .page-index-platform-highlights__cta-title {
        font-size: 2em;
    }
    .page-index-platform-highlights__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-platform-highlights__hero-title {
        font-size: 1.8em;
    }
    .page-index-platform-highlights__hero-subtitle {
        font-size: 1em;
    }
    .page-index-platform-highlights__feature-title {
        font-size: 1.5em;
    }
    .page-index-platform-highlights__feature-text {
        font-size: 0.95em;
    }
}