/* =====================================
   GRUNDEINSTELLUNGEN
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(174, 184, 255, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 22%,
            rgba(142, 219, 255, 0.09),
            transparent 32%
        ),
        #07111f;

    color: #f7f9fc;

    overflow-x: hidden;
    overflow-y: auto;
}


/* =====================================
   NAVIGATION
===================================== */

.navbar {
    width: 100%;
    max-width: 1500px;
    min-height: 205px;

    margin: 0 auto;

    padding:
        12px 5%
        5px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 20;
}


/* =====================================
   LOGO
===================================== */

.brand {
    width: 370px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    line-height: 1;
}

.brand-ex {
    display: block;

    width: 178px;
    height: auto;

    margin-bottom: -5px;
}

.brand-wordmark {
    display: block;

    width: 260px;
    height: auto;
}

.brand-claim {
    margin-top: 6px;

    color: #9fdfff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3.5px;

    white-space: nowrap;

    text-align: center;
}


/* =====================================
   NAVIGATION LINKS
===================================== */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 40px;
}

.nav-links a {
    color: #c1cbda;

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    transition: 0.25s;
}

.nav-links a:hover {
    color: #ffffff;
}


/* =====================================
   NAV BUTTON
===================================== */

.nav-button {
    color: #07111f;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    padding:
        15px
        24px;

    border-radius: 10px;

    background:
        linear-gradient(
            110deg,
            #aeb8ff,
            #8edbff
        );

    transition: 0.25s;
}

.nav-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(142, 219, 255, 0.16);
}


/* =====================================
   HERO
===================================== */

.hero {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    min-height:
        calc(
            100vh - 205px
        );

    padding:
        5px 5%
        90px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(430px, 0.95fr);

    align-items: center;

    gap: 85px;
}

.hero-left {
    max-width: 780px;
}


/* =====================================
   HERO HEADLINE
===================================== */

.hero h1 {
    max-width: 860px;

    margin-bottom: 32px;

    font-size:
        clamp(
            44px,
            4.5vw,
            68px
        );

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -1.7px;

    background:
        linear-gradient(
            100deg,
            #aeb8ff,
            #8edbff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.hero-description {
    max-width: 650px;

    margin-bottom: 34px;

    color: #aeb9ca;

    font-size: 19px;

    line-height: 1.7;
}


/* =====================================
   HERO BUTTONS
===================================== */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 37px;
}

.button {
    min-height: 53px;

    padding:
        0
        27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: 0.25s;
}

.primary {
    color: #06101b;

    background:
        linear-gradient(
            110deg,
            #aeb8ff,
            #8edbff
        );

    box-shadow:
        0 10px 35px
        rgba(142, 219, 255, 0.12);
}

.primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 40px
        rgba(142, 219, 255, 0.20);
}

.secondary {
    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.025);
}

.secondary:hover {
    background:
        rgba(255, 255, 255, 0.07);
}


/* =====================================
   TRUST
===================================== */

.trust-row {
    display: flex;
    flex-wrap: wrap;

    gap:
        20px
        28px;
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #8997aa;

    font-size: 13px;
}

.trust-item span {
    color: #8edbff;

    font-weight: bold;
}


/* =====================================
   HERO RECHTS
===================================== */

.hero-right {
    position: relative;

    min-width: 0;
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.background-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(142, 219, 255, 0.18),
            rgba(174, 184, 255, 0.08) 43%,
            transparent 70%
        );

    filter: blur(5px);

    z-index: 0;
}


/* =====================================
   ROBOTER
===================================== */

.hero-robot {
    position: absolute;

    width: 235px;

    right: -15px;
    top: -125px;

    opacity: 0.16;

    filter:
        saturate(0.9)
        brightness(0.85);

    z-index: 1;

    pointer-events: none;
    user-select: none;
}


/* =====================================
   AUTOMATION CARD
===================================== */

.automation-card {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 500px;

    padding: 30px;

    border-radius: 24px;

    border:
        1px solid
        rgba(178, 198, 225, 0.16);

    background:
        linear-gradient(
            145deg,
            rgba(20, 31, 49, 0.93),
            rgba(9, 17, 30, 0.91)
        );

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, 0.34);
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 30px;
}

.card-small {
    margin-bottom: 9px;

    color: #8edbff;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
}

.card-top h2 {
    font-size: 27px;
    font-weight: 800;
}

