.sp-megamenu-parent>li>a, .sp-megamenu-parent>li>span{font-size:1.2rem}
.sp-megamenu-parent>li:hover>a{color:#92bc4a}
#sp-header a.menu-cta {
    display: inline-block !important;
    height: auto !important;
    line-height: 1 !important;
    padding: 12px 18px !important;
    background: #92bc4a;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin: -10px 0 0 15px !important;
    vertical-align: middle;
}
@media (max-width: 767px) {
    #sp-header {
        height: 75px;
    }
  #sp-header .container{padding-top:10px}
}
.btn-primary {
    border: 2px solid rgba(255, 255, 255, .25);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
    background-color: #92bc4a;
}
.btn-primary:hover, .sppb-btn-primary:hover
{
    border: 2px solid rgba(255, 255, 255, .25);
    background:#fff;
    color:#000;
}
a{color:#0e6fa7;}

a:hover,a:active,a:target,a:focus{color:#178dcb;}
#sp-bottom,#sp-footer{background:#17242e}
.legal-page h1{margin-bottom:15px}
.legal-page h3{margin-top:40px;margin-bottom:25px}
/* =========================================================
   ALL IN 1 ENTRÜMPELUNGEN – HERO
   ========================================================= */

:root {
    --a1-blue: #178dcb;
    --a1-blue-dark: #0e6fa7;
    --a1-blue-light: #e9f5fb;

    --a1-green: #92bc4a;
    --a1-green-dark: #739d2f;

    --a1-dark: #17242e;
    --a1-text: #40515e;
    --a1-muted: #6d7b85;

    --a1-background: #f4f8fa;
    --a1-white: #ffffff;
    --a1-border: #dce6eb;

    --a1-shadow:
        0 25px 70px rgba(23, 36, 46, 0.14);
}

/* Hauptbereich */

.a1-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(75px, 9vw, 135px) 24px;
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(23, 141, 203, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            var(--a1-background) 100%
        );
}

.a1-hero__container {
    position: relative;
    z-index: 2;

    display: grid;
    width: min(100%, 1240px);
    margin-inline: auto;

    align-items: center;
    gap: clamp(45px, 7vw, 95px);

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, 0.92fr);
}

/* Dekoration */

.a1-hero__decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.a1-hero__decoration--one {
    top: -250px;
    right: -180px;

    width: 620px;
    height: 620px;

    border: 90px solid rgba(23, 141, 203, 0.055);
}

.a1-hero__decoration--two {
    bottom: -120px;
    left: 42%;

    width: 220px;
    height: 220px;

    background: rgba(146, 188, 74, 0.08);
}

/* Textbereich */

.a1-hero__content {
    position: relative;
    z-index: 3;
}

.a1-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin: 0 0 20px;

    color: var(--a1-blue-dark);

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.a1-hero__eyebrow::before {
    width: 28px;
    height: 3px;

    border-radius: 99px;
    background: var(--a1-green);

    content: "";
}

