/*
Theme: FahrtPilot
Datei: main-clean.css

Öffentliche Seiten:
- Startseite
- Funktionen
- Testversion
- Registrierung

Die interne Seite /app/ verwendet weiterhin die bisherige main.css.
*/

/* =========================================================
   01. GRUNDLAGEN
   ========================================================= */

:root {
    --fp-navy-950: #071f35;
    --fp-navy-900: #0a2c49;
    --fp-navy-800: #0d416d;
    --fp-blue-600: #1677e8;
    --fp-blue-500: #2387fa;
    --fp-blue-100: #eaf4ff;
    --fp-cyan-100: #eafafa;
    --fp-green-100: #ebf8ef;
    --fp-orange-100: #fff2e8;
    --fp-red-100: #fff0f1;
    --fp-purple-100: #f2edff;

    --fp-text: #0b2742;
    --fp-muted: #647184;
    --fp-border: #dce4ec;
    --fp-surface: #ffffff;
    --fp-surface-soft: #f5f8fc;
    --fp-background: #ffffff;

    --fp-radius-sm: 12px;
    --fp-radius-md: 18px;
    --fp-radius-lg: 26px;

    --fp-shadow:
        0 18px 45px rgba(11, 39, 66, 0.09);

    --fp-shadow-soft:
        0 10px 28px rgba(11, 39, 66, 0.07);

    --fp-container: 1160px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--fp-text);
    background: var(--fp-background);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.admin-bar {
    min-height: calc(100vh - 32px);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

main {
    display: block;
}

.container {
    width: min(
        var(--fp-container),
        calc(100% - 48px)
    );
    margin-inline: auto;
}

.eyebrow {
    display: inline-block;
    color: var(--fp-blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.centered {
    text-align: center;
}

/* =========================================================
   02. HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 228, 236, 0.72);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--fp-text);
    font-size: 18px;
    font-weight: 800;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    box-shadow: 0 7px 18px rgba(8, 41, 67, 0.18);
}

.main-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.main-nav a {
    color: #405269;
    font-size: 15px;
    font-weight: 700;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
    color: var(--fp-blue-600);
}

/* =========================================================
   03. BUTTONS
   ========================================================= */

.button {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 21px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--fp-radius-sm);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--fp-blue-500),
        var(--fp-blue-600)
    );
    box-shadow:
        0 10px 24px rgba(35, 135, 250, 0.22);
}

.button-primary:hover {
    box-shadow:
        0 13px 28px rgba(35, 135, 250, 0.30);
}

.button-secondary,
.fp-functions-secondary {
    color: var(--fp-text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.30);
}

.hero .button-primary {
    color: var(--fp-text);
    background: #ffffff;
    box-shadow: none;
}

.hero .button-secondary,
.fp-functions-secondary,
.fp-trial-actions .fp-functions-secondary {
    color: #ffffff;
}

.hero .button-secondary:hover,
.fp-functions-secondary:hover {
    background: rgba(255, 255, 255, 0.13);
}

/* =========================================================
   04. GEMEINSAME HERO-FLÄCHEN
   ========================================================= */

.hero,
.fp-functions-hero,
.fp-trial-hero,
.fp-trial-start-hero {
    padding: 32px 0 38px;
}

.hero-grid,
.fp-functions-hero-grid,
.fp-trial-hero-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--fp-radius-lg);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(70, 170, 255, 0.30),
            transparent 37%
        ),
        linear-gradient(
            120deg,
            var(--fp-navy-950) 0%,
            var(--fp-navy-800) 58%,
            #1775b8 100%
        );
    box-shadow: var(--fp-shadow);
}

