/*
|--------------------------------------------------------------------------
| Impressum Card
|--------------------------------------------------------------------------
*/

.legal-card {
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    border-top: 2px solid #e58b2a;
    border-right: 2px solid #e58b2a;
    box-shadow: 0 16px 42px rgba(23, 48, 59, 0.09);
}

.legal-card__header {
    padding: 36px 40px 28px;
    background: #f8fafb;
    border-bottom: 1px solid #e4ebee;
}

.legal-card__header h1 {
    margin: 0;
    color: #245269;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
}

.legal-card__subtitle {
    margin: 12px 0 0;
    color: #65777f;
    line-height: 1.6;
}

.legal-card__company {
    padding: 25px 40px;
    color: #ffffff;
    background: #245269;
    font-size: 1.15rem;
}

.legal-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 30px 40px;
}

.legal-card__section {
    padding: 5px 28px 5px 0;
}

.legal-card__section + .legal-card__section {
    padding-left: 28px;
    border-left: 1px solid #e3e9ec;
}

.legal-card__section h2 {
    margin: 0 0 13px;
    color: #245269;
    font-size: 1rem;
}

.legal-card__section p,
.legal-card__section address {
    margin: 0;
    color: #52656e;
    font-style: normal;
    line-height: 1.75;
}

.legal-card__section p + p {
    margin-top: 6px;
}

.legal-card__section a {
    color: #245269;
    font-weight: 600;
    text-decoration: none;
}

.legal-card__section a:hover,
.legal-card__section a:focus-visible {
    color: #e58b2a;
    text-decoration: underline;
}

.legal-card__section--full {
    margin: 0 40px;
    padding: 25px 0;
    border-top: 1px solid #e3e9ec;
}

.legal-card__section--full + .legal-card__section--full {
    padding-left: 0;
    border-left: 0;
}

.legal-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px 40px;
    background: #f8fafb;
    border-top: 1px solid #e3e9ec;
}

.legal-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 17px;
    color: #245269;
    background: #ffffff;
    border: 1px solid #d4dfe4;
    border-radius: 7px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}

.legal-card__link:hover,
.legal-card__link:focus-visible {
    background: #f0f5f7;
    transform: translateY(-1px);
}

.legal-card__link--primary {
    color: #ffffff;
    background: #245269;
    border-color: #245269;
    border-top-color: #e58b2a;
    border-right-color: #e58b2a;
}

.legal-card__link--primary:hover,
.legal-card__link--primary:focus-visible {
    color: #ffffff;
    background: #1e4659;
}

@media (max-width: 720px) {

    .legal-card__header,
    .legal-card__company,
    .legal-card__grid,
    .legal-card__footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .legal-card__grid {
        grid-template-columns: 1fr;
    }

    .legal-card__section {
        padding: 0 0 22px;
    }

    .legal-card__section + .legal-card__section {
        padding: 22px 0 0;
        border-top: 1px solid #e3e9ec;
        border-left: 0;
    }

    .legal-card__section--full {
        margin-left: 22px;
        margin-right: 22px;
        padding: 22px 0;
    }

    .legal-card__footer {
        align-items: stretch;
        flex-direction: column;
    }
}

/*
|--------------------------------------------------------------------------
| Leistungen
|--------------------------------------------------------------------------
*/

.services-page {
    width: 100%;
    color: #344b56;
}

.services-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.services-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #e58b2a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.services-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 105px;
    background:
        linear-gradient(
            110deg,
            #245269 0%,
            #245269 56%,
            #2e657d 100%
        );
}

.services-hero::after {
    position: absolute;
    top: -170px;
    right: -120px;
    width: 480px;
    height: 480px;
    content: "";
    border: 1px solid rgba(229, 139, 42, 0.4);
    border-radius: 50%;
}

.services-hero__content {
    position: relative;
    z-index: 2;
    max-width: 830px;
}

.services-hero h1 {
    max-width: 800px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.03;
}

.services-hero p {
    max-width: 760px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 1.08rem;
    line-height: 1.8;
}

.services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}


/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 21px;
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.16s ease,
        background 0.16s ease,
        border-color 0.16s ease;
}

.services-button:hover,
.services-button:focus-visible {
    transform: translateY(-2px);
}

.services-button--primary {
    color: #ffffff;
    background: #e58b2a;
    border: 1px solid #e58b2a;
}

.services-button--primary:hover,
.services-button--primary:focus-visible {
    color: #ffffff;
    background: #cf7920;
}