.a1-hero h1 {
    max-width: 780px;
    margin: 0 0 27px;

    color: var(--a1-dark);

    font-family:
        Manrope,
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: clamp(2.65rem, 5.1vw, 4.9rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.a1-hero h1 span {
    display: block;
    color: var(--a1-blue);
}

.a1-hero__text {
    max-width: 700px;
    margin: 0 0 29px;

    color: var(--a1-text);

    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    line-height: 1.75;
}

/* Vorteile */

.a1-hero__benefits {
    display: grid;
    gap: 11px;

    margin: 0 0 34px;
    padding: 0;

    list-style: none;
}

.a1-hero__benefits li {
    position: relative;

    padding-left: 34px;

    color: var(--a1-dark);

    font-size: 1rem;
    font-weight: 700;
}

.a1-hero__benefits li::before {
    position: absolute;
    top: 1px;
    left: 0;

    display: grid;
    width: 22px;
    height: 22px;

    place-items: center;

    color: var(--a1-white);
    border-radius: 50%;
    background: var(--a1-green);

    font-size: 0.75rem;
    font-weight: 900;

    content: "✓";
}

/* Buttons */

.a1-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.a1-button {
    display: inline-flex;
    min-height: 54px;

    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 15px 25px;

    border: 2px solid transparent;
    border-radius: 999px;

    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.a1-button:hover,
.a1-button:focus-visible {
    transform: translateY(-2px);
    text-decoration: none;
}

.a1-button--primary {
    color: var(--a1-white);
    background: var(--a1-blue);
    box-shadow:
        0 12px 28px rgba(23, 141, 203, 0.25);
}

.a1-button--primary:hover,
.a1-button--primary:focus-visible {
    color: var(--a1-white);
    background: var(--a1-blue-dark);
    box-shadow:
        0 15px 34px rgba(23, 141, 203, 0.32);
}

.a1-button--secondary {
    color: var(--a1-dark);
    border-color: var(--a1-border);
    background: rgba(255, 255, 255, 0.86);
}

.a1-button--secondary:hover,
.a1-button--secondary:focus-visible {
    color: var(--a1-blue-dark);
    border-color: var(--a1-blue);
    background: var(--a1-white);
}

.a1-button__phone {
    color: var(--a1-green-dark);
    font-size: 1.1rem;
}

.a1-hero__location {
    margin: 18px 0 0;

    color: var(--a1-muted);

    font-size: 0.91rem;
    font-weight: 600;
}

/* Bildbereich */

.a1-hero__visual {
    position: relative;
}

.a1-hero__image-wrapper {
    position: relative;
    padding: 16px 16px 0 0;
}

.a1-hero__image-wrapper::before {
    position: absolute;
    top: 0;
    right: 0;

    width: calc(100% - 32px);
    height: calc(100% - 20px);

    border-radius: 29px;
    background: var(--a1-blue);

    content: "";
}

.a1-hero__image {
    position: relative;
    z-index: 2;

    display: block;
    width: 100%;
    min-height: 560px;

    border-radius: 26px;

    object-fit: cover;
    object-position: center;

    box-shadow: var(--a1-shadow);
}

/* Logo-Box */

.a1-hero__logo-card {
    position: absolute;
    z-index: 4;

    top: 42px;
    left: -38px;

    display: grid;
    min-width: 185px;
    min-height: 150px;

    place-items: center;

    padding: 17px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(23, 36, 46, 0.96),
            rgba(23, 141, 203, 0.9)
        );

    box-shadow:
        0 18px 46px rgba(23, 36, 46, 0.26);
}

.a1-hero__logo-card img {
    display: block;
    max-width: 155px;
    max-height: 120px;
    object-fit: contain;
}

/* Besenrein-Box */

.a1-hero__service-card {
    position: absolute;
    z-index: 5;

    right: -31px;
    bottom: 35px;

    display: flex;
    max-width: 310px;

    align-items: center;
    gap: 14px;

    padding: 18px 21px;

    border: 1px solid rgba(23, 141, 203, 0.13);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 20px 55px rgba(23, 36, 46, 0.17);

    backdrop-filter: blur(12px);
}

.a1-hero__service-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    place-items: center;

    color: var(--a1-white);
    border-radius: 50%;
    background: var(--a1-green);

    font-size: 1.05rem;
    font-weight: 900;
}

.a1-hero__service-card div {
    display: grid;
    gap: 2px;
}

.a1-hero__service-card strong {
    color: var(--a1-dark);
    font-size: 1rem;
}

.a1-hero__service-card div span {
    color: var(--a1-muted);
    font-size: 0.85rem;
}

/* Fokusdarstellung */

.a1-button:focus-visible {
    outline: 3px solid rgba(23, 141, 203, 0.25);
    outline-offset: 4px;
}

/* Tablet */

@media (max-width: 1050px) {

    .a1-hero__container {
        gap: 52px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(340px, 0.85fr);
    }

    .a1-hero__logo-card {
        left: -20px;
    }

    .a1-hero__service-card {
        right: -10px;
    }

}

/* Mobile / Tablet hochkant */

@media (max-width: 850px) {

    .a1-hero {
        padding-top: 72px;
        padding-bottom: 82px;
    }

    .a1-hero__container {
        grid-template-columns: 1fr;
    }

    .a1-hero__content {
        order: 1;
    }

    .a1-hero__visual {
        order: 2;
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .a1-hero__image {
        min-height: 500px;
    }

    .a1-hero__logo-card {
        top: 30px;
        left: -10px;
    }

    .a1-hero__service-card {
        right: 5px;
        bottom: 28px;
    }

}

/* Smartphone */

@media (max-width: 600px) {

    .a1-hero {
        padding: 55px 18px 70px;
    }

    .a1-hero h1 {
        font-size: clamp(2.25rem, 10.5vw, 3.1rem);
    }

    .a1-hero__eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.09em;
    }

    .a1-hero__actions {
        flex-direction: column;
    }

    .a1-button {
        width: 100%;
    }

    .a1-hero__image-wrapper {
        padding: 10px 10px 0 0;
    }

    .a1-hero__image {
        min-height: 390px;
        border-radius: 21px;
    }

    .a1-hero__image-wrapper::before {
        border-radius: 23px;
    }

    .a1-hero__logo-card {
        top: 21px;
        left: 10px;

        min-width: 130px;
        min-height: 105px;

        padding: 11px;
        border-radius: 14px;
    }

    .a1-hero__logo-card img {
        max-width: 108px;
        max-height: 90px;
    }

    .a1-hero__service-card {
        position: relative;
        right: auto;
        bottom: auto;

        max-width: none;
        margin: -29px 12px 0;

        border-radius: 14px;
    }

}

/* =========================================================
   ALL IN 1 ENTRÜMPELUNGEN – VERTRAUENSLEISTE
   ========================================================= */

.a1-trust {
    position: relative;
    z-index: 5;

    padding: 0 24px;

    background: var(--a1-dark, #17242e);
}

.a1-trust__container {
    display: grid;
    width: min(100%, 1240px);
    margin-inline: auto;

    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.a1-trust__item {
    display: grid;
    min-height: 132px;

    align-items: center;
    gap: 16px;

    padding: 28px 25px;

    border-right: 1px solid rgba(255, 255, 255, 0.11);

    grid-template-columns: 48px minmax(0, 1fr);
}

.a1-trust__item:last-child {
    border-right: 0;
}

.a1-trust__icon {
    display: grid;
    width: 48px;
    height: 48px;

    place-items: center;

    color: #ffffff;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            var(--a1-blue, #178dcb),
            var(--a1-blue-dark, #0e6fa7)
        );

    box-shadow:
        0 10px 25px rgba(23, 141, 203, 0.24);

    font-size: 1.2rem;
    font-weight: 900;
}

.a1-trust__content h2 {
    margin: 0 0 5px;

    color: #ffffff;

    font-family:
        Manrope,
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.a1-trust__content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.88rem;
    line-height: 1.5;
}

/* Dezenter grüner Akzent */

.a1-trust__item:first-child .a1-trust__icon,
.a1-trust__item:last-child .a1-trust__icon {
    background:
        linear-gradient(
            145deg,
            var(--a1-green, #92bc4a),
            var(--a1-green-dark, #739d2f)
        );

    box-shadow:
        0 10px 25px rgba(146, 188, 74, 0.2);
}

/* Hover nur auf Geräten mit Maus */

@media (hover: hover) {

    .a1-trust__item {
        transition:
            background-color 180ms ease,
            transform 180ms ease;
    }

    .a1-trust__item:hover {
        background: rgba(255, 255, 255, 0.035);
    }

    .a1-trust__item:hover .a1-trust__icon {
        transform: translateY(-3px);
    }

    .a1-trust__icon {
        transition: transform 180ms ease;
    }

}

/* Tablet */

@media (max-width: 1020px) {

    .a1-trust__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .a1-trust__item:nth-child(2) {
        border-right: 0;
    }

    .a1-trust__item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

}

/* Smartphone */

@media (max-width: 620px) {

    .a1-trust {
        padding-inline: 18px;
    }

    .a1-trust__container {
        grid-template-columns: 1fr;
    }

    .a1-trust__item {
        min-height: auto;

        padding: 22px 4px;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);

        grid-template-columns: 44px minmax(0, 1fr);
    }

    .a1-trust__item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .a1-trust__item:last-child {
        border-bottom: 0;
    }

    .a1-trust__icon {
        width: 44px;
        height: 44px;

        border-radius: 13px;
    }

}

/* =========================================================
   ALL IN 1 ENTRÜMPELUNGEN – LEISTUNGEN
   ========================================================= */

.a1-services {
    position: relative;
    overflow: hidden;

    padding:
        clamp(80px, 9vw, 125px)
        24px;

    background: #ffffff;
}

.a1-services::before {
    position: absolute;
    top: 80px;
    left: -170px;

    width: 340px;
    height: 340px;

    border: 70px solid rgba(23, 141, 203, 0.035);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.a1-services__container {
    position: relative;
    z-index: 2;

    width: min(100%, 1240px);
    margin-inline: auto;
}

/* Überschrift */

.a1-services__header {
    width: min(100%, 760px);
    margin: 0 auto clamp(42px, 5vw, 62px);

    text-align: center;
}

.a1-services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin: 0 0 15px;

    color: var(--a1-blue-dark, #0e6fa7);

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.a1-services__eyebrow::before,
.a1-services__eyebrow::after {
    width: 24px;
    height: 3px;

    border-radius: 99px;
    background: var(--a1-green, #92bc4a);

    content: "";
}

.a1-services__header h2 {
    margin: 0 0 20px;

    color: var(--a1-dark, #17242e);

    font-family:
        Manrope,
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: clamp(2.15rem, 4vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.a1-services__intro {
    margin: 0;

    color: var(--a1-text, #40515e);

    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.75;
}

/* Kartenraster */

.a1-services__grid {
    display: grid;
    gap: 22px;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

/* Einzelne Karte */

.a1-service-card {
    position: relative;
    overflow: hidden;

    display: flex;
    min-height: 330px;

    flex-direction: column;

    padding: 31px;

    border: 1px solid var(--a1-border, #dce6eb);
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(23, 36, 46, 0.045);

    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.a1-service-card::after {
    position: absolute;
    right: -55px;
    bottom: -55px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: rgba(23, 141, 203, 0.045);

    content: "";
    pointer-events: none;

    transition:
        background-color 200ms ease,
        transform 200ms ease;
}

.a1-service-card:hover {
    transform: translateY(-6px);

    border-color: rgba(23, 141, 203, 0.36);

    box-shadow:
        0 22px 55px rgba(23, 36, 46, 0.11);
}

.a1-service-card:hover::after {
    transform: scale(1.2);

    background: rgba(146, 188, 74, 0.08);
}

/* Icon */

.a1-service-card__icon {
    display: grid;
    width: 58px;
    height: 58px;

    margin-bottom: 24px;

    place-items: center;

    color: var(--a1-blue, #178dcb);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(23, 141, 203, 0.13),
            rgba(23, 141, 203, 0.06)
        );

    transition:
        color 200ms ease,
        background-color 200ms ease,
        transform 200ms ease;
}

.a1-service-card__icon svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.a1-service-card:nth-child(2) .a1-service-card__icon,
.a1-service-card:nth-child(5) .a1-service-card__icon {
    color: var(--a1-green-dark, #739d2f);

    background:
        linear-gradient(
            145deg,
            rgba(146, 188, 74, 0.16),
            rgba(146, 188, 74, 0.07)
        );
}

.a1-service-card:hover .a1-service-card__icon {
    transform: translateY(-3px);
}

/* Karteninhalt */

.a1-service-card h3 {
    margin: 0 0 13px;

    color: var(--a1-dark, #17242e);

    font-family:
        Manrope,
        Inter,
        system-ui,
        sans-serif;

    font-size: 1.27rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.a1-service-card p {
    flex: 1;

    margin: 0 0 25px;

    color: var(--a1-muted, #6d7b85);

    font-size: 0.96rem;
    line-height: 1.7;
}

.a1-service-card > a {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    color: var(--a1-blue-dark, #0e6fa7);

    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
}

.a1-service-card > a span {
    font-size: 1.1rem;

    transition: transform 180ms ease;
}

.a1-service-card > a:hover,
.a1-service-card > a:focus-visible {
    color: var(--a1-blue, #178dcb);
    text-decoration: none;
}

.a1-service-card > a:hover span,
.a1-service-card > a:focus-visible span {
    transform: translateX(4px);
}

/* Abschlusszeile */

.a1-services__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    margin-top: clamp(36px, 5vw, 55px);
    padding: 26px 30px;

    border: 1px solid rgba(23, 141, 203, 0.12);
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(23, 141, 203, 0.06),
            rgba(146, 188, 74, 0.06)
        );
}

.a1-services__footer p {
    margin: 0;

    color: var(--a1-dark, #17242e);

    font-weight: 700;
}

.a1-services__button {
    display: inline-flex;
    min-height: 48px;

    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    color: #ffffff;

    border-radius: 999px;

    background: var(--a1-blue, #178dcb);

    box-shadow:
        0 10px 24px rgba(23, 141, 203, 0.2);

    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.a1-services__button:hover,
.a1-services__button:focus-visible {
    color: #ffffff;

    background: var(--a1-blue-dark, #0e6fa7);

    box-shadow:
        0 13px 28px rgba(23, 141, 203, 0.28);

    transform: translateY(-2px);
    text-decoration: none;
}

/* Tablet */

@media (max-width: 1020px) {

    .a1-services__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

/* Smartphone */

@media (max-width: 650px) {

    .a1-services {
        padding-inline: 18px;
    }

    .a1-services__grid {
        grid-template-columns: 1fr;
    }

    .a1-service-card {
        min-height: auto;
        padding: 27px 24px;
    }

    .a1-services__footer {
        align-items: stretch;
        flex-direction: column;

        padding: 24px;

        text-align: center;
    }

    .a1-services__button {
        width: 100%;
    }

}

/* =========================================================
   ALL IN 1 ENTRÜMPELUNGEN – ABLAUF
   ========================================================= */

.a1-process {
    position: relative;
    overflow: hidden;

    padding:
        clamp(80px, 9vw, 125px)
        24px;

    background:
        linear-gradient(
            135deg,
            #f5f9fb 0%,
            #eef5f8 100%
        );
}

.a1-process::before {
    position: absolute;
    top: -160px;
    right: -160px;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: rgba(23, 141, 203, 0.055);

    content: "";
    pointer-events: none;
}

.a1-process::after {
    position: absolute;
    bottom: -120px;
    left: -120px;

    width: 280px;
    height: 280px;

    border: 58px solid rgba(146, 188, 74, 0.05);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.a1-process__container {
    position: relative;
    z-index: 2;

    width: min(100%, 1240px);
    margin-inline: auto;
}

/* Überschrift */

.a1-process__header {
    width: min(100%, 760px);
    margin: 0 auto clamp(42px, 5vw, 62px);

    text-align: center;
}

.a1-process__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin: 0 0 15px;

    color: var(--a1-blue-dark, #0e6fa7);

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.a1-process__eyebrow::before,
.a1-process__eyebrow::after {
    width: 24px;
    height: 3px;

    border-radius: 99px;
    background: var(--a1-green, #92bc4a);

    content: "";
}

.a1-process__header h2 {
    margin: 0 0 20px;

    color: var(--a1-dark, #17242e);

    font-family:
        Manrope,
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: clamp(2.15rem, 4vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.a1-process__intro {
    margin: 0;

    color: var(--a1-text, #40515e);

    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.75;
}

/* Schritte */

.a1-process__steps {
    position: relative;

    display: grid;
    gap: 24px;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.a1-process__steps::before {
    position: absolute;
    top: 67px;
    left: 16.5%;
    right: 16.5%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            rgba(23, 141, 203, 0.22),
            rgba(146, 188, 74, 0.28),
            rgba(23, 141, 203, 0.22)
        );

    content: "";
    pointer-events: none;
}

.a1-process-step {
    position: relative;
    z-index: 2;

    padding: 32px;

    border: 1px solid rgba(23, 141, 203, 0.12);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 18px 50px rgba(23, 36, 46, 0.07);

    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        border-color 200ms ease;
}

.a1-process-step:hover {
    transform: translateY(-6px);

    border-color: rgba(23, 141, 203, 0.32);

    box-shadow:
        0 24px 60px rgba(23, 36, 46, 0.12);
}

.a1-process-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 26px;
}

.a1-process-step__number {
    color: rgba(23, 141, 203, 0.18);

    font-family:
        Manrope,
        Inter,
        system-ui,
        sans-serif;

    font-size: 3.7rem;
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
}

.a1-process-step__icon {
    display: grid;
    width: 58px;
    height: 58px;

    place-items: center;

    color: var(--a1-blue, #178dcb);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(23, 141, 203, 0.14),
            rgba(23, 141, 203, 0.06)
        );
}

.a1-process-step:nth-child(2)
.a1-process-step__icon {
    color: var(--a1-green-dark, #739d2f);

    background:
        linear-gradient(
            145deg,
            rgba(146, 188, 74, 0.18),
            rgba(146, 188, 74, 0.07)
        );
}

.a1-process-step__icon svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.a1-process-step h3 {
    margin: 0 0 14px;

    color: var(--a1-dark, #17242e);

    font-family:
        Manrope,
        Inter,
        system-ui,
        sans-serif;

    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.a1-process-step p {
    margin: 0;

    color: var(--a1-muted, #6d7b85);

    font-size: 0.96rem;
    line-height: 1.72;
}

/* CTA */

.a1-process__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: clamp(38px, 5vw, 56px);
    padding: 28px 31px;

    border: 1px solid rgba(23, 141, 203, 0.14);
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 16px 45px rgba(23, 36, 46, 0.07);
}

.a1-process__cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.a1-process__cta-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    place-items: center;

    color: #ffffff;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            var(--a1-green, #92bc4a),
            var(--a1-green-dark, #739d2f)
        );

    box-shadow:
        0 10px 24px rgba(146, 188, 74, 0.23);

    font-size: 1.1rem;
    font-weight: 900;
}

.a1-process__cta-content div {
    display: grid;
    gap: 3px;
}

.a1-process__cta-content strong {
    color: var(--a1-dark, #17242e);

    font-size: 1rem;
    font-weight: 800;
}

.a1-process__cta-content span {
    color: var(--a1-muted, #6d7b85);

    font-size: 0.9rem;
}

.a1-process__button {
    display: inline-flex;
    min-height: 50px;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    color: #ffffff;

    border-radius: 999px;

    background: var(--a1-blue, #178dcb);

    box-shadow:
        0 11px 25px rgba(23, 141, 203, 0.23);

    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.a1-process__button:hover,
.a1-process__button:focus-visible {
    color: #ffffff;

    background: var(--a1-blue-dark, #0e6fa7);

    box-shadow:
        0 14px 30px rgba(23, 141, 203, 0.3);

    transform: translateY(-2px);
    text-decoration: none;
}

/* Tablet */

@media (max-width: 960px) {

    .a1-process__steps {
        grid-template-columns: 1fr;
    }

    .a1-process__steps::before {
        display: none;
    }

    .a1-process-step {
        display: grid;
        align-items: start;
        gap: 0 24px;

        grid-template-columns: 100px minmax(0, 1fr);
    }

    .a1-process-step__top {
        margin-bottom: 0;

        align-items: flex-start;
        flex-direction: column;
        gap: 15px;

        grid-row: 1 / span 2;
    }

    .a1-process-step h3 {
        align-self: end;
    }

}

/* Smartphone */

@media (max-width: 650px) {

    .a1-process {
        padding-inline: 18px;
    }

    .a1-process-step {
        display: block;
        padding: 27px 24px;
    }

    .a1-process-step__top {
        flex-direction: row;
        align-items: center;

        margin-bottom: 23px;
    }

    .a1-process-step__number {
        font-size: 3.15rem;
    }

    .a1-process__cta {
        align-items: stretch;
        flex-direction: column;

        padding: 24px;
    }

    .a1-process__button {
        width: 100%;
    }

}

/* =========================================================
   ALL IN 1 ENTRÜMPELUNGEN – VORTEILE
   ========================================================= */

.a1-benefits {
    position: relative;
    overflow: hidden;

    padding:
        clamp(85px, 9vw, 130px)
        24px;

    background: #ffffff;
}

.a1-benefits::before {
    position: absolute;
    top: 15%;
    right: -180px;

    width: 360px;
    height: 360px;

    border: 70px solid rgba(23, 141, 203, 0.035);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.a1-benefits__container {
    position: relative;
    z-index: 2;

    display: grid;
    width: min(100%, 1240px);
    margin-inline: auto;

    align-items: center;
    gap: clamp(52px, 7vw, 95px);

    grid-template-columns:
        minmax(360px, 0.9fr)
        minmax(0, 1.1fr);
}

/* Bildbereich */

.a1-benefits__media {
    position: relative;
}

.a1-benefits__image-frame {
    position: relative;

    padding: 0 0 18px 18px;
}

.a1-benefits__image-frame::before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: calc(100% - 18px);
    height: calc(100% - 28px);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            var(--a1-blue, #178dcb),
            var(--a1-blue-dark, #0e6fa7)
        );

    content: "";
}

.a1-benefits__image-frame > img {
    position: relative;
    z-index: 2;

    display: block;
    width: 100%;
    min-height: 620px;

    border-radius: 26px;

    object-fit: cover;
    object-position: center;

    box-shadow:
        0 28px 70px rgba(23, 36, 46, 0.15);
}

/* Bild-Badge */

.a1-benefits__badge {
    position: absolute;
    z-index: 4;

    right: -34px;
    bottom: 48px;

    display: flex;
    max-width: 320px;

    align-items: center;
    gap: 14px;

    padding: 19px 22px;

    border: 1px solid rgba(23, 141, 203, 0.12);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 20px 55px rgba(23, 36, 46, 0.17);

    backdrop-filter: blur(12px);
}

.a1-benefits__badge-icon {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    place-items: center;

    color: #ffffff;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--a1-green, #92bc4a),
            var(--a1-green-dark, #739d2f)
        );

    box-shadow:
        0 10px 23px rgba(146, 188, 74, 0.23);

    font-size: 1.05rem;
    font-weight: 900;
}

.a1-benefits__badge div {
    display: grid;
    gap: 2px;
}

.a1-benefits__badge strong {
    color: var(--a1-dark, #17242e);

    font-size: 0.98rem;
    font-weight: 800;
}

.a1-benefits__badge div span {
    color: var(--a1-muted, #6d7b85);

    font-size: 0.83rem;
    line-height: 1.45;
}

/* Inhaltsbereich */

.a1-benefits__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin: 0 0 15px;

    color: var(--a1-blue-dark, #0e6fa7);

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.a1-benefits__eyebrow::before {
    width: 28px;
    height: 3px;

    border-radius: 99px;
    background: var(--a1-green, #92bc4a);

    content: "";
}

.a1-benefits__content h2 {
    margin: 0 0 23px;

    color: var(--a1-dark, #17242e);

    font-family:
        Manrope,
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: clamp(2.15rem, 4vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.a1-benefits__intro {
    margin: 0 0 30px;

    color: var(--a1-text, #40515e);

    font-size: clamp(1rem, 1.45vw, 1.13rem);
    line-height: 1.76;
}

/* Vorteilsliste */

.a1-benefits__list {
    display: grid;
    gap: 0;
}

.a1-benefit-item {
    display: grid;
    align-items: start;
    gap: 17px;

    padding: 19px 0;

    border-bottom: 1px solid var(--a1-border, #dce6eb);

    grid-template-columns: 50px minmax(0, 1fr);
}

.a1-benefit-item:first-child {
    padding-top: 4px;
}

.a1-benefit-item__icon {
    display: grid;
    width: 46px;
    height: 46px;

    place-items: center;

    color: var(--a1-blue, #178dcb);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(23, 141, 203, 0.13),
            rgba(23, 141, 203, 0.055)
        );
}

.a1-benefit-item:nth-child(even)
.a1-benefit-item__icon {
    color: var(--a1-green-dark, #739d2f);

    background:
        linear-gradient(
            145deg,
            rgba(146, 188, 74, 0.16),
            rgba(146, 188, 74, 0.06)
        );
}

.a1-benefit-item__icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.a1-benefit-item h3 {
    margin: 0 0 6px;

    color: var(--a1-dark, #17242e);

    font-family:
        Manrope,
        Inter,
        system-ui,
        sans-serif;

    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.a1-benefit-item p {
    margin: 0;

    color: var(--a1-muted, #6d7b85);

    font-size: 0.94rem;
    line-height: 1.65;
}

/* Buttons */

.a1-benefits__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;

    margin-top: 32px;
}

.a1-benefits__button {
    display: inline-flex;
    min-height: 52px;

    align-items: center;
    justify-content: center;

    padding: 14px 25px;

    color: #ffffff;

    border-radius: 999px;

    background: var(--a1-blue, #178dcb);

    box-shadow:
        0 11px 26px rgba(23, 141, 203, 0.23);

    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.a1-benefits__button:hover,
.a1-benefits__button:focus-visible {
    color: #ffffff;

    background: var(--a1-blue-dark, #0e6fa7);

    box-shadow:
        0 14px 31px rgba(23, 141, 203, 0.3);

    transform: translateY(-2px);
    text-decoration: none;
}

.a1-benefits__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--a1-dark, #17242e);

    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none;
}

.a1-benefits__phone span {
    color: var(--a1-green-dark, #739d2f);
}

.a1-benefits__phone:hover,
.a1-benefits__phone:focus-visible {
    color: var(--a1-blue-dark, #0e6fa7);
    text-decoration: none;
}

/* Tablet */

@media (max-width: 980px) {

    .a1-benefits__container {
        gap: 55px;

        grid-template-columns:
            minmax(320px, 0.86fr)
            minmax(0, 1.14fr);
    }

    .a1-benefits__image-frame > img {
        min-height: 560px;
    }

    .a1-benefits__badge {
        right: -10px;
    }

}

/* Mobile */

@media (max-width: 820px) {

    .a1-benefits__container {
        grid-template-columns: 1fr;
    }

    .a1-benefits__media {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .a1-benefits__image-frame > img {
        min-height: 520px;
    }

    .a1-benefits__badge {
        right: 5px;
    }

}

/* Smartphone */

@media (max-width: 600px) {

    .a1-benefits {
        padding-inline: 18px;
    }

    .a1-benefits__image-frame {
        padding: 0 0 10px 10px;
    }

    .a1-benefits__image-frame > img {
        min-height: 390px;
        border-radius: 21px;
    }

    .a1-benefits__image-frame::before {
        border-radius: 23px;
    }

    .a1-benefits__badge {
        position: relative;
        right: auto;
        bottom: auto;

        max-width: none;
        margin: -28px 12px 0;

        padding: 17px 18px;
    }

    .a1-benefit-item {
        gap: 14px;

        grid-template-columns: 45px minmax(0, 1fr);
    }

    .a1-benefit-item__icon {
        width: 42px;
        height: 42px;
    }

    .a1-benefits__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .a1-benefits__button {
        width: 100%;
    }

    .a1-benefits__phone {
        justify-content: center;
    }

}

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

.a1-cta{

    padding:120px 30px;

    background:#17242e;

    position:relative;

    overflow:hidden;

}

.a1-cta:before{

    content:"";

    position:absolute;

    right:-250px;
    top:-250px;

    width:600px;
    height:600px;

    border-radius:50%;

    border:80px solid rgba(255,255,255,.04);

}

.a1-cta__container{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:480px 1fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;

}

.a1-cta__image img{

    width:100%;

    display:block;

    border-radius:30px;

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.a1-section-title{

    color:#92bc4a;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.85rem;

    font-weight:700;

    display:block;

    margin-bottom:20px;

}

.a1-cta h2{

    color:#fff;

    font-size:56px;

    line-height:1.1;

    margin-bottom:30px;

}

.a1-cta p{

    color:rgba(255,255,255,.75);

    font-size:20px;

    line-height:1.8;

    max-width:650px;

}

.a1-cta__features{

    margin:40px 0;

    display:grid;

    gap:18px;

}

.a1-cta__features div{

    color:#fff;

    font-size:18px;

    font-weight:600;

}

.a1-cta__buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    border:2px solid rgba(255,255,255,.25);

    color:#fff;

    padding:18px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.btn-outline:hover{

    background:#fff;

    color:#17242e;

}

@media(max-width:1050px){

.a1-cta__container{

grid-template-columns:1fr;

gap:50px;

}

.a1-cta h2{

font-size:44px;

}

}

@media(max-width:768px){

.a1-cta{

padding:80px 20px;

}

.a1-cta h2{

font-size:34px;

}

.a1-cta p{

font-size:18px;

}

.a1-cta__buttons{

flex-direction:column;

}

}

/* ===================================
   Kontakt
=================================== */

.a1-contact{

    padding:120px 30px;

    background:#f7fafc;

}

.a1-contact__container{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:start;

}

.a1-contact h2{

    margin:20px 0;

    font-size:52px;

    line-height:1.1;

    color:var(--a1-dark);

}

.a1-contact__intro{

    color:#64748b;

    line-height:1.8;

    margin-bottom:40px;

}

/* Karte */

.a1-contact-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.05);

    margin-bottom:35px;

}

.a1-contact-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:18px 0;

    border-bottom:1px solid #edf2f7;

}

.a1-contact-item:last-child{

    border:none;

    padding-bottom:0;

}

.a1-contact-icon{

    width:52px;

    height:52px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#178dcb15;

    color:var(--a1-blue);

    font-size:20px;

    flex-shrink:0;

}

.a1-contact-item small{

    display:block;

    color:#94a3b8;

    margin-bottom:4px;

    font-size:.85rem;

}

.a1-contact-item a{

    color:var(--a1-dark);

    text-decoration:none;

    font-weight:700;

}

.a1-contact-item span{

    color:var(--a1-dark);

    font-weight:700;

}

/* Hinweis */

.a1-contact-note{

    padding:30px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        var(--a1-blue),
        #0d6ea4
    );

    color:#fff;

}

.a1-contact-note strong{

    display:block;

    font-size:1.2rem;

    margin-bottom:10px;

}

.a1-contact-note p{

    margin:0;

    line-height:1.7;

    color:rgba(255,255,255,.9);

}

/* Formular */

.a1-contact-form{

    background:#fff;

    border-radius:30px;

    padding:45px;

    box-shadow:0 30px 70px rgba(0,0,0,.06);

}

/* Mobile */

@media(max-width:980px){

.a1-contact__container{

grid-template-columns:1fr;

}

.a1-contact h2{

font-size:40px;

}

}

@media(max-width:768px){

.a1-contact{

padding:80px 20px;

}

.a1-contact-form{

padding:30px;

}

.a1-contact-card{

padding:25px;

}

.a1-contact h2{

font-size:32px;

}

}

#sp-contact{background:#f7fafc}
#sp-position7 .convertforms{    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .05);
    margin-bottom: 35px;}
#sp-contact .row{align-items: center;}
#sp-contact .convertforms input,#sp-contact .convertforms select{height:44px}

.convertforms .cf-btn{
    border-radius:10px!important;
        background: linear-gradient(135deg, var(--a1-blue), #0d6ea4)!important;
}
.convertforms.cf-success .cf-response{background-color: #fff!important;color: #000;line-height:1.8;text-align: left; }


#sp-contact{padding:50px 0}