/* =====================================================
   GRUNDEINSTELLUNGEN
===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #050505;
    color: white;
    line-height: 1.6;
    overflow-x: clip;
}


/* =====================================================
   NAVIGATION
===================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(16px);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    text-decoration: none;

    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;

    font-size: 15px;
    opacity: 0.8;

    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 30px 60px;
}

.hero-label,
.section-label {
    font-size: 13px;
    letter-spacing: 4px;

    text-transform: uppercase;

    opacity: 0.6;
}

.hero-label {
    margin-bottom: 20px;
}

.hero h1 {
    max-width: 1100px;

    margin-bottom: 30px;

    font-size: clamp(48px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: -4px;

    transition:
        transform 0.05s linear,
        opacity 0.05s linear;

    will-change: transform, opacity;
}

.hero-description {
    max-width: 650px;

    margin-bottom: 40px;

    font-size: 20px;
    color: #b5b5b5;

    will-change: transform, opacity;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;

    will-change: transform, opacity;
}


/* =====================================================
   BUTTONS
===================================================== */

.button-primary,
.button-secondary {
    padding: 14px 25px;

    border-radius: 999px;

    text-decoration: none;
    font-weight: bold;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.button-primary {
    background-color: white;
    color: black;
}

.button-primary:hover {
    transform: translateY(-3px);
}

.button-secondary {
    border: 1px solid #555;
    color: white;
}

.button-secondary:hover {
    border-color: white;
    transform: translateY(-3px);
}


/* =====================================================
   ALLGEMEINE SECTIONS
===================================================== */

.services,
.about,
.contact {
    min-height: 100vh;

    padding: 120px 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services,
.contact {
    background-color: #0d0d0d;
}

.about {
    background-color: white;
    color: black;
}

.services>*,
.about>*,
.contact>* {
    width: 100%;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;
}

.services h2,
.about h2,
.contact h2 {
    margin-top: 20px;
    margin-bottom: 25px;

    font-size: clamp(40px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -2px;
}

.section-description {
    max-width: 700px;

    margin-bottom: 60px;

    font-size: 19px;
    color: #aaa;
}


/* =====================================================
   LEISTUNGEN
===================================================== */

.service-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    min-height: 320px;

    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background-color: #171717;

    border: 1px solid #262626;
    border-radius: 28px;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #555;
}

.service-card h3 {
    margin-bottom: 12px;

    font-size: 28px;
}

.service-card p {
    color: #aaa;
}


/* =====================================================
   SERVICE CARD VERZÖGERUNG
===================================================== */

.service-card:nth-child(1) {
    transition-delay: 1.0s;
}

.service-card:nth-child(2) {
    transition-delay: 1.5s;
}

.service-card:nth-child(3) {
    transition-delay: 2.0s;
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   STICKY SHOWCASE
===================================================== */

.sticky-showcase {
    /*
       Der Bereich ist absichtlich höher als das
       Browserfenster, damit wir Scroll-Strecke für
       unsere drei Schritte bekommen.

       Vorher: 300vh
    */

    height: 360vh;
    background-color: #050505;
}

.sticky-inner {
    position: sticky;

    top: 0;

    width: 100%;
    height: 100vh;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}


/* =====================================================
   STICKY INHALT
===================================================== */

.sticky-content {
    width: 100%;
    max-width: 1200px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


/* =====================================================
   STICKY LINKE SEITE
===================================================== */

.sticky-info {
    text-align: left;
}

.sticky-number {
    margin-top: 30px;

    font-size: 14px;
    color: #777;

    letter-spacing: 3px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.sticky-title {
    margin-top: 15px;

    font-size: clamp(50px, 6vw, 90px);
    line-height: 0.95;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.sticky-text {
    max-width: 500px;

    margin-top: 30px;

    font-size: 20px;
    color: #999;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* =====================================================
   STICKY TEXTWECHSEL
===================================================== */

.sticky-title.changing,
.sticky-text.changing,
.sticky-number.changing {
    opacity: 0;
}


/* =====================================================
   STICKY RECHTE SEITE
===================================================== */

.sticky-visual {
    position: relative;

    height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    background: #101010;

    border: 1px solid #222;
    border-radius: 40px;
}

/* =====================================================
   VISUAL SCENES
===================================================== */

.visual-scene {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 2;

    opacity: 0;
    transform: scale(0.85);

    pointer-events: none;

    transition:
        opacity 0.6s ease,
        transform 0.8s ease;
}

/* =====================================================
   PC VISUAL
===================================================== */

.computer {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.computer-screen {
    position: relative;

    width: 280px;
    height: 180px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            #222,
            #080808);

    border: 3px solid #555;
    border-radius: 14px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7);
}

.computer-screen-text {
    position: absolute;

    font-size: 18px;
    font-weight: bold;
    letter-spacing: 5px;

    opacity: 1;

    will-change: opacity, transform;
}

.computer-screen-logo {
    position: absolute;

    width: 145px;
    height: 145px;

    object-fit: contain;

    opacity: 0;
    transform: scale(0.55);

    filter:
        drop-shadow(0 0 12px rgba(0, 100, 255, 0.35));

    will-change: opacity, transform;
}

.computer-stand {
    width: 12px;
    height: 45px;

    background: #555;
}

.computer-base {
    width: 100px;
    height: 8px;

    background: #555;

    border-radius: 10px;
}

/* =====================================================
   NETWORK VISUAL
===================================================== */

.network-router {
    position: absolute;

    width: 130px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #181818;

    border: 1px solid #555;
    border-radius: 20px;

    z-index: 5;

    font-size: 13px;
    letter-spacing: 2px;

    box-shadow:
        0 0 60px rgba(255, 255, 255, 0.08);
}

.router-light {
    position: absolute;

    bottom: 12px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: white;

    animation: routerBlink 1.5s infinite;
}

@keyframes routerBlink {

    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 1;
    }
}


/* Geräte */

.network-device {
    position: absolute;

    width: 65px;
    height: 65px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #181818;

    border: 1px solid #333;
    border-radius: 18px;

    font-size: 30px;

    z-index: 4;

    opacity: 0;

    transform: scale(0.5);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.device-top {
    top: 60px;
}

.device-left {
    left: 70px;
}

.device-right {
    right: 70px;
}

.device-bottom {
    bottom: 60px;
}


/* =====================================================
   NETWORK LINIEN
===================================================== */

.network-line {
    position: absolute;

    background: rgba(255, 255, 255, 0.35);

    z-index: 1;
}

.line-top,
.line-bottom {
    width: 2px;
    height: 100px;

    left: 50%;

    transform: scaleY(0);
}

.line-left,
.line-right {
    width: 120px;
    height: 2px;

    top: 50%;

    transform: scaleX(0);
}

.line-top {
    top: 120px;

    transform-origin: bottom;
}

.line-bottom {
    bottom: 120px;

    transform-origin: top;
}

.line-left {
    left: 130px;

    transform-origin: right;
}

.line-right {
    right: 130px;

    transform-origin: left;
}

/* =====================================================
   REMOTE SUPPORT
===================================================== */

.remote-screen {
    width: 330px;

    overflow: hidden;

    background: #090909;

    border: 1px solid #444;
    border-radius: 18px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7);

    opacity: 0;
    transform: scale(0.8) translateY(30px);

    will-change: opacity, transform;
}

.remote-header {
    height: 35px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 15px;

    background: #181818;
}

.remote-header span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #555;
}

.remote-content {
    position: relative;

    height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 20px;
}

.remote-content p {
    font-size: 22px;
}

.remote-status {
    padding: 6px 14px;

    border: 1px solid #444;
    border-radius: 999px;

    font-size: 10px;
    letter-spacing: 2px;

    transition:
        transform 0.15s ease,
        opacity 0.15s ease,
        box-shadow 0.15s ease;

    will-change:
        transform,
        opacity,
        box-shadow;
}

.remote-cursor {
    position: absolute;

    left: 60px;
    top: 60px;

    width: 28px;
    height: 28px;

    opacity: 0;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 3L5 25L11 19L15 28L20 26L16 17L25 17Z' fill='white' stroke='black' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));

    will-change: opacity, transform;
}

/* =====================================================
   VISUAL HINTERGRUNDLICHT
===================================================== */

.visual-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.07) 40%,
            transparent 72%);

    filter: blur(55px);

    opacity: 0.75;

    transition:
        opacity 0.4s ease;

    will-change:
        transform,
        opacity;
}

/* =====================================================
   STICKY PROGRESS BAR
===================================================== */

.sticky-progress {
    position: absolute;

    bottom: 55px;

    width: min(500px, 80%);
}

.sticky-progress-track {
    position: relative;

    width: 100%;
    height: 2px;

    background: #252525;
}

.sticky-progress-bar {
    width: 0%;
    height: 100%;

    background: white;
}

.sticky-progress-dot {
    position: absolute;

    top: 50%;
    left: 0;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: white;

    transform:
        translate(-50%, -50%);

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.45);

    will-change: left;
}

.sticky-progress-labels {
    display: flex;
    justify-content: space-between;

    margin-top: 12px;
}

.sticky-progress-labels button {
    padding: 0;

    border: none;
    background: transparent;

    color: #555;

    font-family: inherit;
    font-size: 10px;
    letter-spacing: 2px;

    opacity: 0.55;

    cursor: pointer;

    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.sticky-progress-labels button:hover {
    color: white;
    opacity: 1;

    transform: translateY(-2px);
}

.sticky-progress-labels button.active {
    color: white;
    opacity: 1;
}

.sticky-progress-labels span {
    transition:
        color 0.3s ease,
        opacity 0.3s ease;

    opacity: 0.55;
}

.sticky-progress-labels span.active {
    color: white;
    opacity: 1;
}


/* =====================================================
   ÜBER UNS
===================================================== */

.about p:last-child {
    max-width: 750px;

    font-size: 22px;

    color: #444;
}


/* =====================================================
   KONTAKT
===================================================== */

.contact {
    min-height: 100vh;

    padding: 140px 30px;

    background: #0d0d0d;
}

.contact>* {
    width: 100%;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;
}


/* Überschrift */

.contact-heading {
    margin-bottom: 70px;
}

.contact-heading h2 {
    margin-top: 20px;
    margin-bottom: 25px;

    font-size: clamp(45px, 6vw, 80px);

    line-height: 0.95;
    letter-spacing: -3px;
}

.contact-heading>p:last-child {
    max-width: 620px;

    font-size: 19px;

    color: #999;
}


/* Zwei Spalten */

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr) minmax(300px, 0.75fr);

    gap: 30px;

    align-items: stretch;
}