.status {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #9beec7;

    font-size: 11px;

    letter-spacing: 2px;
}

.status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #74e3ad;

    box-shadow:
        0 0 10px
        rgba(116, 227, 173, 0.7);
}

.automation-item {
    display: grid;

    grid-template-columns:
        43px
        1fr
        25px;

    align-items: center;

    gap: 15px;
}

.icon-box {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #b9c7ff;

    font-size: 12px;
    font-weight: 700;

    background:
        linear-gradient(
            145deg,
            rgba(174, 184, 255, 0.13),
            rgba(142, 219, 255, 0.07)
        );

    border:
        1px solid
        rgba(174, 184, 255, 0.15);
}

.automation-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 16px;
    font-weight: 700;
}

.automation-item p {
    color: #8997aa;

    font-size: 13px;

    line-height: 1.4;
}

.done {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #7ce1b0;

    background:
        rgba(124, 225, 176, 0.08);

    font-size: 12px;
}

.line {
    width: 1px;
    height: 22px;

    margin-left: 21px;

    background:
        linear-gradient(
            #60738d,
            rgba(96, 115, 141, 0)
        );
}

.card-bottom {
    margin-top: 28px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    color: #718096;

    text-align: center;

    font-size: 11px;

    letter-spacing: 1px;
}


/* =====================================
   LEISTUNGEN
===================================== */

.services-section {
    width: 100%;

    padding:
        110px 5%
        125px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(174, 184, 255, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(142, 219, 255, 0.12),
            transparent 25%
        ),
        #f7f9fd;

    color: #0b1628;
}

.services-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.section-heading {
    max-width: 820px;

    margin-bottom: 60px;
}

.section-label {
    margin-bottom: 16px;

    color: #5e78d7;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3.5px;
}

.section-heading h2 {
    margin-bottom: 22px;

    color: #0b1628;

    font-size:
        clamp(
            40px,
            4.2vw,
            60px
        );

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.section-heading h2 span {
    background:
        linear-gradient(
            100deg,
            #657de4,
            #35aee8
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-intro {
    max-width: 700px;

    color: #5f6c7f;

    font-size: 19px;

    line-height: 1.7;
}


/* =====================================
   SERVICE GRID
===================================== */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 20px;
}

.service-card {
    min-height: 330px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.83);

    border:
        1px solid
        rgba(28, 58, 105, 0.08);

    box-shadow:
        0 18px 45px
        rgba(30, 52, 88, 0.07);

    transition:
        transform 0.3s,
        box-shadow 0.3s,
        border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(107, 137, 234, 0.28);

    box-shadow:
        0 25px 60px
        rgba(30, 52, 88, 0.12);
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(174, 184, 255, 0.23),
            rgba(142, 219, 255, 0.18)
        );

    border:
        1px solid
        rgba(92, 128, 224, 0.12);
}

.service-icon svg {
    width: 28px;
    height: 28px;

    stroke: #5379e5;
    fill: none;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 15px;

    color: #101d31;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.3;
}

.service-card p {
    margin-bottom: 25px;

    color: #657184;

    font-size: 15px;

    line-height: 1.65;
}

.service-tag {
    margin-top: auto;

    width: fit-content;

    padding:
        8px
        12px;

    border-radius: 999px;

    color: #4e69bc;

    background:
        rgba(104, 134, 229, 0.09);

    font-size: 11px;
    font-weight: 700;
}


/* =====================================
   PROZESS
===================================== */

.process-section {
    width: 100%;

    overflow: hidden;

    padding:
        115px 5%
        120px;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(142, 219, 255, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(174, 184, 255, 0.08),
            transparent 27%
        ),
        #081321;
}

.process-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.process-heading {
    max-width: 800px;

    margin-bottom: 75px;
}

.process-label {
    margin-bottom: 16px;

    color: #8edbff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3.5px;
}

.process-heading h2 {
    margin-bottom: 22px;

    font-size:
        clamp(
            40px,
            4.2vw,
            60px
        );

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.process-heading h2 span {
    background:
        linear-gradient(
            100deg,
            #aeb8ff,
            #8edbff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-heading > p:last-child {
    max-width: 680px;

    color: #98a7ba;

    font-size: 18px;

    line-height: 1.7;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 35px;

    margin-bottom: 75px;
}

.process-step {
    position: relative;

    min-height: 245px;

    padding:
        0
        15px
        25px;
}

.step-number {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border-radius: 50%;

    color: #07111f;

    font-size: 14px;
    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #b4bdff,
            #8edbff
        );

    box-shadow:
        0 10px 30px
        rgba(142, 219, 255, 0.12);
}

.step-line {
    position: absolute;

    top: 29px;
    left: 83px;
    right: -30px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(142, 219, 255, 0.36),
            rgba(174, 184, 255, 0.04)
        );
}

