/* =========================================================
   T&A HAUSMEISTERSERVICE
   GRUNDRISS – PREMIUM LEISTUNGSBEREICH
========================================================= */

.ta-plan-service {
    position: relative;
    width: 100%;
    padding: 90px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 35%,
            rgba(244, 185, 40, 0.055),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf9f6 100%
        );
}


/* =========================================================
   DEZENTE HINTERGRUNDGRAFIK
========================================================= */

.ta-plan-service::after {
    content: "";

    position: absolute;
    right: -260px;
    bottom: -330px;

    width: 720px;
    height: 720px;

    border: 1px solid rgba(30, 32, 34, 0.025);
    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(30, 32, 34, 0.012),
        0 0 0 180px rgba(30, 32, 34, 0.008);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.ta-plan-service__container {
    position: relative;
    z-index: 2;

    width: min(1220px, calc(100% - 48px));

    margin: 0 auto;
}


/* =========================================================
   GRID
========================================================= */

.ta-plan-service__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(0, 0.82fr);

    gap: 68px;

    align-items: center;
}


/* =========================================================
   LINKE SEITE
========================================================= */

.ta-plan-service__media {
    position: relative;
    min-width: 0;
}


/* =========================================================
   BILD
========================================================= */

.ta-plan-service__image {
    position: relative;

    width: 100%;

    overflow: hidden;

    border: 1px solid #e9e5dc;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(28, 31, 33, 0.12),
        0 6px 18px rgba(28, 31, 33, 0.05);
}


/* Goldene Linie oben */

.ta-plan-service__image::before {
    content: "";

    position: absolute;

    z-index: 3;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #f4b928,
            #d89b00
        );
}


/* Bild selbst */

.ta-plan-service__image img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 3 / 2;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.55s ease;
}


.ta-plan-service__image:hover img {
    transform: scale(1.018);
}


/* =========================================================
   BILD-LABEL
========================================================= */

.ta-plan-service__image-label {
    position: absolute;

    z-index: 4;

    left: 25px;
    bottom: 25px;

    max-width: 330px;

    padding: 15px 19px;

    border-left: 4px solid #f4b928;
    border-radius: 7px;

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 15px 38px rgba(23, 27, 29, 0.14);

    backdrop-filter: blur(8px);
}


.ta-plan-service__image-label span,
.ta-plan-service__image-label strong {
    display: block;
}


.ta-plan-service__image-label span {
    margin-bottom: 3px;

    color: #aa7800;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.ta-plan-service__image-label strong {
    color: #292b2d;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.35;
}


/* =========================================================
   DREI INFOS UNTER DEM BILD
========================================================= */

.ta-plan-service__meta {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 22px;

    border-top:
        1px solid #e6e2d9;

    border-bottom:
        1px solid #e6e2d9;
}


.ta-plan-service__meta-item {
    position: relative;

    display: flex;

    gap: 12px;

    align-items: center;

    padding: 18px 17px;
}


.ta-plan-service__meta-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 25%;
    right: 0;

    width: 1px;
    height: 50%;

    background: #e1ddd3;
}


.ta-plan-service__meta-number {
    color: #f4b928;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 0.05em;
}


.ta-plan-service__meta-item strong,
.ta-plan-service__meta-item small {
    display: block;
}


.ta-plan-service__meta-item strong {
    margin-bottom: 2px;

    color: #282a2c;

    font-size: 12px;
    font-weight: 800;
}


.ta-plan-service__meta-item small {
    color: #777d80;

    font-size: 10.5px;

    line-height: 1.35;
}


/* =========================================================
   RECHTE TEXTSEITE
========================================================= */

.ta-plan-service__content {
    width: 100%;
    max-width: 560px;
}


/* =========================================================
   KLEINE ÜBERSCHRIFT
========================================================= */

.ta-plan-service__eyebrow {
    position: relative;

    display: inline-block;

    margin-bottom: 14px;

    padding-left: 37px;

    color: #ad7b00;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.ta-plan-service__eyebrow::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 25px;
    height: 2px;

    background: #f4b928;

    transform:
        translateY(-50%);
}


/* =========================================================
   HAUPTÜBERSCHRIFT
========================================================= */

.ta-plan-service__title {
    margin: 0 0 24px !important;

    color: #292b2d !important;

    /*
     * bewusst kleiner als vorher
     * vorher max. ca. 54px
     */

    font-size:
        clamp(36px, 3.1vw, 46px) !important;

    font-weight: 800 !important;

    line-height: 1.05 !important;

    letter-spacing: -0.035em !important;
}