/* Formular */

.contact-form-wrapper {
    padding: 40px;

    background: #141414;

    border: 1px solid #262626;
    border-radius: 30px;
}

#contact-form {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.contact-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.form-group label {
    font-size: 12px;

    letter-spacing: 1.5px;

    color: #888;
}


/* Inputs */

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 17px 18px;

    color: white;

    background: #0c0c0c;

    border: 1px solid #292929;
    border-radius: 14px;

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group textarea {
    min-height: 170px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;

    border-color: #777;

    background: #101010;

    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.03);
}


/* Anliegen Buttons */

.contact-topics {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.topic-button {
    padding: 10px 15px;

    border: 1px solid #333;
    border-radius: 999px;

    background: transparent;

    color: #888;

    font-family: inherit;
    font-size: 13px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.topic-button:hover {
    color: white;

    border-color: #666;

    transform: translateY(-2px);
}

.topic-button.active {
    background: white;

    color: black;

    border-color: white;
}


/* Submit */

.contact-submit {
    width: 100%;

    margin-top: 5px;

    padding: 17px 20px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    border: none;
    border-radius: 999px;

    background: white;

    color: black;

    font-family: inherit;
    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);
}

.submit-arrow {
    font-size: 20px;

    transition:
        transform 0.25s ease;
}

.contact-submit:hover .submit-arrow {
    transform: translateX(5px);
}


/* Nachricht nach Versand */

.form-message {
    min-height: 24px;

    font-size: 14px;

    color: #aaa;
}


/* Kontaktkarte rechts */

.contact-info {
    position: relative;

    padding: 40px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(145deg,
            #181818,
            #0b0b0b);

    border: 1px solid #262626;
    border-radius: 30px;

    overflow: hidden;
}

.contact-info::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -80px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    filter: blur(50px);
}

.contact-info-label {
    position: relative;

    font-size: 11px;

    letter-spacing: 3px;

    color: #666;
}

.contact-info h3 {
    position: relative;

    margin-top: 20px;

    font-size: 30px;
}

.contact-info-text {
    position: relative;

    margin-top: 20px;

    color: #888;

    font-size: 15px;
}


/* Mail */

.contact-info-item {
    position: relative;

    margin-top: 50px;

    padding-top: 25px;

    border-top: 1px solid #292929;
}

.contact-info-small {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;

    letter-spacing: 2px;

    color: #555;
}

.contact-info-item a {
    color: white;

    text-decoration: none;

    font-size: 16px;

    transition:
        opacity 0.25s ease;
}

.contact-info-item a:hover {
    opacity: 0.65;
}


/* Leistungen unten */

.contact-services {
    position: relative;

    margin-top: auto;
    padding-top: 50px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.contact-services span {
    color: #666;

    font-size: 13px;
}


/* =====================================================
   KONTAKT MOBILE
===================================================== */

@media (max-width: 800px) {

    .contact {
        padding:
            110px 20px;
    }

    .contact-heading {
        margin-bottom: 45px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 25px;

        border-radius: 24px;
    }

    .contact-info {
        min-height: 380px;
    }

}

.form-message.success {
    color: #9fe6ad;
}

.form-message.error {
    color: #ff8f8f;
}

.contact-submit:disabled {
    cursor: not-allowed;
    transform: none;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =====================================================
   RECHTLICHE SEITEN
===================================================== */

.legal-page {
    background: #050505;
    color: white;
}

.legal-nav {
    width: 100%;
    min-height: 80px;

    padding: 0 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid #1c1c1c;
}

.legal-logo {
    color: white;
    text-decoration: none;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
}

.legal-back {
    color: #888;
    text-decoration: none;

    font-size: 13px;

    transition: color 0.25s ease;
}

.legal-back:hover {
    color: white;
}


/* Inhalt */

.legal-container {
    width: min(900px, calc(100% - 40px));

    margin: 0 auto;

    padding: 120px 0 140px;
}

.legal-container > h1 {
    margin-top: 20px;
    margin-bottom: 80px;

    font-size: clamp(50px, 8vw, 90px);

    line-height: 0.95;
    letter-spacing: -4px;
}


/* einzelne Bereiche */

.legal-content section {
    padding: 40px 0;

    border-top: 1px solid #222;
}

.legal-content h2 {
    margin-bottom: 20px;

    font-size: 21px;
    font-weight: 500;
}

.legal-content p {
    max-width: 760px;

    margin-bottom: 15px;

    color: #999;

    font-size: 15px;
    line-height: 1.8;
}

.legal-content a {
    color: white;

    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}


/* Footer */

.legal-footer {
    padding: 30px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid #1c1c1c;

    color: #555;

    font-size: 12px;
}

.legal-footer div {
    display: flex;
    gap: 25px;
}

.legal-footer a {
    color: #777;
    text-decoration: none;

    transition: color 0.25s ease;
}

.legal-footer a:hover {
    color: white;
}

/* =====================================================
   PREISE SEITE
===================================================== */

.prices-page {
    background: #050505;
    color: white;
}


/* =====================================================
   PREISE HERO
===================================================== */

.prices-hero {
    width: min(1200px, calc(100% - 60px));
    min-height: 100vh;

    margin: 0 auto;
    padding: 100px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    will-change: transform, opacity;
}

.prices-hero .section-label {
    display: block;
    margin-bottom: 38px;
}

.prices-hero h1 {
    max-width: 1100px;
    margin: 0;

    font-size: clamp(60px, 7.5vw, 105px);
    line-height: 0.92;
    letter-spacing: -5px;
}

.prices-hero-text {
    max-width: 620px;
    margin-top: 45px;

    color: #888;
    font-size: 19px;
    line-height: 1.7;
}

/* =====================================================
   INHALT
===================================================== */

.prices-content {
    width: min(1200px, calc(100% - 60px));

    margin: 0 auto;

    padding-bottom: 140px;
}


/* =====================================================
   PREIS GRID
===================================================== */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}


/* =====================================================
   PREISKARTEN
===================================================== */

.price-card {
    position: relative;

    min-height: 285px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #141414,
            #090909
        );

    border:
        1px solid #292929;

    border-radius: 24px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.price-card::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    background:
        rgba(0, 100, 255, 0.09);

    filter:
        blur(45px);

    pointer-events: none;
}


.price-card:hover {
    transform:
        translateY(-6px);

    border-color:
        #4c4c4c;

    background:
        linear-gradient(
            145deg,
            #181818,
            #0b0b0b
        );
}


/* =====================================================
   ICON
===================================================== */

.price-icon {
    position: relative;

    min-height: 42px;

    margin-bottom: 23px;

    display: flex;
    align-items: center;

    color: #2588ff;

    font-size: 31px;

    font-weight: 700;
}


.price-icon-text {
    font-size: 17px;

    letter-spacing: 1px;
}


/* =====================================================
   TEXTE
===================================================== */

.price-card h3 {
    position: relative;

    margin-bottom: 13px;

    font-size: 21px;

    line-height: 1.15;
}


.price-card > p {
    position: relative;

    margin-bottom: 30px;

    color: #929292;

    font-size: 14px;

    line-height: 1.65;
}


/* =====================================================
   PREIS
===================================================== */

.price {
    position: relative;

    margin-top: auto;

    padding-top: 22px;

    display: flex;
    align-items: baseline;

    gap: 10px;

    border-top:
        1px solid #262626;
}


.price strong {
    color: #1683ff;

    font-size: 42px;

    line-height: 1;
}


.price span {
    color: #999;

    font-size: 13px;
}


/* =====================================================
   KOMPLETTPAKET
===================================================== */

.price-card.featured {
    border-color:
        rgba(0, 120, 255, 0.65);

    background:
        linear-gradient(
            145deg,
            #0e1a29,
            #090909
        );
}


.price-card.featured::before {
    background:
        rgba(0, 120, 255, 0.18);
}


.price-badge {
    position: absolute;

    top: 20px;
    right: 20px;

    padding:
        6px 10px;

    border:
        1px solid
        rgba(0, 130, 255, 0.45);

    border-radius: 999px;

    color: #278bff;

    font-size: 9px;

    letter-spacing: 1.5px;
}


/* =====================================================
   ANFAHRT
===================================================== */

.travel-pricing {
    margin-top: 18px;

    padding: 32px;

    background:
        #0d0d0d;

    border:
        1px solid #292929;

    border-radius: 24px;
}


.travel-pricing h3 {
    margin-bottom: 25px;

    font-size: 22px;
}


.travel-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.travel-grid > div {
    padding:
        12px 25px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    border-left:
        1px solid #242424;
}


.travel-grid > div:first-child {
    border-left: none;
}


.travel-grid span,
.travel-grid small {
    color: #888;

    font-size: 12px;
}


.travel-grid strong {
    color: #2588ff;

    font-size: 28px;
}


.travel-grid .price-on-request {
    font-size: 20px;
}


/* =====================================================
   PREISHINWEIS
===================================================== */

.pricing-note {
    margin-top: 15px;

    text-align: center;

    color: #666;

    font-size: 12px;
}


/* =====================================================
   KONTAKTBOX
===================================================== */

.pricing-contact {
    position: relative;

    margin-top: 35px;

    padding: 38px;

    display: grid;

    grid-template-columns:
        1fr 1fr auto;

    align-items: center;

    gap: 50px;

    background:
        linear-gradient(
            145deg,
            #111,
            #080808
        );

    border:
        1px solid #262626;

    border-radius: 26px;

    overflow: hidden;
}


.pricing-contact::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    top: -120px;

    border-radius: 50%;

    background:
        rgba(0, 110, 255, 0.1);

    filter:
        blur(60px);
}


