
/* =========================================================
   FARBEN / DESIGN-VARIABLEN
   ========================================================= */

:root {
    --eo-blue: #087fb4;
    --eo-blue-dark: #075f8c;
    --eo-teal: #00bfae;
    --eo-teal-soft: #e9fbf8;
    --eo-orange: #f4a21d;

    --eo-ink: #123047;
    --eo-muted: #617789;
    --eo-line: #dce8ee;
    --eo-soft: #f5fafc;
    --eo-white: #fff;

    --shadow: 0 22px 60px rgba(14, 66, 94, .12);
}


/* =========================================================
   GRUNDLAYOUT
   ========================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--eo-ink);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    background: #fff;
}

.page-shell {
    max-width: 1180px;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;

    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #e8f0f4;

    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 86px;
}

.brand-logo {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.nav-link {
    padding: .7rem .9rem !important;
    color: #526a7c !important;
    font-weight: 650;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn-login,
.btn-register,
.btn-primary-modern,
.btn-secondary-modern {
    padding: .75rem 1.25rem;
    border-radius: 999px;
    font-weight: 750;
}

.btn-login {
    border: 1px solid var(--eo-line);
    background: #fff;
    color: var(--eo-blue-dark);
}

.btn-register,
.btn-primary-modern {
    border: 0;
    background: linear-gradient(
        135deg,
        var(--eo-blue),
        var(--eo-teal)
    );
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 143, 170, .22);
}

.btn-secondary-modern {
    border: 1px solid var(--eo-line);
    background: #fff;
    color: var(--eo-blue-dark);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 88px 0 36px;

    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(0, 191, 174, .12),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 18%,
            rgba(8, 127, 180, .10),
            transparent 28%
        ),
        #fff;
}


/* Hero – kleine Überschrift */

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;

    color: var(--eo-blue);

    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow {
    padding: .5rem .8rem;

    border-radius: 999px;
    background: #edf8fc;

    text-transform: none;
    letter-spacing: .02em;
}

.pulse-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: var(--eo-teal);

    box-shadow:
        0 0 0 5px rgba(0, 191, 174, .10);
}


/* Hero – Hauptüberschrift */

.hero h1 {
    margin: 28px 0 24px;
    color: #0c4266;

    font-size: clamp(2.25rem, 3.2vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: -.035em;
    font-weight: 850;
}

.hero h1 .accent {
    display: block;
    color: var(--eo-teal);
}


/* Hero – Beschreibung */

.hero-copy {
    max-width: 620px;

    color: var(--eo-muted);

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


/* Hero – Buttons */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;

    margin-top: 30px;
}


/* Hero – Testhinweis */

.hero-note {
    margin-top: 13px;

    color: #617789;

    font-size: .93rem;
}

.hero-note i {
    color: var(--eo-teal);
}


/* =========================================================
   HERO-BILD
   ========================================================= */

.hero-image-wrap {
    position: relative;

    width: 100%;

    border-radius: 24px;
    overflow: hidden;

    /* Bild auf Desktop etwas nach rechts versetzen */
    transform: translateX(60px);
}

.hero-image {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 24px;
}


/* =========================================================
   ÄLTERE HERO-ELEMENTE
   derzeit nicht im neuen Hero benötigt
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 490px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    inset: 8% 0 0 8%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 191, 174, .19),
            rgba(8, 127, 180, .07) 45%,
            transparent 70%
        );
}

.hero-card {
    position: relative;

    width: min(520px, 100%);

    padding: 18px;

    background: #fff;
    border: 1px solid var(--eo-line);
    border-radius: 28px;

    box-shadow: var(--shadow);

    transform: rotate(1deg);
}

.hero-card img {
    display: block;

    width: 100%;

    border-radius: 20px;
}

.float-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    background: #fff;
    border: 1px solid var(--eo-line);
    border-radius: 16px;

    box-shadow:
        0 15px 35px rgba(15, 61, 87, .12);

    font-size: .9rem;
}

.float-card i {
    color: var(--eo-blue);
    font-size: 1.25rem;
}

.float-card strong {
    display: block;
}

.float-card small {
    color: var(--eo-muted);
}

.float-one {
    left: -28px;
    top: 18%;
}

.float-two {
    right: -20px;
    bottom: 12%;
}


/* =========================================================
   FEATURE-STRIP UNTER DEM HERO
   ========================================================= */

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 54px;

    overflow: hidden;

    background: #fff;
    border: 1px solid var(--eo-line);
    border-radius: 24px;

    box-shadow:
        0 14px 45px rgba(21, 72, 99, .07);
}