.services-button--secondary {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.services-button--secondary:hover,
.services-button--secondary:focus-visible {
    color: #ffffff;
    border-color: #ffffff;
}


/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/

.services-section {
    padding: 85px 0;
}

.services-section--soft {
    background: #f5f8f9;
}

.services-section--dark {
    background: #1d4659;
}

.services-section__header {
    max-width: 820px;
    margin-bottom: 45px;
}

.services-section__header h2,
.services-tower h2,
.quality-card h2,
.services-cta h2 {
    margin: 0;
    color: #245269;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.services-section__header p,
.services-tower__lead,
.quality-card p,
.services-cta p {
    margin: 19px 0 0;
    color: #5d7079;
    font-size: 1.02rem;
    line-height: 1.8;
}

.services-section__header--light h2 {
    color: #ffffff;
}

.services-section__header--light p {
    color: rgba(255, 255, 255, 0.78);
}


/*
|--------------------------------------------------------------------------
| Security Process
|--------------------------------------------------------------------------
*/

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

.services-process__item {
    position: relative;
    min-height: 220px;
    padding: 28px;
    background: #ffffff;
    border-top: 2px solid #e58b2a;
    border-right: 1px solid #e4e9eb;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(30, 63, 76, 0.07);
}

.services-process__number {
    display: block;
    margin-bottom: 30px;
    color: #e58b2a;
    font-size: 0.8rem;
    font-weight: 800;
}

.services-process__item h3 {
    margin: 0 0 10px;
    color: #245269;
    font-size: 1.2rem;
}

.services-process__item p {
    margin: 0;
    color: #667981;
    line-height: 1.65;
}


/*
|--------------------------------------------------------------------------
| Service Cards
|--------------------------------------------------------------------------
*/

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 31px;
    background: #ffffff;
    border-top: 2px solid #e58b2a;
    border-right: 1px solid #dde6e9;
    border-radius: 11px;
    box-shadow: 0 12px 32px rgba(30, 63, 76, 0.07);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    background: #edf4f6;
    border-radius: 9px;
}

.service-card__icon span {
    display: block;
    width: 17px;
    height: 17px;
    border: 2px solid #245269;
    border-top-color: #e58b2a;
    border-radius: 3px;
}

.service-card h3 {
    margin: 0;
    color: #245269;
    font-size: 1.3rem;
}

.service-card__subtitle {
    display: block;
    margin-top: 8px;
    color: #344e59;
    font-size: 0.94rem;
    line-height: 1.55;
}

.service-card p {
    margin: 16px 0 23px;
    color: #667981;
    line-height: 1.7;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.service-card__tags span {
    padding: 5px 9px;
    color: #46606a;
    background: #f1f5f6;
    border-radius: 4px;
    font-size: 0.77rem;
}


/*
|--------------------------------------------------------------------------
| Tower Section
|--------------------------------------------------------------------------
*/

.services-tower__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

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

.services-feature {
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e1e8ea;
    border-top: 2px solid #e58b2a;
    border-radius: 9px;
}

.services-feature__mark {
    display: block;
    width: 28px;
    height: 3px;
    margin-bottom: 22px;
    background: #e58b2a;
}

.services-feature h3 {
    margin: 0 0 9px;
    color: #245269;
    font-size: 1rem;
}

.services-feature p {
    margin: 0;
    color: #687a82;
    line-height: 1.65;
}


/*
|--------------------------------------------------------------------------
| Alarm Chain
|--------------------------------------------------------------------------
*/

.alarm-chain {
    display: flex;
    align-items: stretch;
    gap: 9px;
    overflow-x: auto;
    padding: 12px 0 20px;
}

.alarm-chain__item {
    display: flex;
    min-width: 125px;
    flex: 1 0 125px;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    min-height: 100px;
    padding: 17px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-top: 2px solid #e58b2a;
    border-radius: 8px;
}

.alarm-chain__number {
    color: #e58b2a;
    font-size: 0.75rem;
    font-weight: 800;
}

.alarm-chain__arrow {
    display: flex;
    align-items: center;
    color: #e58b2a;
    font-size: 1.25rem;
}

.services-note {
    max-width: 850px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| Planning
|--------------------------------------------------------------------------
*/

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

.planning-card {
    padding: 22px 17px;
    background: #ffffff;
    border-top: 2px solid #e58b2a;
    border-right: 1px solid #dfe6e9;
    border-radius: 8px;
}

.planning-card__number {
    color: #e58b2a;
    font-size: 0.75rem;
    font-weight: 800;
}

.planning-card h3 {
    margin: 20px 0 8px;
    color: #245269;
    font-size: 0.95rem;
}

.planning-card p {
    margin: 0;
    color: #6b7d85;
    font-size: 0.86rem;
    line-height: 1.55;
}


/*
|--------------------------------------------------------------------------
| Quality
|--------------------------------------------------------------------------
*/

.quality-card {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 55px;
    align-items: center;
    padding: 45px;
    background: #ffffff;
    border-top: 2px solid #e58b2a;
    border-right: 2px solid #e58b2a;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(30, 63, 76, 0.07);
}

.quality-card__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.quality-card__items span {
    padding: 17px;
    color: #245269;
    background: #f0f5f7;
    border-radius: 7px;
    font-weight: 700;
}


/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.services-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding: 50px;
    background: #f7f9fa;
    border-top: 2px solid #e58b2a;
    border-right: 2px solid #e58b2a;
    border-radius: 12px;
}

.services-cta__actions {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    gap: 18px;
}

.services-cta__phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.services-cta__phone span {
    color: #778a92;
    font-size: 0.78rem;
}

.services-cta__phone a {
    color: #245269;
    font-size: 1.08rem;
    font-weight: 800;
    text-decoration: none;
}

.services-page__back {
    margin-top: 30px;
}

.services-page__back a {
    color: #245269;
    font-weight: 700;
    text-decoration: none;
}

.services-page__back a:hover {
    color: #e58b2a;
}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 1050px) {

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

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

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

    .services-tower__layout,
    .quality-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {

    .services-container {
        width: min(100% - 28px, 1180px);
    }

    .services-hero {
        padding: 70px 0;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-process,
    .services-grid,
    .services-feature-grid,
    .planning-grid,
    .quality-card__items {
        grid-template-columns: 1fr;
    }

    .services-process__item {
        min-height: auto;
    }

    .services-tower__layout {
        gap: 35px;
    }

    .quality-card,
    .services-cta {
        padding: 28px 23px;
    }

    .services-cta {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-cta__actions {
        min-width: 0;
    }

    .services-button {
        width: 100%;
    }

    .alarm-chain__arrow {
        transform: rotate(0deg);
    }
}
/*
|--------------------------------------------------------------------------
| SVG Live – Rechtliche Seiten
|--------------------------------------------------------------------------
*/

.legal-page {
    width: 100%;
    padding: 48px 20px 72px;
}

.legal-page__container {
    width: min(100%, 1100px);
    margin: 0 auto;
}

.legal-page__header {
    position: relative;
    margin-bottom: 28px;
    padding: 34px 38px;
    background: #ffffff;
    border-radius: 12px;
    border-top: 2px solid #e58b2a;
    border-right: 2px solid #e58b2a;
    box-shadow:
        0 14px 35px rgba(23, 48, 59, 0.08);
}

.legal-page__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #e58b2a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-page__header h1 {
    margin: 0;
    color: #245269;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.legal-page__lead {
    max-width: 850px;
    margin: 18px 0 0;
    color: #4c5d65;
    font-size: 1.04rem;
    line-height: 1.75;
}

.legal-page__content {
    padding: 38px;
    background: #ffffff;
    border-radius: 12px;
    border-top: 1px solid rgba(229, 139, 42, 0.9);
    border-right: 1px solid rgba(229, 139, 42, 0.9);
    box-shadow:
        0 14px 35px rgba(23, 48, 59, 0.07);
}

.legal-page__content section {
    padding: 4px 0 32px;
}

.legal-page__content section + section {
    padding-top: 30px;
    border-top: 1px solid #e6ecef;
}

.legal-page__content h2 {
    margin: 0 0 14px;
    color: #245269;
    font-size: 1.25rem;
    line-height: 1.35;
}

.legal-page__content p {
    margin: 0 0 14px;
    color: #4c5d65;
    line-height: 1.75;
}

.legal-page__content ul {
    margin: 14px 0 20px;
    padding-left: 22px;
}

.legal-page__content li {
    margin: 7px 0;
    color: #4c5d65;
    line-height: 1.65;
}

.legal-page__content li::marker {
    color: #e58b2a;
}

.legal-page__content a {
    color: #245269;
    font-weight: 600;
    text-decoration: none;
}

.legal-page__content a:hover,
.legal-page__content a:focus-visible {
    color: #e58b2a;
    text-decoration: underline;
}

.legal-contact {
    margin-top: 18px;
    padding: 20px 22px;
    color: #374c56;
    font-style: normal;
    line-height: 1.7;
    background: #f6f9fa;
    border-left: 3px solid #e58b2a;
    border-radius: 0 8px 8px 0;
}

.legal-contact strong {
    color: #245269;
}

.legal-page__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
    padding-top: 28px;
    border-top: 1px solid #dce5e9;
}

.legal-page__footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #74848b;
}

.legal-page__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 18px;
    color: #ffffff !important;
    background: #245269;
    border: 1px solid #245269;
    border-top-color: #e58b2a;
    border-right-color: #e58b2a;
    border-radius: 7px;
    text-decoration: none !important;
    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

.legal-page__back:hover,
.legal-page__back:focus-visible {
    background: #1e4659;
    transform: translateY(-1px);
}

@media (max-width: 720px) {

    .legal-page {
        padding: 26px 14px 48px;
    }

    .legal-page__header,
    .legal-page__content {
        padding: 24px 20px;
    }

    .legal-page__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/*
|--------------------------------------------------------------------------
| Vorteile / Advantages
|--------------------------------------------------------------------------
*/

.advantages-page {
    width: 100%;
    color: #344b56;
}

.advantages-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 102px;
    background: linear-gradient(110deg, #245269 0%, #245269 58%, #2e657d 100%);
}

.advantages-hero::after {
    position: absolute;
    top: -150px;
    right: -110px;
    width: 440px;
    height: 440px;
    content: "";
    border: 1px solid rgba(229, 139, 42, 0.42);
    border-radius: 50%;
}

.advantages-hero .services-container {
    position: relative;
    z-index: 2;
}

.advantages-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.6rem, 6vw, 4.7rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.03;
}

.advantages-hero p {
    max-width: 790px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.8;
}

.advantages-section {
    padding: 85px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.advantages-card {
    position: relative;
    min-width: 0;
    min-height: 255px;
    padding: 29px;
    background: #ffffff;
    border-top: 2px solid #e58b2a;
    border-right: 1px solid #dfe7ea;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(30, 63, 76, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.advantages-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(30, 63, 76, 0.11);
}

.advantages-card__number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #e58b2a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.advantages-card__number::after {
    width: 22px;
    height: 2px;
    content: "";
    background: #e58b2a;
    border-radius: 2px;
}

.advantages-card h3 {
    margin: 0 0 12px;
    color: #245269;
    font-size: 1.18rem;
    line-height: 1.35;
}

.advantages-card p {
    margin: 0;
    color: #667981;
    line-height: 1.7;
}

.advantages-security {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background: #1d4659;
}

.advantages-security::after {
    position: absolute;
    right: -100px;
    bottom: -160px;
    width: 390px;
    height: 390px;
    content: "";
    border: 1px solid rgba(229, 139, 42, 0.25);
    border-radius: 50%;
}

.advantages-security .services-container {
    position: relative;
    z-index: 2;
}

.advantages-security h2 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.advantages-security__text {
    max-width: 820px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
    line-height: 1.8;
}

.advantages-process {
    display: flex;
    align-items: stretch;
    gap: 9px;
    margin-top: 40px;
}

.advantages-process__step {
    display: flex;
    min-width: 0;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    min-height: 112px;
    padding: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-top: 2px solid #e58b2a;
    border-radius: 8px;
}

.advantages-process__step span {
    color: #e58b2a;
    font-size: 0.75rem;
    font-weight: 800;
}

.advantages-process__step strong {
    font-size: 0.94rem;
    line-height: 1.35;
}

.advantages-process__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e58b2a;
    font-size: 1.25rem;
}

