/* ====================================================
   sections.css — Common section styles
   ==================================================== */

/* Services section */
.services {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 144px 24px 48px;
    box-sizing: border-box;
    scroll-snap-align: start;
}

.services__features-slot {
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Show SVG icons in services section */
.services .feature__icon--hero {
    display: block;
}

/* Service descriptions styling */
.services .feature__description {
    display: block;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 400;
    line-height: 20px;
    color: var(--a-color-beige-500);
    background: var(--a-color-primary);
    padding: 24px;
    margin: 16px 0 8px;
    border-radius: 32px;
}

/* Service lists styling */
.services .feature__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    border-radius: 16px;
}

.services .feature__item {
    font-size: clamp(13px, 1vw, 14px);
    color: var(--a-color-beige-800);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px 8px 16px;
    color: var(--a-color-beige-700);
    font-weight: 500;
    line-height: 32px;
    background: var(--a-color-primary);
    border-radius: 96px;
}

.services .feature__item:last-child {
    margin-bottom: 0;
}

.services .feature__bullet {
    font-family: var(--a-font-mono);
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .feature__bullet img {
    width: 16px;
    height: 16px;
    display: block;
}

/* Color-coded bullets for each feature */
.services .feature[data-icon="atom"] .feature__bullet {
    color: var(--a-color-blue-400);
}

.services .feature[data-icon="scale"] .feature__bullet {
    color: var(--a-color-green-400);
}

.services .feature[data-icon="agile"] .feature__bullet {
    color: var(--a-color-yellow-400);
}

.services .feature[data-icon="future"] .feature__bullet {
    color: var(--a-color-orange-400);
}

/* Add more sections here as needed */

@media (max-width: 991px) {
    .services {
        height: 100vh;
        padding: 120px 16px 16px;
    }
}

@media (max-width: 768px) {
    .services {
        height: auto;
        min-height: 100vh;
        padding: 120px 12px 12px;
    }

    .services .feature__description {
        padding: 20px;
        margin: 12px 0 6px;
        border-radius: 24px;
        font-size: 14px;
        line-height: 18px;
    }

    .services .feature__list {
        gap: 6px;
    }
}

@media (max-width: 600px) {
    .services {
        padding: 100px 12px 12px;
    }

    .services .feature__description {
        padding: 16px;
        font-size: 13px;
        line-height: 17px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 90px 10px 10px;
    }

    .services .feature__description {
        padding: 14px;
        margin: 10px 0 4px;
        border-radius: 20px;
        font-size: 12px;
        line-height: 16px;
    }

    .services .feature__list {
        gap: 4px;
    }

    .services .feature__item {
        font-size: 11px;
    }
}

@media (max-width: 375px) {
    .services {
        padding: 80px 8px 8px;
    }

    .services .feature__description {
        padding: 12px;
        font-size: 11px;
        line-height: 15px;
    }
}

/* Desktop optimizations */
@media (min-width: 1280px) {
    .services {
        padding: 120px 16px 16px;
    }
}

@media (min-width: 1440px) {
    .services {
        padding: 125px 24px 24px;
    }
}

@media (min-width: 1920px) {
    .services {
        padding: 192px 48px 48px;
    }
}

@media (min-width: 2560px) {
    .services {
        padding: 224px 64px 64px;
    }
}

@media (min-width: 3840px) {
    .services {
        padding: 256px 80px 80px;
    }
}