.ta-plan-service__title span {
    display: block;

    color: #f4b928;
}


/* =========================================================
   EINLEITUNG
========================================================= */

.ta-plan-service__lead {
    margin:
        0 0 13px !important;

    color: #292b2d !important;

    font-size: 16px !important;

    font-weight: 600;

    line-height: 1.65 !important;
}


/* =========================================================
   BESCHREIBUNG
========================================================= */

.ta-plan-service__text {
    margin:
        0 0 27px !important;

    color: #686f73 !important;

    font-size: 13.5px !important;

    line-height: 1.7 !important;
}


/* =========================================================
   VORTEILE
   2 SPALTEN / 2 REIHEN
========================================================= */

.ta-plan-service__features {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;

    margin: 27px 0 0;
}


/* =========================================================
   VORTEILSKARTE
========================================================= */

.ta-plan-service__feature {
    display: flex;

    gap: 12px;

    align-items: flex-start;

    min-height: 118px;

    padding: 17px 16px;

    border:
        1px solid rgba(40, 42, 44, 0.08);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfaf7 100%
        );

    box-shadow:
        0 5px 18px rgba(25, 30, 33, 0.025);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.ta-plan-service__feature:hover {
    transform: translateY(-3px);

    border-color:
        rgba(244, 185, 40, 0.35);

    box-shadow:
        0 12px 28px rgba(25, 30, 33, 0.07);
}


/* =========================================================
   CHECKMARK
========================================================= */

.ta-plan-service__check {
    display: grid;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    margin-top: 1px;

    place-items: center;

    border-radius: 50%;

    color: #151515;

    background: #f4b928;

    box-shadow:
        0 5px 13px rgba(244, 185, 40, 0.21);

    font-size: 12px;
    font-weight: 900;
}


/* =========================================================
   VORTEIL TITEL
========================================================= */

.ta-plan-service__feature strong {
    display: block;

    margin-bottom: 5px;

    color: #292b2d;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.35;
}


/* =========================================================
   VORTEIL BESCHREIBUNG
========================================================= */

.ta-plan-service__feature p {
    margin: 0 !important;

    color: #747a7e !important;

    font-size: 11.5px !important;

    line-height: 1.5 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .ta-plan-service__grid {
        grid-template-columns:
            1.05fr
            0.95fr;

        gap: 48px;
    }


    .ta-plan-service__title {
        font-size:
            38px !important;
    }


    .ta-plan-service__features {
        grid-template-columns: 1fr;
    }


    .ta-plan-service__meta {
        grid-template-columns: 1fr;
    }


    .ta-plan-service__meta-item:not(:last-child)::after {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: 1px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 780px) {

    .ta-plan-service {
        padding:
            62px 0 75px;
    }


    .ta-plan-service__container {
        width:
            calc(100% - 34px);
    }


    .ta-plan-service__grid {
        grid-template-columns: 1fr;

        gap: 62px;
    }


    .ta-plan-service__content {
        max-width: 100%;
    }


    .ta-plan-service__title {
        font-size:
            34px !important;
    }


    .ta-plan-service__lead {
        font-size:
            15px !important;
    }


    .ta-plan-service__features {
        grid-template-columns: 1fr;

        gap: 11px;
    }


    .ta-plan-service__feature {
        min-height: 0;
    }


    .ta-plan-service__meta {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .ta-plan-service__meta-item {
        padding:
            14px 10px;
    }


    .ta-plan-service__meta-item:not(:last-child)::after {
        top: 25%;
        right: 0;
        left: auto;
        bottom: auto;

        width: 1px;
        height: 50%;
    }

}


/* =========================================================
   KLEINES SMARTPHONE
========================================================= */

@media (max-width: 520px) {

    .ta-plan-service__image {
        border-radius: 14px;
    }


    .ta-plan-service__image-label {
        left: 12px;
        right: 12px;
        bottom: 12px;

        max-width: none;
    }


    .ta-plan-service__meta {
        grid-template-columns: 1fr;
    }


    .ta-plan-service__meta-item {
        padding:
            12px 4px;
    }


    .ta-plan-service__meta-item:not(:last-child)::after {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: 1px;
    }


    .ta-plan-service__title {
        font-size:
            32px !important;
    }

}