.advantages-system {
    padding: 85px 0;
    background: #f5f8f9;
}

.advantages-system h2 {
    max-width: 870px;
    margin: 0;
    color: #245269;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.advantages-system > .services-container > p {
    max-width: 800px;
    margin: 19px 0 0;
    color: #5d7079;
    font-size: 1.02rem;
    line-height: 1.8;
}

.advantages-system__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 38px;
}

.advantages-system__item {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    color: #245269;
    background: #ffffff;
    border-top: 2px solid #e58b2a;
    border-right: 1px solid #dfe7ea;
    border-radius: 9px;
    box-shadow: 0 10px 26px rgba(30, 63, 76, 0.06);
    font-weight: 750;
    line-height: 1.4;
    text-align: center;
}

.advantages-system__plus {
    color: #e58b2a;
    font-size: 1.75rem;
    font-weight: 500;
}

.advantages-cta-section {
    padding: 85px 0 70px;
}

.advantages-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: #f7f9fa;
    border-top: 2px solid #e58b2a;
    border-right: 2px solid #e58b2a;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(30, 63, 76, 0.06);
}

.advantages-cta h2 {
    margin: 0;
    color: #245269;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.advantages-cta p {
    max-width: 760px;
    margin: 19px 0 0;
    color: #5d7079;
    font-size: 1.02rem;
    line-height: 1.8;
}