.process-step:last-child .step-line {
    display: none;
}

.process-step h3 {
    margin-bottom: 13px;

    font-size: 21px;
    font-weight: 800;
}

.process-step p {
    color: #91a0b4;

    font-size: 15px;

    line-height: 1.65;
}


/* =====================================
   PROCESS CTA
===================================== */

.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        35px
        40px;

    border-radius: 22px;

    border:
        1px solid
        rgba(174, 184, 255, 0.13);

    background:
        linear-gradient(
            135deg,
            rgba(20, 31, 50, 0.90),
            rgba(13, 23, 39, 0.93)
        );
}

.process-cta span {
    display: block;

    margin-bottom: 8px;

    color: #8edbff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.process-cta h3 {
    font-size: 27px;
    font-weight: 800;
}

.process-button {
    flex-shrink: 0;

    padding:
        16px
        25px;

    border-radius: 10px;

    color: #07111f;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    background:
        linear-gradient(
            110deg,
            #aeb8ff,
            #8edbff
        );

    transition: 0.25s;
}

.process-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(142, 219, 255, 0.17);
}


/* =====================================
   BRANCHEN
===================================== */

.industries-section {
    width: 100%;

    padding:
        110px 5%
        120px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(174, 184, 255, 0.15),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(142, 219, 255, 0.12),
            transparent 28%
        ),
        #f3f6fb;

    color: #0b1628;
}

.industries-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.industries-heading {
    max-width: 900px;

    margin-bottom: 60px;
}

.industries-label {
    margin-bottom: 16px;

    color: #5e78d7;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3.5px;
}

.industries-heading h2 {
    margin-bottom: 22px;

    color: #0b1628;

    font-size:
        clamp(
            40px,
            4.2vw,
            60px
        );

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.industries-heading h2 span {
    background:
        linear-gradient(
            100deg,
            #657de4,
            #35aee8
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-heading > p:last-child {
    max-width: 760px;

    color: #5f6c7f;

    font-size: 18px;

    line-height: 1.7;
}


/* =====================================
   BRANCHEN GRID
===================================== */

.industries-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 26px;

    margin-bottom: 35px;
}

.industry-card {
    min-height: 455px;

    padding:
        34px
        32px
        32px;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(232, 239, 255, 0.88),
            rgba(245, 249, 255, 0.82)
        );

    border:
        1px solid
        rgba(117, 146, 230, 0.26);

    box-shadow:
        0 14px 38px
        rgba(35, 55, 110, 0.06);

    transition:
        transform 0.28s,
        box-shadow 0.28s,
        border-color 0.28s;
}

.industry-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(105, 132, 230, 0.42);

    box-shadow:
        0 22px 48px
        rgba(35, 55, 110, 0.10);
}

.industry-card-top {
    display: flex;
    justify-content: flex-start;

    margin-bottom: 28px;
}

.industry-number {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #5772dd;

    font-size: 14px;
    font-weight: 800;

    background:
        rgba(224, 234, 255, 0.95);

    border:
        1px solid
        rgba(117, 146, 230, 0.10);
}

.industry-card h3 {
    margin-bottom: 18px;

    color: #081630;

    font-size: 28px;
    font-weight: 800;

    line-height: 1.15;
}

.industry-card > p {
    min-height: 100px;

    margin-bottom: 27px;

    color: #586b89;

    font-size: 15px;

    line-height: 1.7;
}

.industry-card ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.industry-card li {
    position: relative;

    padding-left: 28px;

    margin-bottom: 15px;

    color: #203250;

    font-size: 14px;

    line-height: 1.55;
}

.industry-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #6783ea;

    font-weight: 800;
}


/* =====================================
   BRANCHEN UNTEN
===================================== */

.industry-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        28px
        30px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.72);

    border:
        1px solid
        rgba(28, 58, 105, 0.07);
}

.industry-bottom p {
    color: #5f6c7f;

    font-size: 14px;

    line-height: 1.6;
}

