/* -------------------------------------------------------------
   #1 HERO
   ------------------------------------------------------------- */

.services-hero {
    padding: 78px 0 46px;
    background:
        radial-gradient(circle at top right, rgba(200, 171, 55, 0.16), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.services-hero__inner {
    max-width: 860px;
}

/* -------------------------------------------------------------
   #2 GRID
   ------------------------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.service-card {
    height: 100%;
    border-radius: 26px;
}

.service-card--highlight {
    background: linear-gradient(180deg, #0f172a 0%, #1d2940 100%);
    color: #ffffff;
}

.service-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 171, 55, 0.14);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.service-card--highlight .service-card__icon {
    background: rgba(255, 255, 255, 0.12);
}

.service-card__title {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-card--highlight .service-card__title {
    color: #ffffff;
}

.service-card__text {
    color: #475569;
    margin-bottom: 18px;
}

.service-card--highlight .service-card__text {
    color: rgba(255, 255, 255, 0.88);
}

.service-card__list {
    list-style: none;
    margin-bottom: 20px;
}

.service-card__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #334155;
    font-weight: 500;
}

.service-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #06b6d4;
    font-size: 1.2rem;
    font-weight: 800;
}

.service-card--highlight .service-card__list li {
    color: rgba(255, 255, 255, 0.92);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #06b6d4;
    text-decoration: none;
    font-weight: 800;
}

.service-card__link:hover {
    color: #093d25;
}

.service-card--highlight .service-card__link {
    color: #06b6d4;
}

.service-card--highlight .service-card__link:hover {
    color: #ffffff;
}

/* -------------------------------------------------------------
   #3 WHY
   ------------------------------------------------------------- */

.services-why {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-section-head {
    max-width: 820px;
    margin: 0 auto 40px;
}

.services-why-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.14rem;
}

.services-why-card p {
    margin: 0;
    color: #475569;
}

/* -------------------------------------------------------------
   #4 CTA
   ------------------------------------------------------------- */

.services-cta__box {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.services-cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* -------------------------------------------------------------
   #5 TABLET
   ------------------------------------------------------------- */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------
   #6 MOBILE
   ------------------------------------------------------------- */

@media (max-width: 768px) {
    .services-hero {
        padding: 62px 0 34px;
    }

    .service-card {
        border-radius: 22px;
    }

    .services-cta__box {
        padding: 24px;
        border-radius: 22px;
    }

    .services-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
/* -------------------------------------------------------------
   # INLINE ICON SERVICES
------------------------------------------------------------- */

.home-tech-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #0f172a;
}

.home-tech-inline-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 137, 255, 0.12);
    font-size: 1.1rem;
}

/* Nur dieser Titel wird weiß */
.home-tech-title--light {
    color: #06b6d4;
}

/* Optional: Icon auch anpassen (bei dunklem Hintergrund besser) */
.home-tech-title--light .home-tech-inline-icon {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}