.advantages-cta__actions {
    display: flex;
    min-width: 260px;
    flex-direction: column;
    gap: 10px;
}

.services-button__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    font-size: 1rem;
    line-height: 1;
}

.advantages-button--secondary {
    color: #245269;
    background: #ffffff;
    border: 1px solid #cfdce2;
}

.advantages-button--secondary:hover,
.advantages-button--secondary:focus-visible {
    color: #ffffff;
    background: #245269;
    border-color: #245269;
}

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

    .advantages-process {
        flex-wrap: wrap;
    }

    .advantages-process__step {
        min-width: calc(50% - 30px);
    }

    .advantages-process__arrow {
        display: none;
    }

    .advantages-cta {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .advantages-cta__actions {
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .advantages-hero {
        padding: 68px 0 72px;
    }

    .advantages-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.2rem);
        line-height: 1.07;
    }

    .advantages-hero p {
        margin-top: 20px;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .advantages-section,
    .advantages-security,
    .advantages-system,
    .advantages-cta-section {
        padding: 58px 0;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .advantages-card {
        min-height: 0;
        padding: 24px 22px;
    }

    .advantages-card__number {
        margin-bottom: 21px;
    }

    .advantages-process {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 30px;
    }

    .advantages-process__step {
        min-width: 0;
        min-height: 0;
        padding: 18px 20px;
    }

    .advantages-system__grid {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 28px;
    }

    .advantages-system__item {
        min-height: 86px;
        padding: 18px;
    }

    .advantages-system__plus {
        text-align: center;
        transform: rotate(90deg);
    }

    .advantages-cta {
        padding: 28px 22px;
        gap: 26px;
    }

    .advantages-cta__actions {
        width: 100%;
    }

    .advantages-cta__actions .services-button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .advantages-hero {
        padding: 56px 0 60px;
    }

    .advantages-card h3 {
        font-size: 1.08rem;
    }

    .advantages-security h2,
    .advantages-system h2,
    .advantages-cta h2 {
        font-size: 1.85rem;
    }

    .advantages-cta {
        padding: 24px 18px;
    }
}

/*
|--------------------------------------------------------------------------
| Solutions / Service-Leitzentrale
|--------------------------------------------------------------------------
*/

.solutions-page {
    width: 100%;
    color: #344b56;
}


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.solutions-hero {
    position: relative;
    overflow: hidden;

    padding:
        90px
        0
        95px;

    background:
        linear-gradient(
            110deg,
            #245269 0%,
            #245269 58%,
            #2e657d 100%
        );
}


.solutions-hero::after {
    position: absolute;

    top:
        -180px;

    right:
        -130px;

    width:
        470px;

    height:
        470px;

    content:
        "";

    border:
        1px solid
        rgba(229, 139, 42, 0.4);

    border-radius:
        50%;
}


.solutions-hero__layout {
    position: relative;

    z-index:
        2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(280px, 0.8fr);

    gap:
        65px;

    align-items:
        center;
}


.solutions-hero__content h1 {
    max-width:
        830px;

    margin:
        0;

    color:
        #ffffff;

    font-size:
        clamp(2.6rem, 6vw, 4.7rem);

    font-weight:
        750;

    letter-spacing:
        -0.035em;

    line-height:
        1.03;
}


.solutions-hero__content p {
    max-width:
        760px;

    margin:
        25px
        0
        0;

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

    font-size:
        1.06rem;

    line-height:
        1.8;
}


/*
|--------------------------------------------------------------------------
| Logo
|--------------------------------------------------------------------------
*/

.solutions-hero__brand {
    display: flex;

    align-items: center;

    justify-content: center;
}


.solutions-hero__logo-card {
    width:
        min(100%, 410px);

    padding:
        28px;

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

    border-top:
        2px solid
        #e58b2a;

    border-right:
        2px solid
        #e58b2a;

    border-radius:
        12px;

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.15);
}


