:root {
    --super-primary-color: #F2C14E;
    --super-secondary-color: #FFD36B;
    --super-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --super-card-bg: #111111;
    --super-background-color: #0A0A0A;
    --super-text-main: #FFF6D6;
    --super-border-color: #3A2A12;
    --super-glow-color: #FFD36B;
}

.page-index-super-platform-features {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--super-text-main); /* Light text for dark background */
    background-color: var(--super-background-color);
}

/* Hero Section */
.page-index-super-platform-features__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding as per rule, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--super-background-color);
    overflow: hidden;
}

.page-index-super-platform-features__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: block;
}

.page-index-super-platform-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text readability, not changing color */
}

.page-index-super-platform-features__hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    color: var(--super-text-main);
    margin-top: -100px; /* Adjust to pull content slightly over image, but not overlap text */
}

.page-index-super-platform-features__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Clamp for responsive H1, no fixed huge size */
    font-weight: 700;
    line-height: 1.2;
    color: var(--super-secondary-color);
    margin-bottom: 20px;
}

.page-index-super-platform-features__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--super-text-main);
}

.page-index-super-platform-features__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* General Section Styling */
.page-index-super-platform-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-index-super-platform-features__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--super-primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-index-super-platform-features__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--super-text-main);
}

/* Introduction Section */
.page-index-super-platform-features__introduction-section {
    background-color: var(--super-background-color);
    padding: 60px 0;
}

/* Features Grid */
.page-index-super-platform-features__features-grid {
    background-color: var(--super-background-color);
    padding: 60px 0;
}

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

.page-index-super-platform-features__feature-card {
    background-color: var(--super-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--super-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--super-text-main);
}

.page-index-super-platform-features__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-super-platform-features__feature-icon {
    width: 100%; /* Ensure images take full width of card */
    max-width: 400px; /* Max width for images */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-index-super-platform-features__card-title {
    font-size: 1.5em;
    color: var(--super-primary-color);
    margin-bottom: 15px;
}

.page-index-super-platform-features__card-description {
    font-size: 1em;
    color: var(--super-text-main);
}

/* Why Choose Us Section */
.page-index-super-platform-features__why-choose-us-section {
    background-color: var(--super-background-color);
    padding: 60px 0;
}

.page-index-super-platform-features__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 800px;
    text-align: left;
    color: var(--super-text-main);
}

.page-index-super-platform-features__benefits-list li {
    background-color: var(--super-card-bg);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid var(--super-primary-color);
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Getting Started Section */
.page-index-super-platform-features__getting-started-section {
    background-color: var(--super-background-color);
    padding: 60px 0;
}

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

.page-index-super-platform-features__step-card {
    background-color: var(--super-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--super-border-color);
    color: var(--super-text-main);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-super-platform-features__step-card .page-index-super-platform-features__card-title {
    margin-top: 0;
}

.page-index-super-platform-features__step-card .page-index-super-platform-features__card-description {
    flex-grow: 1;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-index-super-platform-features__faq-section {
    background-color: var(--super-background-color);
    padding: 60px 0;
}

.page-index-super-platform-features__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-index-super-platform-features__faq-item {
    background-color: var(--super-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--super-border-color);
    color: var(--super-text-main);
}

.page-index-super-platform-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--super-primary-color);
    transition: background-color 0.3s ease;
}

.page-index-super-platform-features__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-index-super-platform-features__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1em;
}

.page-index-super-platform-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--super-secondary-color);
}

.page-index-super-platform-features__faq-item.active .page-index-super-platform-features__faq-toggle {
    transform: rotate(45deg);
}

.page-index-super-platform-features__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--super-text-main);
}

.page-index-super-platform-features__faq-item.active .page-index-super-platform-features__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px;
}

.page-index-super-platform-features__faq-answer p {
    margin: 0;
}

/* CTA Section */
.page-index-super-platform-features__cta-section {
    background-color: var(--super-background-color);
    padding: 60px 0;
    text-align: center;
}

/* Buttons */
.page-index-super-platform-features__btn-primary,
.page-index-super-platform-features__btn-secondary,
.page-index-super-platform-features a[class*="button"],
.page-index-super-platform-features a[class*="btn"] {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-index-super-platform-features__btn-primary {
    background: var(--super-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-index-super-platform-features__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
}

.page-index-super-platform-features__btn-secondary {
    background-color: transparent;
    color: var(--super-primary-color);
    border: 2px solid var(--super-primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-super-platform-features__btn-secondary:hover {
    background-color: var(--super-primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.4);
}

.page-index-super-platform-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-super-platform-features__hero-content {
        margin-top: -50px;
    }
    .page-index-super-platform-features__hero-title {
        font-size: clamp(2em, 5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-index-super-platform-features__hero-section {
        padding-bottom: 40px;
    }
    .page-index-super-platform-features__hero-content {
        margin-top: -30px;
        padding: 15px;
    }
    .page-index-super-platform-features__hero-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-index-super-platform-features__hero-description {
        font-size: 1em;
    }
    .page-index-super-platform-features__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
    }
    .page-index-super-platform-features__section-text {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* Images responsive */
    .page-index-super-platform-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-index-super-platform-features__section,
    .page-index-super-platform-features__card,
    .page-index-super-platform-features__container,
    .page-index-super-platform-features__feature-card,
    .page-index-super-platform-features__step-card,
    .page-index-super-platform-features__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Small top padding for video section on mobile - not used here, but for other pages */
    .page-index-super-platform-features__video-section {
        padding-top: 10px !important;
    }

    /* Buttons responsive */
    .page-index-super-platform-features__btn-primary,
    .page-index-super-platform-features__btn-secondary,
    .page-index-super-platform-features a[class*="button"],
    .page-index-super-platform-features a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-super-platform-features__hero-cta-buttons,
    .page-index-super-platform-features__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-super-platform-features__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-index-super-platform-features__faq-answer {
        padding: 0 20px;
    }
    .page-index-super-platform-features__faq-item.active .page-index-super-platform-features__faq-answer {
        padding: 10px 20px;
    }
    .page-index-super-platform-features__benefits-list li {
        padding: 10px 15px;
        font-size: 1em;
    }
}