.hero-grid::after,
.fp-functions-hero-grid::after,
.fp-trial-hero-inner::after {
    position: absolute;
    right: -120px;
    bottom: -190px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.hero-grid {
    display: grid;
    min-height: 500px;
    padding: 58px 54px;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    gap: 58px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy .eyebrow,
.fp-functions-intro .eyebrow,
.fp-trial-copy .eyebrow {
    color: #8ccaff;
}

.hero-copy h1,
.fp-functions-intro h1,
.fp-trial-copy h1 {
    margin: 15px 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 4.5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-copy h1 span,
.fp-functions-intro h1 span,
.fp-trial-copy h1 span {
    display: block;
    color: #8ccaff;
}

.hero-text,
.fp-functions-intro > p,
.fp-trial-copy > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.55;
}

.hero-actions,
.fp-functions-actions,
.fp-trial-actions {
    display: flex;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-points {
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 11px 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 700;
}

.hero-phone {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: center;
}

.hero-phone img {
    width: auto;
    max-width: 235px;
    max-height: 425px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 22px 28px rgba(0, 0, 0, 0.20)
        );
}

.phone-glow {
    position: absolute;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: rgba(90, 183, 255, 0.20);
    filter: blur(45px);
}

/* =========================================================
   05. GEMEINSAME ABSCHNITTE UND ÜBERSCHRIFTEN
   ========================================================= */

.section,
.fp-functions-section,
.fp-trial-section,
.fp-registration-section {
    padding: 62px 0;
}

.section-alt {
    background: var(--fp-surface-soft);
}

.section-heading,
.fp-functions-heading,
.fp-trial-heading {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading h2,
.fp-functions-heading h2,
.fp-trial-heading h2 {
    margin: 10px 0 12px;
    color: var(--fp-text);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p,
.fp-functions-heading p,
.fp-trial-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--fp-muted);
    font-size: 17px;
}

/* =========================================================
   06. STARTSEITE – ABLAUF
   ========================================================= */

.section-steps > .container {
    padding: 52px 32px 34px;
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-lg);
    background: var(--fp-surface-soft);
}

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

.app-step,
.app-step.reverse {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 455px;
    padding: 24px 24px 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(220, 228, 236, 0.82);
    border-radius: var(--fp-radius-md);
    background: #ffffff;
    box-shadow: var(--fp-shadow-soft);
}

.step-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: var(--fp-blue-500);
    font-size: 16px;
    font-weight: 900;
}

.step-copy {
    margin-top: 19px;
}

.step-copy h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.step-copy p {
    margin: 9px 0 0;
    color: var(--fp-muted);
    font-size: 15px;
    line-height: 1.48;
}

.step-phone {
    display: flex;
    min-height: 280px;
    margin-top: auto;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.step-phone img {
    width: auto;
    max-width: 175px;
    max-height: 290px;
    object-fit: contain;
}

/* =========================================================
   07. DESKTOP-VORSCHAU
   ========================================================= */

.desk-showcase,
.fp-functions-band {
    padding: 62px 0;
}

.desk-showcase > .container,
.fp-browser-showcase {
    padding: 48px 38px 34px;
    border-radius: var(--fp-radius-lg);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 86% 12%,
            rgba(53, 157, 255, 0.24),
            transparent 38%
        ),
        linear-gradient(
            120deg,
            var(--fp-navy-950),
            var(--fp-navy-800) 60%,
            #176dac
        );
    box-shadow: var(--fp-shadow);
}

.desk-heading,
.fp-browser-heading {
    display: grid;
    margin-bottom: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    align-items: end;
    gap: 42px;
}

.desk-heading h2,
.fp-browser-heading h2 {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.desk-heading h2 span,
.fp-browser-heading h2 span {
    display: block;
    color: #8ccaff;
}

.desk-heading p,
.fp-browser-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
}

.desk-frame,
.fp-browser-window {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.20);
}

.desk-frame-bar,
.fp-browser-bar {
    display: flex;
    min-height: 42px;
    padding: 0 16px;
    align-items: center;
    gap: 8px;
    color: #526176;
    background: #f2f5f8;
    border-bottom: 1px solid #dce4ec;
    font-size: 13px;
}

.desk-frame-bar span,
.fp-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd4dd;
}

.desk-frame-bar div,
.fp-browser-bar strong {
    margin-left: 12px;
}

.desk-frame img,
.fp-browser-window img {
    width: 100%;
    max-height: 590px;
    object-fit: cover;
    object-position: top;
}

.desk-highlights,
.fp-browser-benefits {
    display: grid;
    margin-top: 22px;
    overflow: hidden;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(4, 31, 54, 0.28);
}

.desk-highlights > div,
.fp-browser-benefits > div {
    padding: 18px 20px;
}

.desk-highlights > div + div,
.fp-browser-benefits > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.desk-highlights strong,
.fp-browser-benefits strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
}

.desk-highlights span,
.fp-browser-benefits span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

/* =========================================================
   08. FUNKTIONSKARTEN
   ========================================================= */

.feature-grid,
.fp-detail-grid,
.fp-management-grid,
.fp-trial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

.feature-card,
.fp-detail-card,
.fp-management-card,
.fp-trial-card {
    position: relative;
    min-height: 190px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-md);
    background: #ffffff;
    box-shadow: var(--fp-shadow-soft);
}