.industry-bottom strong {
    color: #17263d;
}

.industry-bottom a {
    flex-shrink: 0;

    color: #526dd1;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
}


/* =====================================
   KONTAKT
===================================== */

.contact-section {
    width: 100%;

    padding:
        115px 5%
        110px;

    background:
        radial-gradient(
            circle at 12% 30%,
            rgba(174, 184, 255, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(142, 219, 255, 0.10),
            transparent 28%
        ),
        #07111f;
}

.contact-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 90px;
}

.contact-content {
    max-width: 720px;
}

.contact-label {
    margin-bottom: 18px;

    color: #8edbff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3.5px;
}

.contact-content h2 {
    margin-bottom: 25px;

    font-size:
        clamp(
            42px,
            4.5vw,
            64px
        );

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -1.6px;
}

.contact-content h2 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #aeb8ff,
            #8edbff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-intro {
    max-width: 640px;

    margin-bottom: 35px;

    color: #9eacbd;

    font-size: 18px;

    line-height: 1.7;
}

.contact-points {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.contact-points div {
    display: flex;
    align-items: center;

    gap: 11px;

    color: #c0cad7;

    font-size: 14px;
}

.contact-points span {
    color: #8edbff;

    font-weight: 800;
}

.contact-card {
    padding:
        42px
        40px;

    border-radius: 26px;

    border:
        1px solid
        rgba(174, 184, 255, 0.15);

    background:
        linear-gradient(
            145deg,
            rgba(20, 31, 49, 0.95),
            rgba(10, 18, 31, 0.94)
        );

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.28);
}

.contact-card-small {
    margin-bottom: 13px;

    color: #8edbff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}

.contact-card h3 {
    margin-bottom: 18px;

    font-size: 30px;
    font-weight: 800;
}

.contact-card > p {
    margin-bottom: 30px;

    color: #98a7ba;

    font-size: 15px;

    line-height: 1.7;
}

.contact-main-button {
    width: 100%;
    min-height: 58px;

    padding:
        0
        20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #07111f;

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    background:
        linear-gradient(
            110deg,
            #aeb8ff,
            #8edbff
        );

    transition: 0.25s;
}

.contact-main-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 35px
        rgba(142, 219, 255, 0.18);
}

.contact-note {
    margin-top: 17px;

    color: #66778e;

    text-align: center;

    font-size: 11px;

    line-height: 1.5;
}


/* =====================================
   FOOTER
===================================== */

.footer {
    width: 100%;

    padding:
        55px 5%
        30px;

    background: #050d18;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.footer-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 45px;
}

.footer-logo {
    width: 65px;
    height: auto;
}

.footer-brand strong {
    display: block;

    margin-bottom: 6px;

    font-size: 14px;

    letter-spacing: 2px;
}

.footer-brand p {
    color: #77879b;

    font-size: 12px;

    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 28px;

    margin-bottom: 35px;
}

.footer-links a {
    color: #9aa9bb;

    text-decoration: none;

    font-size: 13px;

    transition: 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);

    color: #66768a;

    font-size: 11px;
}

.footer-bottom div {
    display: flex;

    gap: 22px;
}

.footer-bottom a {
    color: #78889b;

    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}


/* =====================================
   RECHTLICHE SEITEN
===================================== */

.legal-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(174, 184, 255, 0.11),
            transparent 30%
        ),
        #07111f;

    color: #f7f9fc;
}