.solutions-hero__logo {
    display:
        block;

    width:
        100%;

    height:
        auto;

    object-fit:
        contain;
}


.solutions-hero__logo-card > span {
    display:
        block;

    margin-top:
        18px;

    color:
        #245269;

    font-size:
        0.82rem;

    font-weight:
        700;

    letter-spacing:
        0.04em;

    text-align:
        center;
}


/*
|--------------------------------------------------------------------------
| Allgemeine Sections
|--------------------------------------------------------------------------
*/

.solutions-section {
    padding:
        85px
        0;
}


.solutions-section--soft {
    background:
        #f5f8f9;
}


/*
|--------------------------------------------------------------------------
| Kontakt Card
|--------------------------------------------------------------------------
*/

.solutions-contact-card {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap:
        0;

    overflow:
        hidden;

    background:
        #ffffff;

    border-top:
        2px solid
        #e58b2a;

    border-right:
        2px solid
        #e58b2a;

    border-radius:
        12px;

    box-shadow:
        0 15px 35px
        rgba(30, 63, 76, 0.07);
}


.solutions-contact-card__addresses {
    display: grid;

    gap:
        26px;

    padding:
        36px;

    background:
        #245269;
}


.solutions-contact-card__block {
    display: flex;

    flex-direction:
        column;

    gap:
        5px;

    color:
        rgba(255, 255, 255, 0.75);
}