.feature-card::before,
.fp-detail-card::before,
.fp-management-card::before,
.fp-trial-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: var(--fp-blue-500);
}

.feature-card:nth-child(2)::before,
.fp-accent-orange::before,
.fp-card-orange::before,
.fp-trial-orange::before {
    background: #ef944c;
}

.feature-card:nth-child(3)::before,
.fp-accent-red::before {
    background: #ef6671;
}

.feature-card:nth-child(4)::before,
.fp-card-green::before,
.fp-trial-green::before {
    background: #52b779;
}

.feature-card:nth-child(5)::before,
.fp-card-purple::before {
    background: #8c73dd;
}

.feature-card:nth-child(6)::before,
.fp-accent-cyan::before,
.fp-trial-cyan::before {
    background: #4dafc7;
}

.feature-symbol,
.fp-detail-number,
.fp-trial-card > span {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    padding-inline: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--fp-blue-600);
    background: var(--fp-blue-100);
    font-size: 14px;
    font-weight: 900;
}

.feature-icon {
    display: none;
}

.feature-card h3,
.fp-detail-card h3,
.fp-management-card h3,
.fp-trial-card h3 {
    margin: 18px 0 8px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.fp-management-card > span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 9px;
    color: var(--fp-blue-600);
    background: var(--fp-blue-100);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feature-card p,
.fp-detail-card p,
.fp-management-card p,
.fp-trial-card p {
    margin: 0;
    color: var(--fp-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* =========================================================
   09. FUNKTIONSSEITE – HERO
   ========================================================= */

.fp-functions-hero-grid {
    display: grid;
    min-height: 500px;
    padding: 52px 48px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: 48px;
}

.fp-functions-intro,
.fp-functions-summary {
    position: relative;
    z-index: 2;
}

.fp-functions-summary {
    display: grid;
    gap: 12px;
}

.fp-summary-card {
    display: grid;
    min-height: 112px;
    padding: 18px 20px;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 14px;
    row-gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
}

.fp-summary-card > span {
    display: flex;
    width: 44px;
    height: 44px;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--fp-blue-600);
    background: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.fp-summary-green > span {
    color: #3ba66a;
    background: var(--fp-green-100);
}

.fp-summary-orange > span {
    color: #d97830;
    background: var(--fp-orange-100);
}

.fp-summary-card strong {
    grid-column: 2;
    grid-row: 1;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.22;
}

.fp-summary-card p {
    margin: 0;
    grid-column: 2;
    grid-row: 2;
    color: rgba(255, 255, 255, 0.77);
    font-size: 14px;
    line-height: 1.4;
}

.fp-functions-final,
.fp-trial-final {
    padding: 20px 0 54px;
}

.fp-functions-final-inner,
.fp-trial-final-inner,
.cta-box {
    display: flex;
    padding: 28px 0;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid #b9d9f6;
    border-bottom: 1px solid #b9d9f6;
}

.fp-functions-final h2,
.fp-trial-final h2,
.cta-box h2 {
    margin: 8px 0 6px;
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.fp-functions-final p,
.fp-trial-final p,
.cta-box p {
    margin: 0;
    color: var(--fp-muted);
}

/* =========================================================
   10. TESTVERSION
   ========================================================= */

.fp-trial-hero-inner {
    display: grid;
    min-height: 475px;
    padding: 52px 48px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.80fr);
    align-items: center;
    gap: 48px;
}

.fp-trial-copy,
.fp-trial-summary {
    position: relative;
    z-index: 2;
}

.fp-trial-summary {
    display: grid;
    gap: 12px;
}

.fp-trial-summary-card {
    display: grid;
    padding: 18px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
}

.fp-trial-summary-card > span {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--fp-blue-600);
    background: #ffffff;
    font-weight: 900;
}

.fp-trial-summary-card strong {
    color: #ffffff;
    font-size: 17px;
}

.fp-trial-summary-card p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.fp-trial-band {
    padding: 56px 0;
}

.fp-trial-band-inner {
    display: grid;
    padding: 40px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    border-radius: var(--fp-radius-lg);
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            var(--fp-navy-950),
            var(--fp-navy-800)
        );
}

.fp-trial-band h2 {
    margin: 9px 0 10px;
    font-size: 34px;
    line-height: 1.1;
}

.fp-trial-band p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.fp-trial-limit {
    display: grid;
    grid-template-columns: repeat(3, 110px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
}

.fp-trial-limit > div {
    padding: 18px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
}

.fp-trial-limit > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.fp-trial-limit strong {
    display: block;
    color: #ffffff;
    font-size: 28px;
}

.fp-trial-limit span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

/* =========================================================
   11. TESTVERSION STARTEN UND REGISTRIERUNG
   ========================================================= */

.fp-trial-start {
    background: #ffffff;
}

.fp-trial-start-hero {
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            var(--fp-navy-950),
            var(--fp-navy-800) 58%,
            #1775b8
        );
}

.fp-trial-start-heading {
    max-width: 800px;
    margin: 0 auto 34px;
    text-align: center;
}

.fp-trial-start-heading .eyebrow {
    color: #8ccaff;
}

.fp-trial-start-heading h1 {
    margin: 12px 0 15px;
    color: #ffffff;
    font-size: clamp(40px, 4vw, 54px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.fp-trial-start-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.fp-trial-start-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fp-trial-start-card {
    min-height: 215px;
    padding: 26px;
    border-radius: var(--fp-radius-md);
    color: var(--fp-text);
    background: #ffffff;
    box-shadow: var(--fp-shadow-soft);
}

.fp-trial-start-card > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--fp-blue-600);
    background: var(--fp-blue-100);
    font-weight: 900;
}

.fp-trial-start-card h2 {
    margin: 20px 0 8px;
    font-size: 22px;
}

.fp-trial-start-card p {
    margin: 0;
    color: var(--fp-muted);
    font-size: 15px;
}

.fp-registration-section {
    background: #ffffff;
}

.fp-registration-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
    align-items: start;
    gap: 56px;
}