.legal-header {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding:
        35px
        5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.legal-brand {
    display: flex;
    align-items: center;

    gap: 14px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.legal-brand img {
    width: 60px;
    height: auto;
}

.legal-back {
    color: #9eacbd;

    text-decoration: none;

    font-size: 13px;
}

.legal-back:hover {
    color: #ffffff;
}

.legal-container {
    width: 90%;
    max-width: 950px;

    margin:
        50px
        auto
        100px;
}

.legal-label {
    margin-bottom: 15px;

    color: #8edbff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}

.legal-container > h1 {
    margin-bottom: 45px;

    font-size:
        clamp(
            42px,
            5vw,
            65px
        );

    font-weight: 800;

    background:
        linear-gradient(
            100deg,
            #aeb8ff,
            #8edbff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-card {
    margin-bottom: 20px;

    padding:
        30px
        32px;

    border-radius: 18px;

    border:
        1px solid
        rgba(174, 184, 255, 0.12);

    background:
        rgba(17, 29, 47, 0.72);
}

.legal-card h2 {
    margin-bottom: 17px;

    font-size: 20px;
    font-weight: 800;
}

.legal-card p {
    margin-bottom: 14px;

    color: #aab6c6;

    font-size: 14px;

    line-height: 1.75;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: #8edbff;

    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

.legal-list {
    margin:
        15px
        0
        20px
        22px;

    color: #aab6c6;
}

.legal-list li {
    margin-bottom: 10px;

    line-height: 1.6;
}

.legal-footer {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    padding:
        30px
        0;

    display: flex;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    color: #647589;

    font-size: 11px;
}

.legal-footer div {
    display: flex;

    gap: 20px;
}

.legal-footer a {
    color: #78899d;

    text-decoration: none;
}

.legal-footer a:hover {
    color: #ffffff;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .process-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap:
            55px
            30px;
    }

    .step-line {
        display: none;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: auto;
    }

    .industry-card > p {
        min-height: auto;
    }
}


/* =====================================
   TABLET KLEIN
===================================== */

@media (max-width: 1050px) {

    .nav-links {
        display: none;
    }

    .brand {
        width: 315px;
    }

    .brand-ex {
        width: 155px;
    }

    .brand-wordmark {
        width: 230px;
    }

    .brand-claim {
        font-size: 10px;

        letter-spacing: 2.7px;
    }

    .hero {
        grid-template-columns: 1fr;

        gap: 55px;

        padding-top: 20px;
    }

    .hero-left {
        max-width: 850px;
    }

    .hero-robot {
        width: 210px;

        right: 4%;
        top: -90px;

        opacity: 0.14;
    }
}


/* =====================================
   KONTAKT TABLET
===================================== */

@media (max-width: 950px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-card {
        max-width: 650px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 650px) {

    .navbar {
        min-height: 150px;

        padding:
            8px
            5%;
    }

    .brand {
        width: 250px;
    }

    .brand-ex {
        width: 125px;
    }

    .brand-wordmark {
        width: 195px;
    }

    .brand-claim {
        font-size: 8px;

        letter-spacing: 1.8px;
    }

    .nav-button {
        display: none;
    }

    .hero {
        min-height: auto;

        padding-top: 15px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 39px;

        line-height: 1.06;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .trust-row {
        flex-direction: column;

        gap: 12px;
    }

    .hero-right {
        min-height: 500px;
    }

    .hero-robot {
        width: 165px;

        right: -5px;
        top: -75px;

        opacity: 0.10;
    }

    .automation-card {
        padding: 22px;
    }


    /* LEISTUNGEN */

    .services-section {
        padding:
            80px 5%
            90px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .section-intro {
        font-size: 17px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }


    /* PROZESS */

    .process-section {
        padding:
            80px 5%
            90px;
    }

    .process-heading {
        margin-bottom: 50px;
    }

    .process-heading h2 {
        font-size: 40px;
    }

    .process-heading > p:last-child {
        font-size: 17px;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 40px;

        margin-bottom: 55px;
    }

    .process-step {
        min-height: auto;
    }

    .process-cta {
        flex-direction: column;

        align-items: flex-start;

        padding:
            28px
            25px;
    }

    .process-cta h3 {
        font-size: 24px;
    }

    .process-button {
        width: 100%;

        text-align: center;
    }


    /* BRANCHEN */

    .industries-section {
        padding:
            80px 5%
            90px;
    }

    .industries-heading {
        margin-bottom: 42px;
    }

    .industries-heading h2 {
        font-size: 40px;
    }

    .industries-heading > p:last-child {
        font-size: 17px;
    }

    .industry-card {
        padding:
            28px
            25px;
    }

    .industry-card h3 {
        font-size: 25px;
    }

    .industry-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    /* KONTAKT */

    .contact-section {
        padding:
            80px 5%
            85px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

    .contact-intro {
        font-size: 17px;
    }

    .contact-card {
        padding:
            30px
            24px;
    }

    .contact-card h3 {
        font-size: 25px;
    }


    /* FOOTER */

    .footer {
        padding:
            45px 5%
            25px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    /* RECHTLICHE SEITEN */

    .legal-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .legal-container {
        margin-top: 30px;
    }

    .legal-card {
        padding:
            25px
            22px;
    }

    .legal-footer {
        flex-direction: column;
    }
}