.feature-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 24px;

    color: inherit;
    text-decoration: none;

    border-right: 1px solid var(--eo-line);
}

.feature-link:last-child {
    border-right: 0;
}

.feature-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    background: #edf8fc;
    border-radius: 13px;

    color: var(--eo-blue);
    font-size: 1.25rem;
}

.feature-link:nth-child(2) .feature-icon {
    background: var(--eo-teal-soft);
    color: #008f83;
}

.feature-link:nth-child(3) .feature-icon {
    background: #fff6e7;
    color: #d98900;
}

.feature-link strong {
    display: block;
    margin-bottom: 4px;
}

.feature-link small {
    color: var(--eo-muted);
    line-height: 1.45;
}


/* =========================================================
   ALLGEMEINE SEKTIONEN
   ========================================================= */

.section {
    padding: 100px 0;
}

.section-soft {
    background: var(--eo-soft);
}

.section h2 {
    margin: 14px 0 20px;

    color: #0c4266;

    font-size: clamp(2.1rem, 3.5vw, 3.7rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.section-lead {
    color: var(--eo-muted);

    font-size: 1.1rem;
    line-height: 1.75;
}


/* =========================================================
   PRODUKT-PANEL / DASHBOARD
   ========================================================= */

.product-panel {
    overflow: hidden;

    background: #fff;
    border: 1px solid var(--eo-line);
    border-radius: 26px;

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

.panel-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 18px;

    background: #f8fbfc;
    border-bottom: 1px solid var(--eo-line);

    color: #6c8190;
    font-size: .84rem;
}

.dots span {
    display: inline-block;

    width: 9px;
    height: 9px;

    margin-right: 5px;

    background: #cad9e0;
    border-radius: 50%;
}


/* Dashboard */

.dashboard {
    display: grid;
    grid-template-columns: 180px 1fr;

    min-height: 340px;
}

.dash-side {
    padding: 25px 18px;

    background: #0d5276;
    color: #fff;
}

.dash-brand {
    margin-bottom: 26px;
    font-weight: 800;
}

.dash-menu {
    display: grid;
    gap: 9px;
}

.dash-menu span {
    padding: 10px 11px;

    border-radius: 10px;

    color: #cce5ef;
    font-size: .83rem;
}

.dash-menu span.active {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.dash-main {
    padding: 26px;
}

.dash-title {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 22px;
}

.dash-title strong {
    font-size: 1.2rem;
}

.mini-btn {
    padding: 8px 11px;

    background: var(--eo-teal);
    border-radius: 9px;

    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}


/* Dashboard – Kennzahlen */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat {
    padding: 16px;

    border: 1px solid var(--eo-line);
    border-radius: 15px;
}

.stat small {
    color: var(--eo-muted);
}

.stat b {
    display: block;

    margin-top: 4px;

    color: #0c4266;
    font-size: 1.5rem;
}


/* Dashboard – Terminplan */

.schedule {
    margin-top: 15px;
    padding: 16px;

    border: 1px solid var(--eo-line);
    border-radius: 15px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    gap: 8px;

    margin-top: 9px;
}

.slot {
    padding: 8px;

    background: #eaf7fb;
    border-radius: 8px;

    font-size: .72rem;
}

.slot.teal {
    background: #e5faf6;
}

.slot.orange {
    background: #fff3df;
}


/* =========================================================
   FUNKTIONSKARTEN
   ========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 42px;
}

.info-card {
    min-height: 210px;

    padding: 26px;

    background: #fff;
    border: 1px solid var(--eo-line);
    border-radius: 20px;
}

.info-card .icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    background: #edf8fc;
    border-radius: 14px;

    color: var(--eo-blue);
    font-size: 1.35rem;
}

.info-card:nth-child(3n+2) .icon {
    background: var(--eo-teal-soft);
    color: #008f83;
}

.info-card:nth-child(3n+3) .icon {
    background: #fff5e4;
    color: #d98900;
}

.info-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
}

.info-card p {
    margin: 0;

    color: var(--eo-muted);

    font-size: .94rem;
    line-height: 1.6;
}


/* =========================================================
   SCHRITTE
   ========================================================= */

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: flex;
    gap: 18px;

    padding: 20px;

    background: #fff;
    border: 1px solid var(--eo-line);
    border-radius: 18px;
}

.step-num {
    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    background: #eaf7fb;
    border-radius: 50%;

    color: var(--eo-blue);
    font-weight: 850;
}

.step p {
    margin: 4px 0 0;
    color: var(--eo-muted);
}


/* =========================================================
   CALL TO ACTION
   ========================================================= */

.cta {
    padding: 74px 0;
}

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

    padding: 48px;

    background:
        linear-gradient(
            135deg,
            #075f8c 0%,
            #087fb4 54%,
            #00a99c 100%
        );

    border-radius: 30px;

    color: #fff;

    box-shadow:
        0 25px 65px rgba(8, 95, 140, .24);
}

.cta h2 {
    margin: 7px 0 12px;

    font-size: clamp(2rem, 3.2vw, 3.2rem);
    letter-spacing: -.04em;
}

.cta p {
    max-width: 680px;
    margin: 0;

    color: #d9f1f5;
}

.cta .section-kicker {
    color: #bff7ee;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cta .btn-primary-modern {
    background: #fff;
    color: #075f8c;
}

.cta .btn-secondary-modern {
    background: transparent;
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 28px 0;

    border-top: 1px solid var(--eo-line);

    color: #6b7f8e;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-inner a {
    margin-left: 18px;

    color: #526b7d;
    text-decoration: none;
}


/* =========================================================
   MODAL / FORMULAR
   ========================================================= */

.modal-content {
    border: 0;
    border-radius: 22px;

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

.form-control {
    padding: .8rem 1rem;

    border-color: var(--eo-line);
    border-radius: 12px;
}


/* =========================================================
   TABLET
   bis 991 px
   ========================================================= */

@media (max-width: 991px) {

    .hero {
        padding-top: 58px;
    }

    /*
     * Auf kleineren Bildschirmen wird das Hero-Bild
     * nicht mehr nach rechts verschoben.
     */
    .hero-image-wrap {
        transform: none;
    }

    .hero-visual {
        min-height: 390px;
        margin-top: 15px;
    }

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

    .feature-link {
        border-right: 0;
        border-bottom: 1px solid var(--eo-line);
    }

    .feature-link:last-child {
        border-bottom: 0;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard {
        grid-template-columns: 130px 1fr;
    }

    .cta-inner {
        display: block;
    }

    .cta-actions {
        justify-content: flex-start;
        margin-top: 25px;
    }
}


/* =========================================================
   SMARTPHONE
   bis 650 px
   ========================================================= */

@media (max-width: 650px) {

    .hero h1 {
        font-size: 2.35rem;
        line-height: 1.08;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .float-card {
        display: none;
    }

    .dashboard {
        grid-template-columns: 1fr;
    }

    .dash-side {
        display: none;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .schedule-row {
        grid-template-columns: 55px 1fr;
    }

    .schedule-row .slot:last-child {
        display: none;
    }

    .cta-inner {
        padding: 32px 24px;
    }

    .footer-inner {
        display: block;
    }

    .footer-inner div {
        margin-top: 10px;
    }

    .footer-inner a {
        margin: 0 16px 0 0;
    }
}

/* =========================================================
   MULTI-STANDORT VISUALISIERUNG
   ========================================================= */

.multi-proof {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 30px;
    padding: 20px 22px;

    background: #fff;
    border: 1px solid var(--eo-line);
    border-radius: 18px;
}

.multi-proof-number {
    flex: 0 0 auto;

    color: var(--eo-teal);

    font-size: 3rem;
    line-height: 1;
    font-weight: 850;
}

.multi-proof strong {
    display: block;
    margin-bottom: 4px;

    color: #0c4266;
}

.multi-proof p {
    margin: 0;

    color: var(--eo-muted);

    font-size: .9rem;
    line-height: 1.5;
}


/* Visualisierung */

.multi-location-visual {
    padding: 32px;

    background: #fff;
    border: 1px solid var(--eo-line);
    border-radius: 26px;

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


/* Zentrale */

.multi-center {
    display: flex;
    align-items: center;
    gap: 16px;

    max-width: 360px;
    margin: 0 auto;
    padding: 20px;

    background: linear-gradient(
        135deg,
        #075f8c,
        #087fb4
    );

    border-radius: 18px;

    color: #fff;
}

.multi-center-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    background: rgba(255,255,255,.14);
    border-radius: 14px;

    font-size: 1.45rem;
}

.multi-center small {
    display: block;

    margin-bottom: 2px;

    color: #bfe5f3;

    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.multi-center strong {
    display: block;

    font-size: 1.15rem;
}

.multi-center span {
    display: block;

    margin-top: 2px;

    color: #d9f1f5;

    font-size: .8rem;
}


/* Verbindung */

.multi-lines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    width: 70%;
    height: 42px;

    margin: 0 auto;
}

.multi-lines span {
    position: relative;
}

.multi-lines span::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 0;

    width: 1px;
    height: 100%;

    background: #c9dfe8;
}


/* Standortkarten */

.multi-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.location-card {
    padding: 18px 14px;

    text-align: center;

    background: #f8fbfc;
    border: 1px solid var(--eo-line);
    border-radius: 16px;
}

.location-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin: 0 auto 13px;

    background: #eaf7fb;
    border-radius: 12px;

    color: var(--eo-blue);

    font-size: 1.15rem;
}

.location-card:nth-child(2) .location-icon {
    background: var(--eo-teal-soft);
    color: #008f83;
}

.location-card:nth-child(3) .location-icon {
    background: #fff5e4;
    color: #d98900;
}

.location-card small {
    display: block;

    margin-bottom: 5px;

    color: var(--eo-muted);

    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.location-card strong {
    display: block;

    color: #0c4266;

    font-size: .9rem;
}

.location-card span {
    display: inline-block;

    margin-top: 8px;
    padding: 3px 8px;

    background: #e8f8f5;
    border-radius: 999px;

    color: #008f83;

    font-size: .67rem;
    font-weight: 750;
}


/* Kernaussage */

.multi-caption {
    margin-top: 22px;

    text-align: center;

    color: var(--eo-muted);

    font-size: .9rem;
    font-weight: 650;
}

.multi-caption i {
    margin-right: 6px;
    color: var(--eo-teal);
}


/* Smartphone */

@media (max-width: 650px) {

    .multi-location-visual {
        padding: 22px 16px;
    }

    .multi-locations {
        grid-template-columns: 1fr;
    }

    .multi-lines {
        display: none;
    }

    .location-card {
        margin-top: 12px;
    }

    .multi-proof {
        align-items: flex-start;
    }

}


/* =========================================================
   LOGIN MODAL
   ========================================================= */

.login-modal {
    overflow: hidden;

    border: 1px solid var(--eo-line);
    border-radius: 24px;

    box-shadow:
        0 28px 80px rgba(14, 66, 94, .18);
}


/* Kopfbereich */

.login-modal-header {
    align-items: flex-start;

    padding: 30px 32px 18px;
}

.login-modal-header .modal-title {
    color: #0c4266;

    font-size: 1.75rem;
    font-weight: 850;
    letter-spacing: -.025em;
}

.login-intro {
    margin: 7px 0 0;

    color: var(--eo-muted);

    font-size: .95rem;
    line-height: 1.5;
}


/* Formularbereich */

.login-modal-body {
    padding: 12px 32px 32px;
}

.login-label {
    margin-bottom: 7px;

    color: #294b61;

    font-size: .86rem;
    font-weight: 750;
}


/* Eingabefelder mit Icon */

.login-input-wrap {
    position: relative;
}

.login-input-wrap > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: #78909f;

    font-size: 1rem;
}

.login-input {
    min-height: 52px;

    padding-left: 45px;

    background: #f8fbfc;
    border: 1px solid var(--eo-line);
    border-radius: 13px;

    color: var(--eo-ink);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.login-input:focus {
    background: #fff;

    border-color: var(--eo-blue);

    box-shadow:
        0 0 0 4px rgba(8, 127, 180, .09);
}


/* Passwort vergessen */

.login-forgot {
    color: var(--eo-blue);

    font-size: .86rem;
    font-weight: 650;

    text-decoration: none;
}

.login-forgot:hover {
    color: var(--eo-blue-dark);
    text-decoration: underline;
}


/* Login-Button */

.login-submit {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: .98rem;
}


/* Smartphone */

@media (max-width: 650px) {

    .login-modal-header {
        padding: 26px 22px 16px;
    }

    .login-modal-body {
        padding: 10px 22px 26px;
    }

    .login-modal-header .modal-title {
        font-size: 1.55rem;
    }

}

/* =========================================================
   REGISTRIERUNG
   ========================================================= */

.register-modal {
    overflow: hidden;

    border: 1px solid var(--eo-line);
    border-radius: 24px;

    box-shadow:
        0 28px 80px rgba(14, 66, 94, .18);
}


/* Kopf */

.register-modal-header {
    align-items: flex-start;

    padding: 30px 32px 18px;
}

.register-modal-header .modal-title {
    color: #0c4266;

    font-size: 1.75rem;
    font-weight: 850;
    letter-spacing: -.025em;
}

.register-intro {
    margin: 7px 0 0;

    color: var(--eo-muted);

    font-size: .95rem;
    line-height: 1.5;
}


/* Formular */

.register-modal-body {
    padding: 12px 32px 32px;
}

.register-label {
    margin-bottom: 7px;

    color: #294b61;

    font-size: .86rem;
    font-weight: 750;
}


/* Eingabefelder */

.register-input-wrap {
    position: relative;
}

.register-input-wrap > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: #78909f;

    font-size: 1rem;
}

.register-input {
    min-height: 52px;

    padding-left: 45px;

    background: #f8fbfc;
    border: 1px solid var(--eo-line);
    border-radius: 13px;

    color: var(--eo-ink);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.register-input:focus {
    background: #fff;

    border-color: var(--eo-blue);

    box-shadow:
        0 0 0 4px rgba(8, 127, 180, .09);
}


/* Captcha */

.register-captcha {
    display: flex;
    justify-content: center;

    margin: 24px 0 20px;
}


/* Meldungen */

.register-message {
    display: none;

    margin-top: 18px;
    padding: 12px 14px;

    border-radius: 11px;

    font-size: .88rem;
}

.register-message.error {
    display: block;

    color: #842029;

    background: #f8d7da;
    border: 1px solid #f5c2c7;
}

.register-message.success {
    display: block;

    color: #0f5132;

    background: #d1e7dd;
    border: 1px solid #badbcc;
}


/* Button */

.register-submit {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: .98rem;
}


/* Hinweis */

.register-note {
    margin: 13px 0 0;

    text-align: center;

    color: var(--eo-muted);

    font-size: .8rem;
}


/* Smartphone */

@media (max-width: 650px) {

    .register-modal-header {
        padding: 26px 22px 16px;
    }

    .register-modal-body {
        padding: 10px 22px 26px;
    }

    .register-modal-header .modal-title {
        font-size: 1.55rem;
    }

    .register-captcha {
        justify-content: flex-start;

        transform-origin: left top;
    }

}