.fp-registration-intro h2 {
    margin: 11px 0 14px;
    font-size: clamp(34px, 3.5vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.fp-registration-intro > p {
    margin: 0;
    color: var(--fp-muted);
    font-size: 17px;
}

.fp-registration-note {
    display: grid;
    margin-top: 26px;
    padding: 20px;
    gap: 5px;
    border: 1px solid #cfe3f7;
    border-radius: 15px;
    background: #f0f7ff;
}

.fp-registration-note strong {
    font-size: 16px;
}

.fp-registration-note span {
    color: var(--fp-muted);
    font-size: 14px;
}

.fp-registration-form {
    padding: 26px;
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-md);
    background: var(--fp-surface-soft);
    box-shadow: var(--fp-shadow-soft);
}

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

.fp-registration-field {
    margin-bottom: 16px;
}

.fp-registration-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 800;
}

.fp-registration-field input {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #ccd6e0;
    border-radius: 12px;
    color: var(--fp-text);
    background: #ffffff;
    outline: none;
}

.fp-registration-field input:focus {
    border-color: var(--fp-blue-500);
    box-shadow:
        0 0 0 3px rgba(35, 135, 250, 0.12);
}

.fp-registration-field input::placeholder {
    color: #96a2b2;
}

.fp-registration-consent {
    display: grid;
    margin: 2px 0 18px;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: var(--fp-muted);
    font-size: 14px;
}

.fp-registration-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.fp-registration-submit {
    width: 100%;
}

.fp-registration-status {
    margin-bottom: 18px;
    padding: 15px 16px;
    border-radius: 12px;
}

.fp-registration-error {
    color: #8f2630;
    background: var(--fp-red-100);
    border: 1px solid #efb6bb;
}

.fp-registration-success {
    color: #226540;
    background: var(--fp-green-100);
    border: 1px solid #b7dfc6;
}

.fp-registration-warning {
    color: #8a571f;
    background: var(--fp-orange-100);
    border: 1px solid #efcaa8;
}

.fp-registration-success-icon {
    display: flex;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #48ae70;
    font-weight: 900;
}

.fp-registration-success-title {
    display: block;
    font-size: 18px;
}

.fp-registration-success-text {
    margin: 7px 0 15px;
}

.fp-registration-token-box {
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.70);
}

.fp-registration-token-box label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.fp-registration-token-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
}

.fp-registration-token-row input {
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid #c9d7ce;
    border-radius: 10px;
    background: #ffffff;
}

.fp-copy-token-button {
    min-height: 44px;
}

.fp-registration-complete > input,
.fp-registration-complete > .fp-registration-row,
.fp-registration-complete > .fp-registration-field,
.fp-registration-complete > .fp-registration-consent,
.fp-registration-complete > .fp-registration-submit {
    display: none;
}

