/* =========================================
   Services Page – MM Stimme Modern
   ========================================= */

.services-page {
    background:
        radial-gradient(circle at top right, rgba(0, 102, 102, 0.05), transparent 28%),
        linear-gradient(180deg, #f8fbfb 0%, #ffffff 100%);
}

.services-page,
.services-page * {
    box-sizing: border-box;
}

/* =========================================
   Shared
   ========================================= */

.services-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 102, 102, 0.08);
    color: #006666;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-kicker-light {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* =========================================
   Hero
   ========================================= */

.services-hero {
    padding: 88px 0 34px;
}

.services-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111111;
}

.services-lead {
    margin: 0 auto;
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #5b6d6d;
}

/* =========================================
   Services Grid
   ========================================= */

.services-grid-section {
    padding: 28px 0 72px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.services-grid .services-card {
    grid-column: span 2;
}

.services-grid .services-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.services-grid .services-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.services-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 258px;
    padding: 26px 22px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfefe 100%);
    border: 1px solid rgba(0, 102, 102, 0.06);
    border-radius: 26px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease;
}

.services-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 102, 102, 0.10);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
}

.services-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(180deg, #f4fbfb 0%, #eef7f7 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.services-icon img {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    display: block;
    margin: 0 auto;
}

.services-card h2 {
    margin: 0 0 10px;
    font-size: 1.28rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #114444;
}

.services-card p {
    margin: 0 0 18px;
    max-width: 32ch;
    font-size: 0.98rem;
    line-height: 1.62;
    color: #637676;
}

.services-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f5f9f9;
    color: #0f5f5f;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(0, 102, 102, 0.06);
    transition:
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.services-btn:hover {
    background: #edf5f5;
    color: #004f4f;
    border-color: rgba(0, 102, 102, 0.10);
    transform: translateY(-1px);
}

/* =========================================
   Pricing
   ========================================= */

.services-pricing-section {
    padding: 0 0 72px;
}

.services-pricing-shell {
    background: #f7f9f9;
    border: 1px solid rgba(0, 102, 102, 0.08);
    border-radius: 34px;
    padding: 42px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.services-pricing-intro {
    max-width: 820px;
    margin: 0 auto 36px;
    text-align: center;
}

.services-pricing-title {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111111;
}

.services-pricing-lead {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #5b6d6d;
}

.services-price-block {
    margin-bottom: 40px;
}

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

.services-price-block h2 {
    margin: 0 0 18px;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111111;
}

.services-note {
    margin: 14px 0 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #637676;
}

.services-table-wrap {
    overflow-x: auto;
    border-radius: 22px;
    border: 1px solid rgba(0, 102, 102, 0.10);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.services-table-wrap table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 1rem;
    color: #243535;
}

.services-table-wrap th,
.services-table-wrap td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(0, 102, 102, 0.08);
}

.services-table-wrap thead th {
    background: #006666;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
}

.services-table-wrap tbody tr:nth-child(even) {
    background: #f7fbfb;
}

.services-table-wrap tbody tr:last-child td {
    border-bottom: none;
}

.services-highlight {
    font-weight: 700;
    color: #006666;
}

/* =========================================
   CTA
   ========================================= */

.services-cta-section {
    padding: 0 0 88px;
}

.services-cta-box {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
    align-items: center;
    padding: 40px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, #006666 0%, #004c4c 100%);
    box-shadow: 0 24px 60px rgba(0, 76, 76, 0.22);
}

.services-cta-text h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.2;
    color: #ffffff;
}

.services-cta-text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #ffffff;
}

.services-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.services-cta-actions .mm-btn,
.services-cta-actions .mm-btn-primary,
.services-cta-actions .mm-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.services-cta-actions .mm-btn-primary {
    background: #ffffff;
    color: var(--ci-primary);
    border: 1px solid #ffffff;
}

.services-cta-actions .mm-btn-primary:hover {
    background: #f1f7f7;
    color: var(--ci-primary-dark);
}

.services-cta-actions .mm-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.services-cta-actions .mm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid .services-card,
    .services-grid .services-card:nth-child(4),
    .services-grid .services-card:nth-child(5) {
        grid-column: auto;
    }

    .services-cta-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-hero {
        padding: 54px 0 30px;
    }

    .services-grid-section,
    .services-pricing-section,
    .services-cta-section {
        padding-bottom: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-card {
        min-height: auto;
        padding: 24px 20px 22px;
        border-radius: 22px;
    }

    .services-icon {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .services-icon img {
        width: 36px;
        height: 36px;
    }

    .services-pricing-shell {
        padding: 28px 16px;
        border-radius: 24px;
    }

    .services-cta-box {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .services-lead,
    .services-pricing-lead,
    .services-cta-text p {
        font-size: 16px;
    }
}