.solutions-contact-card__block strong {
    color:
        #ffffff;

    font-size:
        1.05rem;
}


.solutions-contact-card__label {
    margin-bottom:
        5px;

    color:
        #e58b2a;

    font-size:
        0.75rem;

    font-weight:
        800;

    letter-spacing:
        0.11em;

    text-transform:
        uppercase;
}


.solutions-contact-card__details {
    display: grid;

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

    gap:
        1px;

    background:
        #e3e9ec;
}


.solutions-contact-card__details > a,
.solutions-contact-card__details > div {
    min-width:
        0;

    display: flex;

    flex-direction:
        column;

    gap:
        6px;

    padding:
        25px;

    color:
        #245269;

    background:
        #ffffff;

    text-decoration:
        none;
}


.solutions-contact-card__details span {
    color:
        #778a92;

    font-size:
        0.76rem;
}


.solutions-contact-card__details strong {
    overflow-wrap:
        anywhere;

    color:
        #245269;

    font-size:
        0.93rem;
}


.solutions-contact-card__details > a:hover {
    background:
        #f4f8f9;
}


/*
|--------------------------------------------------------------------------
| Monitoring Cards
|--------------------------------------------------------------------------
*/

.solutions-monitoring-grid {
    display: grid;

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

    gap:
        18px;
}


.solutions-monitoring-card {
    min-width:
        0;

    min-height:
        220px;

    padding:
        28px;

    background:
        #ffffff;

    border-top:
        2px solid
        #e58b2a;

    border-right:
        1px solid
        #dfe6e9;

    border-radius:
        10px;

    box-shadow:
        0 12px 30px
        rgba(30, 63, 76, 0.07);
}


.solutions-monitoring-card__number {
    display: inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-bottom:
        29px;

    color:
        #e58b2a;

    font-size:
        0.76rem;

    font-weight:
        800;
}


.solutions-monitoring-card__number::after {
    width:
        22px;

    height:
        2px;

    content:
        "";

    background:
        #e58b2a;
}


.solutions-monitoring-card h3 {
    margin:
        0
        0
        10px;

    color:
        #245269;

    font-size:
        1.15rem;
}


.solutions-monitoring-card p {
    margin:
        0;

    color:
        #667981;

    line-height:
        1.7;
}


/*
|--------------------------------------------------------------------------
| Monitoring Ablauf
|--------------------------------------------------------------------------
*/

.solutions-process-section {
    padding:
        88px
        0;

    background:
        #1d4659;
}


.solutions-process-section h2 {
    max-width:
        840px;

    margin:
        0;

    color:
        #ffffff;

    font-size:
        clamp(2rem, 4vw, 3rem);

    line-height:
        1.12;
}


.solutions-process-section__lead {
    max-width:
        800px;

    margin:
        20px
        0
        0;

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

    line-height:
        1.8;
}


.solutions-process {
    display: flex;

    align-items:
        stretch;

    gap:
        9px;

    margin-top:
        40px;
}


.solutions-process__step {
    min-width:
        0;

    flex:
        1;

    display: flex;

    flex-direction:
        column;

    justify-content:
        center;

    gap:
        9px;

    min-height:
        110px;

    padding:
        18px;

    color:
        #ffffff;

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

    border-top:
        2px solid
        #e58b2a;

    border-radius:
        8px;
}