/* =========================================================
   12. FOOTER
   ========================================================= */

.site-footer {
    padding: 0 0 28px;
}

.footer-simple {
    display: grid;
    min-height: 82px;
    padding: 18px 24px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    color: #ffffff;
    background:
        linear-gradient(
            110deg,
            var(--fp-navy-950),
            var(--fp-navy-800),
            #176dac
        );
}

.footer-simple-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-simple-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.footer-simple-brand strong,
.footer-simple-brand span {
    display: block;
}

.footer-simple-brand span,
.footer-copy,
.footer-simple-nav a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
}

.footer-simple-nav {
    display: flex;
    gap: 20px;
}

.footer-simple-nav a:hover {
    color: #ffffff;
}

/* =========================================================
   13. TABLET
   ========================================================= */

@media (max-width: 1000px) {
    .hero-grid,
    .fp-functions-hero-grid,
    .fp-trial-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-phone {
        min-height: 320px;
    }

    .hero-phone img {
        max-height: 340px;
    }

    .app-steps,
    .feature-grid,
    .fp-trial-start-grid {
        grid-template-columns: 1fr;
    }

    .app-step,
    .app-step.reverse {
        min-height: 390px;
    }

    .desk-heading,
    .fp-browser-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fp-registration-layout {
        grid-template-columns: 1fr;
    }

    .fp-trial-band-inner {
        grid-template-columns: 1fr;
    }

    .footer-simple {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-simple-brand,
    .footer-simple-nav {
        justify-content: center;
    }
}

/* =========================================================
   14. SMARTPHONE
   ========================================================= */

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, var(--fp-container));
    }

    .header-inner {
        min-height: 68px;
    }

    .main-nav {
        display: none;
    }

    .hero,
    .fp-functions-hero,
    .fp-trial-hero,
    .fp-trial-start-hero {
        padding: 18px 0 28px;
    }

    .hero-grid,
    .fp-functions-hero-grid,
    .fp-trial-hero-inner {
        min-height: 0;
        padding: 34px 22px;
        border-radius: 20px;
        gap: 32px;
    }

    .hero-copy h1,
    .fp-functions-intro h1,
    .fp-trial-copy h1 {
        font-size: 38px;
    }

    .hero-text,
    .fp-functions-intro > p,
    .fp-trial-copy > p {
        font-size: 16px;
    }

    .hero-phone {
        min-height: 280px;
    }

    .hero-phone img {
        max-width: 190px;
        max-height: 310px;
    }

    .section,
    .fp-functions-section,
    .fp-trial-section,
    .fp-registration-section,
    .desk-showcase,
    .fp-functions-band {
        padding: 44px 0;
    }

    .section-steps > .container {
        padding: 34px 18px 20px;
    }

    .app-step,
    .app-step.reverse {
        min-height: 390px;
    }

    .feature-grid,
    .fp-detail-grid,
    .fp-management-grid,
    .fp-trial-grid {
        grid-template-columns: 1fr;
    }

    .desk-showcase > .container,
    .fp-browser-showcase {
        padding: 32px 18px 20px;
        border-radius: 20px;
    }

    .desk-highlights,
    .fp-browser-benefits {
        grid-template-columns: 1fr;
    }

    .desk-highlights > div + div,
    .fp-browser-benefits > div + div {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }

    .fp-functions-final-inner,
    .fp-trial-final-inner,
    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .fp-trial-limit {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-registration-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fp-registration-form {
        padding: 20px;
    }

    .fp-registration-token-row {
        grid-template-columns: 1fr;
    }

    .footer-simple-nav {
        flex-wrap: wrap;
    }
}

/* FAHRTPILOT TESTKARTEN-VERLAUF START */

.fp-trial-band-inner {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(58, 167, 255, 0.42) 0%,
            rgba(58, 167, 255, 0.18) 24%,
            transparent 48%
        ),
        linear-gradient(
            120deg,
            #07253f 0%,
            #0b3d67 48%,
            #176fae 100%
        );
}