.pricing-contact > * {
    position: relative;
}


.pricing-contact-label {
    color: #2588ff;

    font-size: 10px;

    letter-spacing: 2px;
}


.pricing-contact h3 {
    margin-top: 10px;

    font-size: 29px;
}


.pricing-contact p {
    margin-top: 8px;

    color: #888;

    font-size: 14px;
}


.pricing-contact-links {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.pricing-contact-links a,
.pricing-contact-links span {
    color: #aaa;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.25s ease;
}


.pricing-contact-links a:hover {
    color: white;
}


/* =====================================================
   CTA BUTTON
===================================================== */

.pricing-contact-button {
    padding:
        15px 22px;

    display: flex;

    align-items: center;

    gap: 14px;

    white-space: nowrap;

    background: white;

    border-radius: 999px;

    color: black;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;

    transition:
        transform 0.25s ease;
}


.pricing-contact-button:hover {
    transform:
        translateY(-3px);
}


.pricing-contact-button span {
    font-size: 19px;

    transition:
        transform 0.25s ease;
}


.pricing-contact-button:hover span {
    transform:
        translateX(5px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .pricing-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .travel-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 0;
    }


    .travel-grid > div {
        border-left: none;

        border-top:
            1px solid #242424;

        padding:
            20px 10px;
    }


    .travel-grid > div:nth-child(-n+2) {
        border-top: none;
    }


    .pricing-contact {
        grid-template-columns:
            1fr 1fr;
    }


    .pricing-contact-action {
        grid-column:
            1 / -1;
    }


    .pricing-contact-button {
        width: fit-content;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .prices-hero {
        width:
            calc(100% - 40px);

        padding:
            90px 0
            70px;
    }


    .prices-hero h1 {
        letter-spacing:
            -3px;
    }


    .prices-content {
        width:
            calc(100% - 40px);

        padding-bottom:
            100px;
    }


    .pricing-grid {
        grid-template-columns:
            1fr;
    }


    .price-card {
        min-height:
            auto;
    }


    .travel-pricing {
        padding:
            25px;
    }


    .travel-grid {
        grid-template-columns:
            1fr;
    }


    .travel-grid > div {
        padding:
            18px 0;

        border-top:
            1px solid #242424;
    }


    .travel-grid > div:nth-child(2) {
        border-top:
            1px solid #242424;
    }


    .travel-grid > div:first-child {
        border-top:
            none;
    }


    .pricing-contact {
        padding:
            28px;

        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .pricing-contact-button {
        width:
            100%;

        justify-content:
            center;
    }

}

/* =====================================================
   PREISE TEASER
===================================================== */

.price-teaser {
    width: min(1200px, calc(100% - 60px));

    margin: 0 auto;
    padding: 150px 0;

    border-bottom: 1px solid #1d1d1d;
}

.price-teaser h2 {
    max-width: 850px;

    margin-top: 20px;

    font-size: clamp(50px, 7vw, 90px);
    line-height: 0.95;
    letter-spacing: -4px;
}

.price-teaser > p:not(.section-label) {
    max-width: 580px;

    margin-top: 30px;

    color: #888;

    font-size: 17px;
    line-height: 1.7;
}

.price-teaser-button {
    width: fit-content;

    margin-top: 40px;
    padding: 15px 23px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: white;

    border-radius: 999px;

    color: black;
    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.price-teaser-button span {
    font-size: 19px;

    transition: transform 0.25s ease;
}

.price-teaser-button:hover {
    transform: translateY(-3px);
}

.price-teaser-button:hover span {
    transform: translateX(5px);
}


@media (max-width: 650px) {

    .price-teaser {
        width: calc(100% - 40px);

        padding: 100px 0;
    }

    .price-teaser h2 {
        letter-spacing: -2px;
    }
}


/* Mobile */

@media (max-width: 650px) {

    .legal-nav {
        padding: 0 20px;
    }

    .legal-logo {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .legal-container {
        padding-top: 80px;
    }

    .legal-container > h1 {
        margin-bottom: 50px;

        letter-spacing: -2px;
    }

    .legal-footer {
        padding: 30px 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 35px 30px;

    text-align: center;

    background-color: #050505;
    color: #777;

    font-size: 14px;
}


/* =====================================================
   SMARTPHONE
===================================================== */

@media (max-width: 800px) {

    /* Navigation */

    .navbar {
        padding: 18px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .legal-footer {
        padding: 30px 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

    /* Hero */

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 17px;
    }


    /* Leistungen */

    .service-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 250px;
    }


    /* Sticky Showcase */

    .sticky-showcase {
        height: 360vh;
        background-color: #050505;
    }

    .sticky-inner {
        padding: 90px 20px 50px;
    }

    .sticky-content {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .sticky-info {
        text-align: center;
    }

    .sticky-number {
        margin-top: 15px;
    }

    .sticky-title {
        font-size: clamp(42px, 12vw, 65px);
    }

    .sticky-text {
        margin-left: auto;
        margin-right: auto;

        font-size: 17px;
    }

    .sticky-visual {
        width: 100%;
        height: 300px;

        border-radius: 28px;
    }

    .visual-icon {
        font-size: 80px;
    }

    .sticky-progress {
        bottom: 25px;
    }
}