.solutions-process__step span {
    color:
        #e58b2a;

    font-size:
        0.75rem;

    font-weight:
        800;
}


.solutions-process__step strong {
    font-size:
        0.92rem;

    line-height:
        1.35;
}


.solutions-process__arrow {
    display: flex;

    align-items:
        center;

    color:
        #e58b2a;

    font-size:
        1.25rem;
}


/*
|--------------------------------------------------------------------------
| Benefits
|--------------------------------------------------------------------------
*/

.solutions-benefits {
    display: grid;

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

    gap:
        18px;
}


.solutions-benefit {
    padding:
        28px;

    background:
        #ffffff;

    border:
        1px solid
        #e1e8ea;

    border-top:
        2px solid
        #e58b2a;

    border-radius:
        9px;
}


.solutions-benefit__mark {
    display:
        block;

    width:
        28px;

    height:
        3px;

    margin-bottom:
        22px;

    background:
        #e58b2a;
}


.solutions-benefit h3 {
    margin:
        0
        0
        10px;

    color:
        #245269;

    font-size:
        1.05rem;
}


.solutions-benefit p {
    margin:
        0;

    color:
        #687a82;

    line-height:
        1.7;
}


/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.solutions-cta-section {
    padding:
        80px
        0
        70px;
}


.solutions-cta {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, auto);

    gap:
        60px;

    align-items:
        center;

    padding:
        48px;

    background:
        #f7f9fa;

    border-top:
        2px solid
        #e58b2a;

    border-right:
        2px solid
        #e58b2a;

    border-radius:
        12px;
}


.solutions-cta h2 {
    margin:
        0;

    color:
        #245269;

    font-size:
        clamp(2rem, 4vw, 3rem);

    line-height:
        1.12;
}


.solutions-cta p {
    margin:
        19px
        0
        0;

    color:
        #5d7079;

    line-height:
        1.8;
}


.solutions-cta__actions {
    display: flex;

    min-width:
        260px;

    flex-direction:
        column;

    gap:
        10px;
}


.solutions-button--secondary {
    color:
        #245269;

    background:
        #ffffff;

    border:
        1px solid
        #cfdce2;
}


.solutions-button--secondary:hover,
.solutions-button--secondary:focus-visible {
    color:
        #ffffff;

    background:
        #245269;

    border-color:
        #245269;
}


/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1050px) {

    .solutions-hero__layout {
        grid-template-columns:
            1fr;

        gap:
            38px;
    }


    .solutions-hero__brand {
        justify-content:
            flex-start;
    }


    .solutions-contact-card {
        grid-template-columns:
            1fr;
    }


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


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


    .solutions-process {
        flex-wrap:
            wrap;
    }


    .solutions-process__step {
        min-width:
            calc(50% - 30px);
    }


    .solutions-process__arrow {
        display:
            none;
    }


    .solutions-cta {
        grid-template-columns:
            1fr;

        gap:
            30px;
    }

}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 720px) {

    .solutions-hero {
        padding:
            65px
            0
            70px;
    }


    .solutions-hero__content h1 {
        font-size:
            clamp(2.15rem, 11vw, 3.2rem);

        line-height:
            1.07;
    }


    .solutions-hero__content p {
        font-size:
            0.98rem;

        line-height:
            1.7;
    }


    .solutions-hero__logo-card {
        width:
            100%;

        padding:
            22px;
    }


    .solutions-section,
    .solutions-process-section,
    .solutions-cta-section {
        padding:
            58px
            0;
    }


    .solutions-contact-card__addresses {
        padding:
            27px
            22px;
    }


    .solutions-contact-card__details {
        grid-template-columns:
            1fr;
    }


    .solutions-contact-card__details > a,
    .solutions-contact-card__details > div {
        padding:
            20px
            22px;
    }


    .solutions-monitoring-grid,
    .solutions-benefits {
        grid-template-columns:
            1fr;

        gap:
            14px;
    }


    .solutions-monitoring-card {
        min-height:
            0;

        padding:
            24px
            22px;
    }


    .solutions-process {
        display:
            grid;

        grid-template-columns:
            1fr;

        gap:
            10px;

        margin-top:
            30px;
    }


    .solutions-process__step {
        min-width:
            0;

        min-height:
            0;

        padding:
            18px
            20px;
    }


    .solutions-cta {
        padding:
            28px
            22px;

        gap:
            26px;
    }


    .solutions-cta__actions {
        width:
            100%;

        min-width:
            0;
    }


    .solutions-cta__actions .services-button {
        width:
            100%;
    }

}