.fp-trial-band-inner::after {
    position: absolute;
    right: -110px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fp-trial-band-inner > * {
    position: relative;
    z-index: 1;
}

/* FAHRTPILOT TESTKARTEN-VERLAUF ENDE */

/* FAHRTPILOT STARTSEITEN-POLITUR START */

/*
 * Das weiße Rechteck des iPhone-Screens verschwindet auf dem
 * blauen Hintergrund. Nur die eigentliche App-Darstellung bleibt sichtbar.
 */
body.home .hero-phone {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    background: transparent;
}

body.home .hero-phone img {
    display: block;
    width: auto;
    max-width: 100%;
    height: min(500px, 58vw);
    margin: 0 auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
    filter:
        drop-shadow(0 22px 24px rgba(3, 25, 48, 0.22))
        contrast(1.02);
}

/*
 * Startseite kompakter machen.
 */
body.home .hero {
    padding-top: 32px;
    padding-bottom: 34px;
}

body.home .section-steps {
    padding-top: 54px;
    padding-bottom: 54px;
}

body.home .section-steps .section-heading {
    margin-bottom: 34px;
}

body.home .desk-showcase {
    margin-top: 34px;
    margin-bottom: 34px;
    padding-top: 54px;
    padding-bottom: 0;
}

body.home .section-alt {
    margin-top: 34px;
    padding-top: 54px;
    padding-bottom: 54px;
}

body.home .section-alt .section-heading {
    margin-bottom: 32px;
}

body.home .section:last-of-type {
    padding-top: 42px;
    padding-bottom: 42px;
}

/*
 * Tablet und Smartphone.
 */
@media (max-width: 900px) {
    body.home .hero-phone img {
        height: auto;
        max-height: 520px;
    }

    body.home .hero,
    body.home .section-steps,
    body.home .section-alt {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    body.home .desk-showcase {
        margin-top: 24px;
        margin-bottom: 24px;
        padding-top: 42px;
    }
}

@media (max-width: 600px) {
    body.home .hero-phone img {
        width: min(260px, 78vw);
        height: auto;
    }

    body.home .hero,
    body.home .section-steps,
    body.home .section-alt {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

/* FAHRTPILOT STARTSEITEN-POLITUR ENDE */

/* FAHRTPILOT IPHONE-RAHMEN START */

body.home .hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.home .hero-phone img {
    width: 224px;
    height: 454px;
    object-fit: cover;
    object-position: center top;
    border: 7px solid #111827;
    border-radius: 34px;
    background: #ffffff;
    box-shadow:
        0 24px 48px rgba(0, 18, 38, 0.30),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    mix-blend-mode: normal;
    filter: none;
}

@media (max-width: 900px) {
    body.home .hero-phone img {
        width: 210px;
        height: 425px;
    }
}

@media (max-width: 600px) {
    body.home .hero-phone img {
        width: 188px;
        height: 380px;
        border-radius: 29px;
    }
}

/* FAHRTPILOT IPHONE-RAHMEN ENDE */

/* =========================================================
   FAHRTPILOT MARKTTEST HOMEPAGE 2026
   ========================================================= */

body.home {
    overflow-x: hidden;
}

/* ---------- HERO ---------- */

body.home .hero {
    position: relative;
    padding: 34px 0 56px;
}

body.home .hero-grid {
    position: relative;
    min-height: 610px;
    padding: 64px 72px;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
    gap: 64px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(40, 131, 207, .20);
    border-radius: 32px;
    background:
        radial-gradient(circle at 82% 18%, rgba(68, 173, 255, .20), transparent 31%),
        linear-gradient(135deg, #f8fcff 0%, #edf7ff 48%, #e4f2ff 100%);
    box-shadow:
        0 34px 80px rgba(22, 72, 116, .11),
        inset 0 1px 0 rgba(255,255,255,.85);
}

body.home .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 690px;
}

body.home .hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 13px;
    border: 1px solid rgba(32, 129, 207, .20);
    border-radius: 999px;
    background: rgba(255,255,255,.70);
    box-shadow: 0 6px 18px rgba(27, 103, 164, .07);
}

body.home .hero-copy h1 {
    max-width: 720px;
    margin: 20px 0 20px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

body.home .hero-copy h1 span {
    display: block;
    margin-top: 7px;
    color: #1877bd;
}

body.home .hero-text {
    max-width: 670px;
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
    color: #49657a;
}

body.home .hero-actions {
    margin-top: 30px;
    gap: 12px;
}

body.home .hero-points {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

body.home .hero-points span {
    padding: 7px 11px;
    border: 1px solid rgba(46, 118, 171, .14);
    border-radius: 999px;
    background: rgba(255,255,255,.64);
    color: #315a76;
    font-size: 13px;
    font-weight: 650;
}

/* ---------- IPHONE HERO ---------- */

body.home .hero-phone {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.home .hero-phone::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 155, 235, .28), rgba(51, 155, 235, 0) 70%);
}

body.home .hero-phone img {
    position: relative;
    z-index: 2;
    width: 236px;
    height: auto;
    max-height: none;
    object-fit: contain;
    border: 7px solid #111827;
    border-radius: 38px;
    background: #0e1724;
    box-shadow:
        0 30px 65px rgba(2, 27, 54, .30),
        0 7px 18px rgba(2, 27, 54, .16),
        inset 0 0 0 1px rgba(255,255,255,.10);
    filter: none;
    mix-blend-mode: normal;
}

/* ---------- MOBILE FLOW ---------- */

body.home .section-steps {
    padding: 82px 0 88px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

body.home .section-steps > .container {
    padding: 0;
}

body.home .section-heading {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
}

body.home .section-heading h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

body.home .section-heading p {
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    line-height: 1.7;
}

body.home .app-steps {
    gap: 22px;
}

body.home .app-step,
body.home .app-step.reverse {
    position: relative;
    min-height: 505px;
    overflow: hidden;
    border: 1px solid rgba(40, 123, 188, .15);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,248,255,.90));
    box-shadow: 0 22px 50px rgba(24, 77, 118, .09);
}

body.home .app-step:hover {
    transform: translateY(-3px);
    border-color: rgba(36, 134, 209, .28);
    box-shadow: 0 28px 62px rgba(24, 77, 118, .13);
}

body.home .app-step {
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

body.home .app-step .step-number {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: #1679bf;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(22, 121, 191, .23);
}

body.home .app-step .step-copy h3 {
    font-size: 27px;
    letter-spacing: -.025em;
}

body.home .app-step .step-copy p {
    max-width: 390px;
    font-size: 16px;
    line-height: 1.7;
}

body.home .step-phone img {
    width: 210px;
    max-height: 440px;
    object-fit: contain;
    border: 6px solid #111827;
    border-radius: 32px;
    background: #0e1724;
    box-shadow:
        0 24px 45px rgba(8, 34, 60, .24),
        inset 0 0 0 1px rgba(255,255,255,.12);
}

/* ---------- DESK SHOWCASE ---------- */

body.home .desk-showcase {
    position: relative;
    margin: 0;
    padding: 88px 0 94px;
    background:
        radial-gradient(circle at 12% 10%, rgba(30, 134, 211, .16), transparent 32%),
        linear-gradient(150deg, #061b2d 0%, #0a2942 54%, #0d3656 100%);
}

body.home .desk-showcase > .container {
    position: relative;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.home .desk-heading {
    margin-bottom: 36px;
}

body.home .desk-heading .eyebrow {
    color: #78c9ff;
}

body.home .desk-heading h2 {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1;
    letter-spacing: -.05em;
}

body.home .desk-heading h2 span {
    display: block;
    margin-top: 8px;
    color: #78c9ff;
}

body.home .desk-heading > p {
    color: rgba(229, 242, 252, .76);
    font-size: 17px;
    line-height: 1.75;
}

body.home .desk-frame {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    box-shadow:
        0 38px 90px rgba(0,0,0,.30),
        0 1px 0 rgba(255,255,255,.10) inset;
}

body.home .desk-frame-bar {
    min-height: 45px;
    background: rgba(5, 21, 35, .92);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

body.home .desk-frame img {
    display: block;
    width: 100%;
    height: auto;
}

body.home .desk-highlights {
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(12px);
}

body.home .desk-highlights > div {
    padding: 22px 24px;
}

body.home .desk-highlights strong {
    color: #ffffff;
}

body.home .desk-highlights span {
    color: rgba(222, 239, 251, .66);
}

/* ---------- DESK GALLERY ---------- */

body.home .fp-desk-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

body.home .fp-desk-gallery-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
    box-shadow: 0 24px 54px rgba(0,0,0,.18);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

body.home .fp-desk-gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(116, 205, 255, .34);
    box-shadow: 0 32px 66px rgba(0,0,0,.25);
}

body.home .fp-desk-gallery-card:last-child {
    grid-column: 1 / -1;
}

body.home .fp-desk-gallery-copy {
    padding: 24px 26px 22px;
}

body.home .fp-desk-gallery-copy .eyebrow {
    color: #70c7ff;
}

body.home .fp-desk-gallery-copy h3 {
    margin: 7px 0 8px;
    color: #ffffff;
    font-size: 25px;
    letter-spacing: -.025em;
}

body.home .fp-desk-gallery-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(222, 239, 251, .70);
    line-height: 1.65;
}

body.home .fp-desk-gallery-card img {
    display: block;
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(255,255,255,.09);
}

/* ---------- FEATURES ---------- */

body.home .section-alt {
    margin: 0;
    padding: 86px 0 92px;
    background:
        linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}

body.home .feature-grid {
    gap: 20px;
}

body.home .feature-card {
    min-height: 255px;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 15px 36px rgba(26, 81, 122, .08);
}

body.home .feature-card:hover {
    transform: translateY(-4px);
}

/* ---------- BETA ---------- */

body.home .fp-beta-section {
    padding: 74px 0 86px;
    background: #ffffff;
}

body.home .fp-beta-box {
    position: relative;
    overflow: hidden;
    padding: 44px 48px;
    border: 1px solid rgba(26, 124, 196, .20);
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 10%, rgba(54, 162, 235, .18), transparent 28%),
        linear-gradient(135deg, #eef8ff 0%, #f8fcff 100%);
    box-shadow: 0 26px 60px rgba(23, 81, 124, .11);
}

body.home .fp-beta-box::before,
body.home .fp-beta-box::after {
    display: none;
}

body.home .fp-beta-box h2 {
    max-width: 720px;
    margin: 8px 0 12px;
    font-size: clamp(31px, 3.3vw, 44px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

body.home .fp-beta-box p {
    max-width: 760px;
    line-height: 1.7;
}

body.home .fp-beta-benefit {
    margin-top: 14px !important;
    padding: 13px 16px;
    border: 1px solid rgba(24, 122, 192, .14);
    border-radius: 13px;
    background: rgba(255,255,255,.64);
    color: #254e6b !important;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1000px) {

    body.home .hero-grid {
        min-height: 0;
        padding: 50px 42px;
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 36px;
    }

    body.home .hero-copy h1 {
        font-size: clamp(43px, 7vw, 60px);
    }

    body.home .hero-phone {
        min-height: 430px;
    }

    body.home .hero-phone img {
        width: 210px;
    }

    body.home .fp-desk-gallery {
        grid-template-columns: 1fr;
    }

    body.home .fp-desk-gallery-card:last-child {
        grid-column: auto;
    }
}

@media (max-width: 760px) {

    body.home .hero {
        padding: 18px 0 38px;
    }

    body.home .hero-grid {
        padding: 38px 24px 42px;
        grid-template-columns: 1fr;
        gap: 30px;
        border-radius: 24px;
    }

    body.home .hero-copy {
        text-align: left;
    }

    body.home .hero-copy h1 {
        font-size: clamp(42px, 12vw, 55px);
        line-height: 1;
    }

    body.home .hero-text {
        font-size: 16px;
    }

    body.home .hero-actions {
        align-items: stretch;
    }

    body.home .hero-actions .button {
        justify-content: center;
        text-align: center;
    }

    body.home .hero-phone {
        min-height: 400px;
    }

    body.home .hero-phone img {
        width: 194px;
    }

    body.home .section-steps,
    body.home .section-alt,
    body.home .desk-showcase {
        padding-top: 60px;
        padding-bottom: 64px;
    }

    body.home .app-step,
    body.home .app-step.reverse {
        min-height: 0;
        padding-top: 28px;
        padding-bottom: 30px;
    }

    body.home .step-phone img {
        width: 184px;
        max-height: none;
    }

    body.home .desk-heading h2 {
        font-size: 42px;
    }

    body.home .fp-desk-gallery-copy {
        padding: 21px 21px 19px;
    }

    body.home .fp-beta-section {
        padding: 52px 0 62px;
    }

    body.home .fp-beta-box {
        padding: 30px 24px;
        border-radius: 21px;
    }
}

@media (max-width: 480px) {

    body.home .hero-grid {
        padding-left: 20px;
        padding-right: 20px;
    }

    body.home .hero-copy h1 {
        font-size: 39px;
    }

    body.home .hero-points {
        gap: 7px;
    }

    body.home .hero-points span {
        font-size: 12px;
    }

    body.home .hero-phone img {
        width: 178px;
    }

    body.home .section-heading h2 {
        font-size: 34px;
    }

    body.home .desk-heading h2 {
        font-size: 36px;
    }
}

/* FAHRTPILOT MARKTTEST HOMEPAGE 2026 ENDE */