/*
|--------------------------------------------------------------------------
| Kleine Smartphones
|--------------------------------------------------------------------------
*/

@media (max-width: 420px) {

    .solutions-hero {
        padding:
            54px
            0
            58px;
    }


    .solutions-contact-card__details strong {
        font-size:
            0.86rem;
    }


    .solutions-cta {
        padding:
            24px
            18px;
    }

}

/*
|--------------------------------------------------------------------------
| Solutions - Broschüre Button
|--------------------------------------------------------------------------
*/

.solutions-button--brochure {
    color:
        #ffffff;

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

    border:
        1px solid
        rgba(255, 255, 255, 0.48);
}


.solutions-button--brochure:hover,
.solutions-button--brochure:focus-visible {
    color:
        #245269;

    background:
        #ffffff;

    border-color:
        #ffffff;
}


/*
|--------------------------------------------------------------------------
| Solutions - SLZ Monitoring Feature
|--------------------------------------------------------------------------
*/

.solutions-monitoring-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);

    gap:
        0;

    margin-bottom:
        32px;

    overflow:
        hidden;

    background:
        #ffffff;

    border-top:
        2px solid
        #e58b2a;

    border-right:
        2px solid
        #e58b2a;

    border-radius:
        12px;

    box-shadow:
        0 15px 35px
        rgba(30, 63, 76, 0.08);
}


/*
|--------------------------------------------------------------------------
| Bild
|--------------------------------------------------------------------------
*/

.solutions-monitoring-feature__image {
    position:
        relative;

    min-height:
        390px;

    overflow:
        hidden;

    background:
        #1d4659;
}


.solutions-monitoring-feature__image img {
    display:
        block;

    width:
        100%;

    height:
        100%;

    min-height:
        390px;

    object-fit:
        cover;

    object-position:
        center;
}


/*
|--------------------------------------------------------------------------
| Inhalt
|--------------------------------------------------------------------------
*/

.solutions-monitoring-feature__content {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        38px;
}


.solutions-monitoring-feature__content h3 {
    margin:
        0;

    color:
        #245269;

    font-size:
        clamp(1.6rem, 3vw, 2.25rem);

    letter-spacing:
        -0.02em;

    line-height:
        1.15;
}


.solutions-monitoring-feature__content > p {
    margin:
        18px
        0
        0;

    color:
        #5d7079;

    line-height:
        1.75;
}


/*
|--------------------------------------------------------------------------
| Fakten
|--------------------------------------------------------------------------
*/

.solutions-monitoring-feature__facts {
    display:
        grid;

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

    gap:
        8px;

    margin-top:
        28px;
}


.solutions-monitoring-feature__facts span {
    min-width:
        0;

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    padding:
        13px;

    color:
        #6b7d85;

    background:
        #f0f5f7;

    border-top:
        2px solid
        #e58b2a;

    border-radius:
        6px;

    font-size:
        0.75rem;
}


.solutions-monitoring-feature__facts strong {
    color:
        #245269;

    font-size:
        1.1rem;

    font-weight:
        800;
}


/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {

    .solutions-monitoring-feature {
        grid-template-columns:
            1fr;
    }


    .solutions-monitoring-feature__image,
    .solutions-monitoring-feature__image img {
        min-height:
            340px;
    }

}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 720px) {

    .solutions-monitoring-feature {
        margin-bottom:
            24px;
    }


    .solutions-monitoring-feature__image,
    .solutions-monitoring-feature__image img {
        min-height:
            260px;
    }


    .solutions-monitoring-feature__content {
        padding:
            27px
            22px;
    }


    .solutions-monitoring-feature__facts {
        grid-template-columns:
            1fr;
    }


    /*
    |--------------------------------------------------------------------------
    | Hero Buttons untereinander
    |--------------------------------------------------------------------------
    */

    .solutions-hero .services-hero__actions {
        width:
            100%;
    }


    .solutions-hero .services-button {
        width:
            100%;
    }

}


/*
|--------------------------------------------------------------------------
| Kleine Smartphones
|--------------------------------------------------------------------------
*/

@media (max-width: 420px) {

    .solutions-monitoring-feature__image,
    .solutions-monitoring-feature__image img {
        min-height:
            220px;
    }

}
