:root {
    --fp-navy: #0f2742;
    --fp-blue: #1677ff;
    --fp-blue-dark: #075ec9;
    --fp-light: #f4f8fc;
    --fp-white: #ffffff;
    --fp-text: #162033;
    --fp-muted: #667085;
    --fp-border: #dfe7f0;
    --fp-green: #2fbf71;
    --fp-orange: #ff9f32;
    --fp-shadow: 0 24px 60px rgba(15, 39, 66, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--fp-text);
    background: var(--fp-white);
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 39, 66, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--fp-navy);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--fp-white);
    background:
        linear-gradient(135deg, var(--fp-blue), #7557ff);
    box-shadow: 0 10px 24px rgba(22, 119, 255, 0.25);
}

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

.main-nav a {
    color: var(--fp-muted);
    font-weight: 650;
}

.main-nav a:hover {
    color: var(--fp-blue);
}

.hero {
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(22, 119, 255, 0.18),
            transparent 34%
        ),
        linear-gradient(180deg, #f9fbfe 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 72px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--fp-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--fp-navy);
    line-height: 1.14;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 5.7rem);
    letter-spacing: -0.055em;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.hero-text {
    max-width: 660px;
    margin: 0 0 34px;
    color: var(--fp-muted);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 750;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

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

.button-primary {
    color: var(--fp-white);
    background: var(--fp-blue);
    box-shadow: 0 14px 30px rgba(22, 119, 255, 0.24);
}

.button-primary:hover {
    background: var(--fp-blue-dark);
}

.button-secondary {
    color: var(--fp-navy);
    background: var(--fp-white);
    border-color: var(--fp-border);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--fp-muted);
    font-size: 0.94rem;
    font-weight: 650;
}

.hero-visual {
    position: relative;
}

.app-window {
    padding: 14px;
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--fp-shadow);
    transform: rotate(1.5deg);
}

.window-top {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-left: 8px;
}

.window-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d8e2ee;
}

.dashboard-preview {
    min-height: 430px;
    display: grid;
    grid-template-columns: 120px 1fr;
    overflow: hidden;
    border-radius: 18px;
    background: #f7f9fc;
}

.preview-sidebar {
    background:
        linear-gradient(180deg, #112d4d, #174878);
}

.preview-content {
    padding: 28px;
}

.preview-card {
    min-height: 105px;
    border: 1px solid rgba(15, 39, 66, 0.06);
    border-radius: 18px;
    background: var(--fp-white);
    box-shadow: 0 10px 24px rgba(15, 39, 66, 0.06);
}

.preview-card.large {
    min-height: 150px;
    margin-bottom: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(22, 119, 255, 0.12),
            rgba(47, 191, 113, 0.08)
        ),
        var(--fp-white);
}

.preview-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.preview-card.wide {
    min-height: 92px;
}

.section {
    padding: 92px 0;
}

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

.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

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

.feature-card,
.content-card {
    padding: 30px;
    border: 1px solid var(--fp-border);
    border-radius: 22px;
    background: var(--fp-white);
    box-shadow: 0 18px 42px rgba(15, 39, 66, 0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    background: var(--fp-light);
    font-size: 1.45rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--fp-muted);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 44px;
    border-radius: 28px;
    color: var(--fp-white);
    background:
        linear-gradient(135deg, var(--fp-navy), #154c7e);
    box-shadow: var(--fp-shadow);
}

.cta-box h2,
.cta-box .eyebrow {
    color: var(--fp-white);
}

.cta-box p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    padding: 48px 0;
    color: rgba(255, 255, 255, 0.72);
    background: #0b1f34;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: start;
    gap: 34px;
}

.site-footer strong {
    color: var(--fp-white);
}

.site-footer p {
    margin: 6px 0 0;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer a:hover {
    color: var(--fp-white);
}

.copyright {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .hero-grid,
    .feature-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-visual {
        max-width: 680px;
    }

    .main-nav {
        display: none;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        padding: 58px 0 64px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .dashboard-preview {
        min-height: 330px;
        grid-template-columns: 76px 1fr;
    }

    .preview-content {
        padding: 18px;
    }

    .preview-row {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .content-card,
    .cta-box {
        padding: 24px;
    }
}

.hero {
    padding: 72px 0 64px;
}

.hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone img {
    position: relative;
    z-index: 2;
    width: min(390px, 82%);
    max-height: 720px;
    object-fit: contain;
    border-radius: 38px;
    box-shadow: 0 34px 80px rgba(15, 39, 66, 0.2);
}

.phone-glow {
    position: absolute;
    inset: 12% 4% 10%;
    border-radius: 50%;
    background: rgba(22, 119, 255, 0.18);
    filter: blur(55px);
}

.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading p {
    color: var(--fp-muted);
    font-size: 1.08rem;
}

.section-steps {
    background: #f7f9fc;
}

.app-steps {
    display: grid;
    gap: 36px;
}

.app-step {
    display: grid;
    grid-template-columns: 70px 1fr 360px;
    align-items: center;
    gap: 36px;
    padding: 40px;
    border: 1px solid var(--fp-border);
    border-radius: 28px;
    background: var(--fp-white);
    box-shadow: 0 18px 50px rgba(15, 39, 66, 0.07);
}

.app-step.reverse {
    grid-template-columns: 360px 1fr 70px;
}

.app-step.reverse .step-number {
    grid-column: 3;
}

.app-step.reverse .step-copy {
    grid-column: 2;
    grid-row: 1;
}

.app-step.reverse .step-phone {
    grid-column: 1;
    grid-row: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--fp-white);
    background: var(--fp-blue);
    font-size: 1.25rem;
    font-weight: 800;
}

.step-copy h3 {
    font-size: 1.8rem;
}

.step-copy p {
    max-width: 560px;
    color: var(--fp-muted);
    font-size: 1.05rem;
}

.step-phone {
    display: flex;
    justify-content: center;
}

.step-phone img {
    width: 230px;
    max-height: 520px;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(15, 39, 66, 0.14);
}

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

.feature-symbol {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 13px;
    color: var(--fp-blue);
    background: rgba(22, 119, 255, 0.1);
    font-weight: 850;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-phone img {
        width: min(360px, 80%);
    }

    .app-step,
    .app-step.reverse {
        grid-template-columns: 60px 1fr;
    }

    .app-step .step-phone,
    .app-step.reverse .step-phone {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .app-step.reverse .step-number {
        grid-column: 1;
    }

    .app-step.reverse .step-copy {
        grid-column: 2;
        grid-row: 1;
    }

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

@media (max-width: 620px) {
    .hero-copy h1 {
        font-size: 2.65rem;
    }

    .app-step,
    .app-step.reverse {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .app-step .step-number,
    .app-step .step-copy,
    .app-step .step-phone,
    .app-step.reverse .step-number,
    .app-step.reverse .step-copy,
    .app-step.reverse .step-phone {
        grid-column: 1;
        grid-row: auto;
    }

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

/* Kompaktere FahrtPilot-Darstellung */

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

.brand {
    gap: 10px;
    font-size: 1.12rem;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 11px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(15, 39, 66, 0.16);
}

.hero {
    padding-top: 52px;
    padding-bottom: 52px;
}

.hero-grid {
    gap: 46px;
}

.hero-copy h1 {
    max-width: 650px;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 4.2vw, 3.9rem);
    line-height: 1.08;
}

.hero-text {
    margin-bottom: 28px;
    font-size: 1.08rem;
}

.hero-phone img {
    width: min(330px, 78%);
    max-height: 620px;
}

.section {
    padding-top: 64px;
    padding-bottom: 64px;
}

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

.section-heading h2,
.section-heading.centered h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    line-height: 1.12;
}

.eyebrow {
    margin-bottom: 11px;
    font-size: 0.74rem;
}

.app-steps {
    gap: 24px;
}

.app-step {
    grid-template-columns: 58px 1fr 280px;
    gap: 26px;
    padding: 28px 34px;
    border-radius: 22px;
}

.app-step.reverse {
    grid-template-columns: 280px 1fr 58px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.05rem;
}

.step-copy h3 {
    margin-bottom: 8px;
    font-size: 1.45rem;
}

.step-copy p {
    margin: 0;
    font-size: 1rem;
}

.step-phone img {
    width: 190px;
    max-height: 410px;
    border-radius: 22px;
}

.feature-grid {
    gap: 18px;
}

.feature-card {
    min-height: 210px;
    padding: 24px;
    border-radius: 18px;
}

.feature-card h3 {
    font-size: 1.12rem;
}

.feature-card p {
    font-size: 0.96rem;
}

.feature-symbol {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
}

.cta-box {
    padding: 34px;
    border-radius: 22px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

@media (max-width: 900px) {
    .app-step,
    .app-step.reverse {
        grid-template-columns: 52px 1fr;
    }
}

@media (max-width: 620px) {
    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .app-step,
    .app-step.reverse {
        padding: 22px;
    }
}

/* Ruhiger und professioneller Hero-Bereich */

.brand {
    gap: 7px;
}

.hero-copy h1 {
    max-width: 610px;
    margin: 0 0 22px;
    font-size: clamp(2.35rem, 3.7vw, 3.55rem);
    font-weight: 760;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.hero-copy h1 span {
    display: block;
    margin-top: 7px;
    color: #274d78;
    font-weight: 680;
}

.hero-copy .eyebrow {
    margin-bottom: 14px;
    color: #1677ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hero-text {
    max-width: 590px;
    margin-bottom: 26px;
    color: #667085;
    font-size: 1.04rem;
    line-height: 1.65;
}

@media (max-width: 620px) {
    .hero-copy h1 {
        font-size: 2.25rem;
        line-height: 1.08;
    }
}

/* Neuer geschlossener Hero-Bereich */

.hero {
    padding: 34px 0 54px;
    background: #ffffff;
}

.hero .container {
    width: min(1220px, calc(100% - 48px));
}

.hero-grid {
    position: relative;
    min-height: 610px;
    grid-template-columns: 1fr 0.82fr;
    gap: 40px;
    padding: 66px 68px;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(68, 151, 255, 0.28),
            transparent 34%
        ),
        linear-gradient(135deg, #0d2743 0%, #123d68 100%);
    box-shadow: 0 26px 70px rgba(15, 39, 66, 0.2);
}

.hero-copy {
    position: relative;
    z-index: 3;
    align-self: center;
}

.hero-copy .eyebrow {
    margin-bottom: 18px;
    color: #8bc4ff;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

.hero-copy h1 {
    max-width: 620px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(2.7rem, 4.2vw, 4.15rem);
    font-weight: 760;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.hero-copy h1 span {
    display: block;
    margin-top: 8px;
    color: #9dd0ff;
    font-weight: 650;
}

.hero-text {
    max-width: 570px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
    line-height: 1.65;
}

.hero-actions {
    margin-bottom: 26px;
}

.hero .button-primary {
    color: #123456;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.hero .button-primary:hover {
    background: #eef6ff;
}

.hero .button-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-points {
    color: rgba(255, 255, 255, 0.74);
}

.hero-phone {
    position: relative;
    z-index: 2;
    align-self: end;
    height: 540px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-phone img {
    width: 300px;
    max-height: none;
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(8px);
}

.phone-glow {
    inset: 8% 0 0;
    background: rgba(85, 164, 255, 0.32);
    filter: blur(70px);
}

@media (max-width: 900px) {
    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 48px 38px;
    }

    .hero-phone {
        height: 470px;
    }
}

@media (max-width: 620px) {
    .hero .container {
        width: min(100% - 24px, 1220px);
    }

    .hero-grid {
        padding: 38px 24px 0;
        border-radius: 24px;
    }

    .hero-copy h1 {
        font-size: 2.45rem;
    }

    .hero-phone {
        height: 430px;
    }

    .hero-phone img {
        width: 265px;
    }
}

/* FahrtPilotDesk Software-Showcase */

.desk-showcase {
    position: relative;
    overflow: hidden;
    padding: 86px 0 92px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(47, 141, 255, 0.24),
            transparent 30%
        ),
        linear-gradient(145deg, #081d32 0%, #103c66 100%);
}

.desk-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 44px;
}

.desk-heading .eyebrow {
    color: #79bbff;
}

.desk-heading h2 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.desk-heading h2 span {
    display: block;
    margin-top: 8px;
    color: #91c8ff;
    font-weight: 640;
}

.desk-heading p {
    max-width: 530px;
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.04rem;
    line-height: 1.7;
}

.desk-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.desk-frame-bar {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    color: #667085;
    background: #f5f7fa;
    border-bottom: 1px solid #e4e8ee;
}

.desk-frame-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d4dae2;
}

.desk-frame-bar div {
    margin-left: 12px;
    font-size: 0.82rem;
    font-weight: 700;
}

.desk-frame img {
    width: 100%;
    display: block;
}

.desk-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
}

.desk-highlights div {
    padding: 24px 26px;
    background: rgba(8, 29, 50, 0.84);
}

.desk-highlights strong,
.desk-highlights span {
    display: block;
}

.desk-highlights strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1rem;
}

.desk-highlights span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .desk-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .desk-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .desk-showcase {
        padding: 60px 0 66px;
    }

    .desk-heading h2 {
        font-size: 2.35rem;
    }

    .desk-frame {
        border-radius: 16px;
    }

    .desk-frame-bar {
        height: 38px;
    }
}

/* =========================================================
   FahrtPilot – kompakte Desktop-Darstellung
   ========================================================= */

.container {
    width: min(1120px, calc(100% - 40px));
}

/* Header */

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

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
}

.brand {
    gap: 8px;
    font-size: 1rem;
}

/* Hero */

.hero {
    padding: 22px 0 34px;
}

.hero .container {
    width: min(1120px, calc(100% - 40px));
}

.hero-grid {
    min-height: 480px;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    padding: 42px 52px;
    border-radius: 24px;
}

.hero-copy h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 3.4vw, 3.2rem);
    line-height: 1.02;
}

.hero-copy h1 span {
    margin-top: 5px;
}

.hero-text {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.55;
}

.hero-actions {
    margin-bottom: 20px;
}

.button {
    min-height: 44px;
    padding: 0 20px;
    border-radius: 11px;
    font-size: 0.92rem;
}

.hero-points {
    gap: 14px;
    font-size: 0.84rem;
}

.hero-phone {
    height: 430px;
}

.hero-phone img {
    width: 242px;
    border-radius: 28px;
}

/* Allgemeine Bereiche */

.section {
    padding: 48px 0;
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2,
.section-heading.centered h2 {
    max-width: 680px;
    font-size: clamp(1.75rem, 2.7vw, 2.35rem);
}

.section-heading p {
    font-size: 0.96rem;
}

.eyebrow {
    margin-bottom: 9px;
    font-size: 0.68rem;
}

/* Drei iPhone-Schritte kompakt nebeneinander */

.section-steps {
    padding: 48px 0 54px;
}

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

.app-step,
.app-step.reverse {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border-radius: 20px;
}

.app-step .step-number,
.app-step.reverse .step-number {
    order: 1;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 12px;
    font-size: 0.9rem;
}

.app-step .step-phone,
.app-step.reverse .step-phone {
    order: 2;
    width: 100%;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-step .step-copy,
.app-step.reverse .step-copy {
    order: 3;
    width: 100%;
}

.step-phone img {
    width: auto;
    max-width: 190px;
    height: 320px;
    max-height: 320px;
    object-fit: contain;
    border-radius: 21px;
}

.step-copy h3 {
    margin-bottom: 6px;
    font-size: 1.18rem;
}

.step-copy p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mac-Bereich */

.desk-showcase {
    padding: 56px 0 62px;
}

.desk-heading {
    grid-template-columns: 1fr 0.8fr;
    gap: 46px;
    margin-bottom: 28px;
}

.desk-heading h2 {
    max-width: 590px;
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.desk-heading p {
    font-size: 0.94rem;
    line-height: 1.6;
}

.desk-frame {
    border-radius: 18px;
}

.desk-frame-bar {
    height: 38px;
}

.desk-highlights {
    margin-top: 22px;
    border-radius: 14px;
}

.desk-highlights div {
    padding: 18px 20px;
}

.desk-highlights strong {
    font-size: 0.92rem;
}

.desk-highlights span {
    font-size: 0.82rem;
}

/* Funktionskarten */

.feature-grid {
    gap: 14px;
}

.feature-card {
    min-height: 172px;
    padding: 20px;
    border-radius: 16px;
}

.feature-symbol {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-size: 0.84rem;
}

.feature-card h3 {
    margin-bottom: 7px;
    font-size: 1.02rem;
}

.feature-card p {
    font-size: 0.87rem;
    line-height: 1.5;
}

/* Testversion */

.cta-box {
    gap: 26px;
    padding: 28px 32px;
    border-radius: 18px;
}

.cta-box h2 {
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 2.5vw, 2.15rem);
}

.cta-box p {
    font-size: 0.9rem;
}

/* Footer */

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

.site-footer p {
    font-size: 0.88rem;
}

/* Tablet */

@media (max-width: 900px) {
    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 38px;
    }

    .hero-phone {
        height: 390px;
    }

    .app-steps {
        grid-template-columns: 1fr;
    }

    .app-step,
    .app-step.reverse {
        display: grid;
        grid-template-columns: 50px 1fr 220px;
        align-items: center;
    }

    .app-step .step-number,
    .app-step.reverse .step-number {
        order: initial;
    }

    .app-step .step-copy,
    .app-step.reverse .step-copy {
        order: initial;
    }

    .app-step .step-phone,
    .app-step.reverse .step-phone {
        order: initial;
        min-height: 300px;
    }

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

/* Smartphone */

@media (max-width: 620px) {
    .container,
    .hero .container {
        width: min(100% - 24px, 1120px);
    }

    .hero-grid {
        padding: 30px 22px 0;
    }

    .hero-copy h1 {
        font-size: 2.15rem;
    }

    .hero-phone {
        height: 390px;
    }

    .app-step,
    .app-step.reverse {
        display: flex;
    }

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

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

/* Systemneutraler Desktop-Bereich */

.desk-showcase {
    scroll-margin-top: 80px;
}

.desk-showcase .container {
    position: relative;
}

.desk-showcase::before {
    content: "";
    display: block;
    position: absolute;
}

.desk-heading h2 span {
    color: #91c8ff;
}

/* Neuer Footer */

.site-footer {
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    background: #081d32;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.75fr);
    gap: 48px;
    padding-top: 52px;
    padding-bottom: 42px;
}

.footer-brand-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-line img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
}

.footer-brand-line strong {
    color: #ffffff;
    font-size: 1.08rem;
}

.footer-brand p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column strong {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }
}

/* Abschlussbereich ohne Kastenoptik */

.section:has(.cta-box) {
    padding-top: 46px;
    padding-bottom: 0;
    background: #0b2a48;
}

.section:has(.cta-box) .container {
    width: min(1120px, calc(100% - 40px));
}

.cta-box {
    margin: 0;
    padding: 34px 0 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.cta-box .eyebrow {
    color: #8fc7ff;
}

.cta-box h2 {
    color: #ffffff;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.68);
}

.cta-box .button-primary {
    background: #ffffff;
    color: #123c66;
    box-shadow: none;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #081d32;
}

.footer-main {
    padding-top: 38px;
    padding-bottom: 30px;
}

.footer-bottom {
    min-height: 50px;
}

@media (max-width: 620px) {
    .section:has(.cta-box) .container {
        width: min(100% - 24px, 1120px);
    }

    .cta-box {
        padding-top: 28px;
        padding-bottom: 32px;
    }
}

/* Heller Testbereich */

.section:has(.cta-box) {
    padding: 42px 0;
    background: #ffffff;
}

.section:has(.cta-box) .container {
    width: min(1120px, calc(100% - 40px));
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid #dfe7f0;
    border-bottom: 1px solid #dfe7f0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.cta-box .eyebrow {
    color: #1677ff;
}

.cta-box h2 {
    color: #0f2742;
    font-size: 1.85rem;
}

.cta-box p {
    color: #667085;
}

.cta-box .button-primary {
    color: #ffffff;
    background: #1677ff;
    box-shadow: none;
}

/* Schmaler Footer */

.site-footer {
    padding: 0;
    background: #081d32;
}

.footer-simple {
    min-height: 86px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 34px;
}

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

.footer-simple-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

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

.footer-simple-brand strong {
    color: #ffffff;
    font-size: 0.94rem;
}

.footer-simple-brand span {
    color: rgba(255,255,255,0.52);
    font-size: 0.76rem;
}

.footer-simple-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-simple-nav a {
    color: rgba(255,255,255,0.62);
    font-size: 0.8rem;
}

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

.footer-copy {
    color: rgba(255,255,255,0.45);
    font-size: 0.76rem;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .cta-box {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-simple {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

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

/* Footer exakt symmetrisch */

.site-footer {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 0 0 22px 22px;
    background: #081d32;
}

.footer-simple {
    width: 100%;
    min-height: 86px;
    padding-left: 34px;
    padding-right: 34px;
}

@media (max-width: 620px) {
    .site-footer {
        width: min(100% - 24px, 1120px);
        margin-bottom: 12px;
        border-radius: 0 0 18px 18px;
    }

    .footer-simple {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* Einheitliches FahrtPilot-Blau */

:root {
    --fp-dark-start: #0d2b4a;
    --fp-dark-end: #164f82;
    --fp-dark-shadow: 0 24px 60px rgba(8, 29, 50, 0.22);
}

.hero-grid,
.desk-showcase {
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(72, 158, 255, 0.24),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--fp-dark-start) 0%,
            var(--fp-dark-end) 100%
        );
}

.hero-grid {
    border-radius: 24px;
    box-shadow: var(--fp-dark-shadow);
}

.desk-showcase {
    box-shadow: none;
}

.desk-frame {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.desk-highlights {
    background: rgba(255, 255, 255, 0.12);
}

.desk-highlights div {
    background: rgba(8, 29, 50, 0.72);
}

/* =========================================================
   Einheitliches FahrtPilot-Designsystem
   ========================================================= */

:root {
    --fp-page-width: 1120px;
    --fp-radius: 20px;
    --fp-section-gap: 32px;
    --fp-border-soft: #dfe7f0;
    --fp-surface: #f5f8fc;
}

/* Einheitliche Seitenbreite */

.container,
.hero .container,
.section:has(.cta-box) .container {
    width: min(var(--fp-page-width), calc(100% - 40px));
}

/* Gleichmäßige Abstände zwischen Hauptbereichen */

.hero,
.section-steps,
.desk-showcase,
.section-alt,
.section:has(.cta-box) {
    margin-top: 0;
    margin-bottom: var(--fp-section-gap);
}

/* Hero und Desktop: identische Form */

.hero {
    padding: 0;
    background: transparent;
}

.hero-grid {
    width: 100%;
    border-radius: var(--fp-radius);
    box-shadow: 0 22px 55px rgba(8, 29, 50, 0.18);
}

.desk-showcase {
    width: min(var(--fp-page-width), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    padding: 52px 38px 54px;
    border-radius: var(--fp-radius);
    box-shadow: 0 22px 55px rgba(8, 29, 50, 0.18);
}

.desk-showcase > .container {
    width: 100%;
}

/* iPhone-Ablauf als eine gemeinsame Fläche */

.section-steps {
    width: min(var(--fp-page-width), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    padding: 42px 30px;
    border: 1px solid var(--fp-border-soft);
    border-radius: var(--fp-radius);
    background: var(--fp-surface);
}

.section-steps > .container {
    width: 100%;
}

.app-step,
.app-step.reverse {
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    background: #ffffff;
}

/* Funktionsbereich als eine gemeinsame Fläche */

.section-alt {
    width: min(var(--fp-page-width), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    padding: 42px 30px;
    border: 1px solid var(--fp-border-soft);
    border-radius: var(--fp-radius);
    background: var(--fp-surface);
}

.section-alt > .container {
    width: 100%;
}

.feature-card {
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    background: #ffffff;
}

/* Testversion bewusst ohne weiteren Kasten */

.section:has(.cta-box) {
    width: min(var(--fp-page-width), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    background: transparent;
}

.cta-box {
    padding: 30px 0;
    border-top: 1px solid var(--fp-border-soft);
    border-bottom: 1px solid var(--fp-border-soft);
}

/* Footer schlicht und gerade */

.site-footer {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.footer-simple {
    width: min(var(--fp-page-width), calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

/* Mobil */

@media (max-width: 620px) {
    .container,
    .hero .container,
    .section-steps,
    .desk-showcase,
    .section-alt,
    .section:has(.cta-box),
    .footer-simple {
        width: min(100% - 24px, var(--fp-page-width));
    }

    .section-steps,
    .desk-showcase,
    .section-alt {
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 16px;
    }

    .hero-grid {
        border-radius: 16px;
    }
}

/* Footer exakt wie die übrigen Hauptbereiche */

.site-footer {
    width: min(var(--fp-page-width), calc(100% - 40px));
    margin: 0 auto 24px;
    border-radius: var(--fp-radius);
    overflow: hidden;
    background: #081d32;
}

.footer-simple {
    width: 100%;
    min-height: 78px;
    margin: 0;
    padding-left: 28px;
    padding-right: 28px;
}

@media (max-width: 620px) {
    .site-footer {
        width: min(100% - 24px, var(--fp-page-width));
        margin-bottom: 12px;
        border-radius: 16px;
    }

    .footer-simple {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Footer mit identischem FahrtPilot-Verlauf */

.site-footer {
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(72, 158, 255, 0.24),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--fp-dark-start) 0%,
            var(--fp-dark-end) 100%
        );
    box-shadow: var(--fp-dark-shadow);
}

/* Trennlinie unter dem Kopfbereich entfernen */

.site-header {
    border-bottom: 0 !important;
    box-shadow: none;
}

.header-inner {
    border-bottom: 0;
}

/* =========================================================
   Funktionskarten – verfeinerte Darstellung
   ========================================================= */

.section-alt {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(36, 124, 255, 0.045),
            transparent 42%
        ),
        #f5f8fc;
}

.section-alt .section-heading {
    margin-bottom: 30px;
}

.section-alt .section-heading h2 {
    max-width: 760px;
    font-size: clamp(1.8rem, 2.6vw, 2.25rem);
    letter-spacing: -0.035em;
}

.feature-grid {
    gap: 16px;
}

.feature-card {
    position: relative;
    min-height: 184px;
    padding: 22px 22px 20px;
    overflow: hidden;
    border: 1px solid rgba(18, 55, 91, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 1px 2px rgba(16, 42, 67, 0.025),
        0 8px 22px rgba(16, 42, 67, 0.045);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--card-accent, #2382ff);
    opacity: 0.7;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(35, 130, 255, 0.18);
    box-shadow:
        0 2px 4px rgba(16, 42, 67, 0.035),
        0 16px 34px rgba(16, 42, 67, 0.085);
}

.feature-card:nth-child(1) {
    --card-accent: #2382ff;
    --card-soft: rgba(35, 130, 255, 0.10);
}

.feature-card:nth-child(2) {
    --card-accent: #f28a32;
    --card-soft: rgba(242, 138, 50, 0.11);
}

.feature-card:nth-child(3) {
    --card-accent: #ef5b62;
    --card-soft: rgba(239, 91, 98, 0.10);
}

.feature-card:nth-child(4) {
    --card-accent: #39a96b;
    --card-soft: rgba(57, 169, 107, 0.10);
}

.feature-card:nth-child(5) {
    --card-accent: #7867d9;
    --card-soft: rgba(120, 103, 217, 0.10);
}

.feature-card:nth-child(6) {
    --card-accent: #2279b8;
    --card-soft: rgba(34, 121, 184, 0.10);
}

.feature-symbol {
    width: 48px;
    height: 38px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 0 9px;
    border: 0;
    border-radius: 11px;
    color: var(--card-accent);
    background: var(--card-soft);
}

.feature-number {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.feature-icon {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}

.feature-card h3 {
    margin: 0 0 8px;
    color: #102a46;
    font-size: 1.04rem;
    font-weight: 750;
    letter-spacing: -0.018em;
}

.feature-card p {
    margin: 0;
    color: #647084;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* PDF kompakter darstellen */

.feature-card:nth-child(5) .feature-icon {
    font-size: 0.58rem;
    letter-spacing: -0.03em;
}

/* Auf kleinen Bildschirmen keine Hover-Bewegung */

@media (hover: none) {
    .feature-card:hover {
        transform: none;
    }
}

@media (max-width: 620px) {
    .feature-card {
        min-height: 0;
        padding: 20px;
    }
}

/* Funktionskarten: störende Zusatzsymbole entfernen */

.feature-icon {
    display: none !important;
}

.feature-symbol {
    width: 42px !important;
    height: 38px !important;
    padding: 0 !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.feature-number {
    display: block !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

/* Testversionsbereich: dezente Farblinie */

.test-section,
.trial-section,
.cta-section {
    position: relative;
}

.test-section::before,
.trial-section::before,
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #2382ff 0%,
        #7867d9 48%,
        #39a96b 100%
    );
    opacity: 0.78;
}

/* Testversion: farbige obere und untere Trennlinie */

.cta-box {
    position: relative !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.cta-box::before,
.cta-box::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #2382ff 0%,
        #7867d9 50%,
        #39a96b 100%
    );
    opacity: 0.72;
}

.cta-box::before {
    top: 0;
}

.cta-box::after {
    bottom: 0;
}

/* Testversion: Farblinien dezenter */

.cta-box::before,
.cta-box::after {
    height: 1px !important;
    opacity: 0.48 !important;
}


/* =========================================================
   FahrtPilot – eigenständige Funktionsseite
   ========================================================= */

.fp-functions-hero {
    padding: 44px 0;
}

.fp-functions-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 48px;
    align-items: center;
    padding: 64px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(54, 152, 255, .25), transparent 36%),
        linear-gradient(120deg, #082943 0%, #0d416d 55%, #176baa 100%);
    box-shadow: 0 24px 60px rgba(7, 39, 67, .16);
}

.fp-functions-intro h1 {
    max-width: 720px;
    margin: 14px 0 22px;
    color: #fff;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.fp-functions-intro h1 span,
.fp-functions-band h2 span {
    display: block;
    color: #82c5ff;
}

.fp-functions-intro > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 19px;
    line-height: 1.65;
}

.fp-functions-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.fp-functions-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
}

.fp-functions-secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, .15);
}

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

.fp-summary-card {
    position: relative;
    padding: 22px 24px 22px 76px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(12px);
}

.fp-summary-card > span {
    position: absolute;
    top: 22px;
    left: 22px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
}

.fp-summary-card strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 18px;
}

.fp-summary-card p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.5;
}

.fp-summary-blue > span {
    color: #1683ff;
    background: #e8f3ff;
}

.fp-summary-green > span {
    color: #27a860;
    background: #e9f8ef;
}

.fp-summary-orange > span {
    color: #ed892f;
    background: #fff1e6;
}

.fp-functions-section {
    padding: 78px 0;
}

.fp-functions-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.fp-functions-heading h2 {
    margin: 10px 0 14px;
    color: #092a49;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.fp-functions-heading p {
    margin: 0;
    color: #697586;
    font-size: 18px;
    line-height: 1.65;
}

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

.fp-detail-card,
.fp-management-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 30px;
    border: 1px solid #e1e7ef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(24, 50, 79, .07);
}

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

.fp-detail-number {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 13px;
    color: var(--fp-accent);
    background: color-mix(in srgb, var(--fp-accent) 11%, white);
    font-weight: 800;
}

.fp-detail-card h3,
.fp-management-card h3 {
    margin: 0 0 12px;
    color: #092a49;
    font-size: 23px;
}

.fp-detail-card p,
.fp-management-card p {
    margin: 0;
    color: #667386;
    line-height: 1.65;
}

.fp-accent-blue {
    --fp-accent: #2588ff;
}

.fp-accent-cyan {
    --fp-accent: #35a8c8;
}

.fp-accent-orange {
    --fp-accent: #f0933e;
}

.fp-accent-red {
    --fp-accent: #eb6570;
}

.fp-functions-band {
    padding: 72px 0;
    color: #fff;
}

.fp-functions-band-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    padding: 58px 64px;
    align-items: center;
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 12%, rgba(58, 156, 255, .25), transparent 36%),
        linear-gradient(120deg, #082943, #0c3b64 54%, #176baa);
    box-shadow: 0 24px 60px rgba(7, 39, 67, .15);
}

.fp-functions-band h2 {
    margin: 12px 0 20px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.fp-functions-band p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.65;
}

.fp-band-points {
    display: grid;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    background: rgba(4, 28, 49, .28);
}

.fp-band-points > div {
    padding: 20px 24px;
}

.fp-band-points > div + div {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.fp-band-points strong,
.fp-band-points span {
    display: block;
}

.fp-band-points strong {
    margin-bottom: 5px;
    font-size: 17px;
}

.fp-band-points span {
    color: rgba(255, 255, 255, .66);
}

.fp-management-card > span {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 7px 11px;
    border-radius: 9px;
    color: var(--fp-accent);
    background: color-mix(in srgb, var(--fp-accent) 10%, white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.fp-card-blue {
    --fp-accent: #2588ff;
}

.fp-card-orange {
    --fp-accent: #f0933e;
}

.fp-card-purple {
    --fp-accent: #8a73df;
}

.fp-card-green {
    --fp-accent: #40b97a;
}

.fp-functions-final {
    padding: 24px 0 70px;
}

.fp-functions-final-inner {
    position: relative;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 34px 38px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(
        90deg,
        #5a9cff,
        #8e7be8,
        #62bd84
    ) 1;
}

.fp-functions-final h2 {
    margin: 8px 0;
    color: #092a49;
    font-size: 31px;
}

.fp-functions-final p {
    margin: 0;
    color: #697586;
}

@media (max-width: 900px) {
    .fp-functions-hero-grid,
    .fp-functions-band-grid {
        grid-template-columns: 1fr;
        padding: 38px 28px;
    }

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

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

@media (max-width: 600px) {
    .fp-functions-hero {
        padding: 20px 0;
    }

    .fp-functions-hero-grid {
        gap: 34px;
        padding: 34px 22px;
        border-radius: 22px;
    }

    .fp-functions-intro h1 {
        font-size: 40px;
    }

    .fp-functions-section,
    .fp-functions-band {
        padding: 48px 0;
    }

    .fp-functions-band-grid {
        padding: 36px 22px;
        border-radius: 22px;
    }
}

/* =========================================================
   Funktionsseite – kompakter und einheitlicher
   ========================================================= */

.fp-functions-hero {
    padding: 22px 0 34px;
}

.fp-functions-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 34px;
    padding: 42px 46px;
    border-radius: 24px;
}

.fp-functions-intro h1 {
    max-width: 610px;
    margin: 10px 0 18px;
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.fp-functions-intro > p {
    max-width: 610px;
    font-size: 17px;
    line-height: 1.55;
}

.fp-functions-actions {
    gap: 12px;
    margin-top: 24px;
}

.fp-functions-summary {
    gap: 11px;
}

.fp-summary-card {
    min-height: 0;
    padding: 17px 20px 17px 67px;
    border-radius: 16px;
}

.fp-summary-card > span {
    top: 17px;
    left: 18px;
}

.fp-summary-card strong {
    font-size: 17px;
}

.fp-summary-card p {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.45;
}

/* Inhaltsabschnitte */

.fp-functions-section {
    padding: 54px 0;
}

.fp-functions-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.fp-functions-heading h2 {
    margin: 8px 0 11px;
    font-size: clamp(28px, 3vw, 38px);
}

.fp-functions-heading p {
    font-size: 16px;
    line-height: 1.55;
}

.fp-detail-grid,
.fp-management-grid {
    gap: 14px;
}

.fp-detail-card,
.fp-management-card {
    min-height: 178px;
    padding: 25px 27px;
    border-radius: 18px;
}

.fp-detail-card h3,
.fp-management-card h3 {
    margin-top: 14px;
    font-size: 20px;
}

.fp-detail-card p,
.fp-management-card p {
    font-size: 15px;
    line-height: 1.5;
}

/* Blauer Verwaltungsbereich */

.fp-functions-band {
    padding: 42px 0;
}

.fp-functions-band-grid {
    gap: 46px;
    padding: 42px 46px;
    border-radius: 24px;
}

.fp-functions-band h2 {
    margin: 9px 0 15px;
    font-size: clamp(30px, 3.5vw, 42px);
}

.fp-functions-band p {
    font-size: 16px;
    line-height: 1.55;
}

.fp-band-points {
    border-radius: 17px;
}

.fp-band-points > div {
    padding: 16px 20px;
}

/* Abschlussbereich */

.fp-functions-final {
    padding: 18px 0 42px;
}

.fp-functions-final-inner {
    gap: 24px;
    padding: 27px 30px;
}

.fp-functions-final h2 {
    font-size: 27px;
}

/* Tablet */

@media (max-width: 900px) {
    .fp-functions-hero-grid,
    .fp-functions-band-grid {
        padding: 32px 26px;
    }
}

/* Smartphone */

@media (max-width: 600px) {
    .fp-functions-hero-grid {
        padding: 28px 20px;
    }

    .fp-functions-intro h1 {
        font-size: 34px;
    }

    .fp-functions-section,
    .fp-functions-band {
        padding: 38px 0;
    }

    .fp-detail-card,
    .fp-management-card {
        min-height: 0;
        padding: 22px;
    }
}

/* =========================================================
   Funktionen – Browser-Verwaltung mit Vorschau
   ========================================================= */

.fp-functions-band {
    padding: 64px 0;
    color: #fff;
}

.fp-browser-showcase {
    padding: 52px 52px 42px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(74, 163, 255, 0.26),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #082943 0%,
            #0d416d 55%,
            #176baa 100%
        );
    box-shadow: 0 24px 60px rgba(7, 39, 67, 0.16);
}

.fp-browser-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 34px;
}

.fp-browser-heading h2 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.fp-browser-heading h2 span {
    display: block;
    color: #82c5ff;
}

.fp-browser-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.65;
}

.fp-browser-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(2, 22, 40, 0.24);
}

.fp-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    color: #687385;
    background: #f4f6f9;
    border-bottom: 1px solid #dfe4ea;
}

.fp-browser-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cfd5dd;
}

.fp-browser-bar strong {
    margin-left: 10px;
    font-size: 14px;
}

.fp-browser-window img {
    display: block;
    width: 100%;
    height: auto;
}

.fp-browser-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(4, 28, 49, 0.28);
}

.fp-browser-benefits > div {
    display: grid;
    gap: 6px;
    padding: 20px 22px;
}

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

.fp-browser-benefits strong {
    color: #fff;
    font-size: 16px;
}

.fp-browser-benefits span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .fp-browser-showcase {
        padding: 38px 28px 30px;
    }

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

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

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

@media (max-width: 600px) {
    .fp-functions-band {
        padding: 42px 0;
    }

    .fp-browser-showcase {
        padding: 30px 20px 22px;
        border-radius: 22px;
    }

    .fp-browser-heading h2 {
        font-size: 36px;
    }

    .fp-browser-window {
        border-radius: 16px;
    }
}

/* =========================================================
   Funktionen – Browserbereich kompakt und geschlossen
   ========================================================= */

.fp-functions-band {
    padding: 44px 0 !important;
}

.fp-browser-showcase {
    width: 100% !important;
    padding: 42px 42px 34px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.fp-browser-heading {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr) !important;
    gap: 46px !important;
    align-items: center !important;
    margin-bottom: 26px !important;
}

.fp-browser-heading h2 {
    font-size: clamp(32px, 3.5vw, 46px) !important;
}

.fp-browser-heading > p {
    font-size: 16px !important;
    line-height: 1.58 !important;
}

.fp-browser-window {
    width: 100% !important;
    max-height: 510px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
}

.fp-browser-bar {
    min-height: 42px !important;
}

.fp-browser-window img {
    display: block !important;
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
    object-position: top center !important;
}

.fp-browser-benefits {
    margin-top: 20px !important;
    border-radius: 16px !important;
}

.fp-browser-benefits > div {
    padding: 17px 20px !important;
}

@media (max-width: 900px) {
    .fp-browser-showcase {
        padding: 32px 26px 26px !important;
    }

    .fp-browser-heading {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .fp-browser-window {
        max-height: none !important;
    }

    .fp-browser-window img {
        height: auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 600px) {
    .fp-functions-band {
        padding: 30px 0 !important;
    }

    .fp-browser-showcase {
        padding: 26px 18px 20px !important;
        border-radius: 22px !important;
    }

    .fp-browser-heading h2 {
        font-size: 34px !important;
    }
}

/* =========================================================
   Funktionen – Browserbereich FINAL
   vollständig und unabhängig
   ========================================================= */

.fp-functions-band {
    width: 100% !important;
    padding: 44px 0 !important;
    color: #ffffff !important;
    background: transparent !important;
}

.fp-functions-band > .fp-browser-showcase {
    width: min(1180px, calc(100% - 40px)) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 42px 42px 34px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 26px !important;
    color: #ffffff !important;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(74, 163, 255, 0.28),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #082943 0%,
            #0d416d 55%,
            #176baa 100%
        ) !important;
    box-shadow: 0 24px 60px rgba(7, 39, 67, 0.16) !important;
}

.fp-browser-heading {
    display: grid !important;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(320px, 1.05fr) !important;
    gap: 46px !important;
    align-items: center !important;
    margin: 0 0 26px !important;
}

.fp-browser-heading .eyebrow {
    color: #63adff !important;
}

.fp-browser-heading h2 {
    margin: 12px 0 0 !important;
    color: #ffffff !important;
    font-size: clamp(32px, 3.5vw, 46px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.045em !important;
}

.fp-browser-heading h2 span {
    display: block !important;
    color: #82c5ff !important;
}

.fp-browser-heading > p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 16px !important;
    line-height: 1.58 !important;
}

.fp-browser-window {
    width: 100% !important;
    max-height: 510px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 50px rgba(2, 22, 40, 0.24) !important;
}

.fp-browser-bar {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    color: #687385 !important;
    background: #f4f6f9 !important;
    border-bottom: 1px solid #dfe4ea !important;
}

.fp-browser-bar span {
    width: 11px !important;
    height: 11px !important;
    flex: 0 0 11px !important;
    border-radius: 50% !important;
    background: #cfd5dd !important;
}

.fp-browser-bar strong {
    margin-left: 10px !important;
    color: #687385 !important;
    font-size: 14px !important;
}

.fp-browser-window img {
    display: block !important;
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
    object-position: top center !important;
}

.fp-browser-benefits {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    margin-top: 20px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 16px !important;
    background: rgba(4, 28, 49, 0.28) !important;
}

.fp-browser-benefits > div {
    display: grid !important;
    gap: 6px !important;
    padding: 17px 20px !important;
}

.fp-browser-benefits > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.fp-browser-benefits strong {
    color: #ffffff !important;
    font-size: 16px !important;
}

.fp-browser-benefits span {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

@media (max-width: 900px) {
    .fp-functions-band > .fp-browser-showcase {
        padding: 32px 26px 26px !important;
    }

    .fp-browser-heading {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .fp-browser-window {
        max-height: none !important;
    }

    .fp-browser-window img {
        height: auto !important;
        object-fit: contain !important;
    }

    .fp-browser-benefits {
        grid-template-columns: 1fr !important;
    }

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

@media (max-width: 600px) {
    .fp-functions-band {
        padding: 30px 0 !important;
    }

    .fp-functions-band > .fp-browser-showcase {
        width: calc(100% - 24px) !important;
        padding: 26px 18px 20px !important;
        border-radius: 22px !important;
    }

    .fp-browser-heading h2 {
        font-size: 34px !important;
    }
}

/* Funktionen-Seite: unbeabsichtigten blauen Punkt entfernen */

.fp-functions-hero-grid::before,
.fp-functions-hero-grid::after,
.fp-functions-intro::before,
.fp-functions-intro::after,
.fp-functions-summary::before,
.fp-functions-summary::after {
    content: none !important;
    display: none !important;
}

/* Funktionen-Seite: störenden blauen Punkt im Hero entfernen */

.fp-functions-hero-grid {
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(74, 163, 255, 0.24) 0%,
            rgba(74, 163, 255, 0.10) 24%,
            transparent 42%
        ),
        linear-gradient(
            120deg,
            #082943 0%,
            #0d416d 55%,
            #176baa 100%
        ) !important;
}

.fp-functions-hero-grid::before,
.fp-functions-hero-grid::after,
.fp-functions-intro::before,
.fp-functions-intro::after,
.fp-functions-summary::before,
.fp-functions-summary::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* =========================================================
   Funktionen – Fahrtenbuchbereich verfeinert
   ========================================================= */

.fp-functions-section#fahrten,
#fahrten.fp-functions-section {
    padding: 64px 0 58px !important;
}

#fahrten .fp-functions-heading {
    max-width: 820px !important;
    margin-bottom: 32px !important;
}

#fahrten .fp-functions-heading h2 {
    margin-top: 8px !important;
    margin-bottom: 12px !important;
    font-size: clamp(32px, 3.6vw, 46px) !important;
}

#fahrten .fp-functions-heading p {
    max-width: 760px !important;
    margin: 0 auto !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
}

#fahrten .fp-detail-grid {
    gap: 16px !important;
}

#fahrten .fp-detail-card {
    min-height: 205px !important;
    padding: 28px 30px !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 30px rgba(17, 44, 72, 0.06) !important;
}

#fahrten .fp-detail-number {
    margin-bottom: 24px !important;
}

#fahrten .fp-detail-card h3 {
    margin: 0 0 10px !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
}

#fahrten .fp-detail-card p {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
}

@media (max-width: 900px) {
    #fahrten.fp-functions-section {
        padding: 50px 0 !important;
    }

    #fahrten .fp-detail-card {
        min-height: 0 !important;
    }
}

@media (max-width: 600px) {
    #fahrten.fp-functions-section {
        padding: 42px 0 !important;
    }

    #fahrten .fp-detail-card {
        padding: 24px 22px !important;
        border-radius: 18px !important;
    }

    #fahrten .fp-detail-number {
        margin-bottom: 18px !important;
    }
}

/* =========================================================
   FahrtPilot – Testversion
   ========================================================= */

.fp-trial-hero {
    padding: 44px 0 58px;
}

.fp-trial-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 48px;
    align-items: center;
    padding: 58px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(
            circle at 86% 14%,
            rgba(72, 158, 255, .26),
            transparent 36%
        ),
        linear-gradient(
            120deg,
            #082943 0%,
            #0d416d 55%,
            #176baa 100%
        );
    box-shadow: 0 24px 60px rgba(7, 39, 67, .16);
}

.fp-trial-copy h1 {
    margin: 14px 0 22px;
    color: #fff;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.fp-trial-copy h1 span {
    display: block;
    color: #82c5ff;
}

.fp-trial-copy > p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 19px;
    line-height: 1.65;
}

.fp-trial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

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

.fp-trial-summary-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(12px);
}

.fp-trial-summary-card > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: #1675d1;
    font-weight: 800;
    background: #eef6ff;
}

.fp-trial-summary-card strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 17px;
}

.fp-trial-summary-card p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
}

.fp-trial-section {
    padding: 72px 0;
}

.fp-trial-heading {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
}

.fp-trial-heading h2 {
    margin: 10px 0 14px;
    color: #092a49;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.fp-trial-heading p {
    margin: 0;
    color: #697586;
    font-size: 18px;
    line-height: 1.65;
}

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

.fp-trial-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 30px;
    border: 1px solid #dfe5ec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(8, 38, 66, .07);
}

.fp-trial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--trial-accent);
}

.fp-trial-card > span {
    display: grid;
    width: 46px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--trial-accent);
    font-weight: 800;
    background: color-mix(in srgb, var(--trial-accent) 11%, white);
}

.fp-trial-card h3 {
    margin: 24px 0 10px;
    color: #092a49;
    font-size: 22px;
}

.fp-trial-card p {
    margin: 0;
    color: #697586;
    font-size: 16px;
    line-height: 1.6;
}

.fp-trial-blue {
    --trial-accent: #2f86eb;
}

.fp-trial-cyan {
    --trial-accent: #3ca8bd;
}

.fp-trial-orange {
    --trial-accent: #ed8b36;
}

.fp-trial-green {
    --trial-accent: #40b97a;
}

.fp-trial-band {
    padding: 54px 0;
    color: #fff;
}

.fp-trial-band-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 64px;
    align-items: center;
    padding: 48px 52px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 86% 12%,
            rgba(72, 158, 255, .24),
            transparent 36%
        ),
        linear-gradient(
            120deg,
            #082943 0%,
            #0d416d 55%,
            #176baa 100%
        );
    box-shadow: 0 24px 60px rgba(7, 39, 67, .15);
}

.fp-trial-band h2 {
    margin: 12px 0 18px;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.fp-trial-band p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 18px;
    line-height: 1.65;
}

.fp-trial-limit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 20px;
    background: rgba(4, 28, 49, .28);
}

.fp-trial-limit > div {
    display: grid;
    gap: 4px;
    padding: 26px 18px;
    text-align: center;
}

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

.fp-trial-limit strong {
    color: #fff;
    font-size: 34px;
}

.fp-trial-limit span {
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
}

.fp-trial-final {
    padding: 28px 0 68px;
}

.fp-trial-final-inner {
    position: relative;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 32px 38px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(
        90deg,
        #5a9cff,
        #8e7be8,
        #62bd84
    ) 1;
}

.fp-trial-final h2 {
    margin: 8px 0;
    color: #092a49;
    font-size: 31px;
}

.fp-trial-final p {
    margin: 0;
    color: #697586;
}

@media (max-width: 900px) {
    .fp-trial-hero-inner,
    .fp-trial-band-inner {
        grid-template-columns: 1fr;
        padding: 38px 28px;
    }

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

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

@media (max-width: 600px) {
    .fp-trial-hero {
        padding: 20px 0 38px;
    }

    .fp-trial-hero-inner {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .fp-trial-copy h1 {
        font-size: 40px;
    }

    .fp-trial-section,
    .fp-trial-band {
        padding: 46px 0;
    }

    .fp-trial-card {
        min-height: 0;
        padding: 24px;
    }

    .fp-trial-band-inner {
        padding: 34px 22px;
        border-radius: 22px;
    }

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

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

/* =========================================================
   Testversion starten
   ========================================================= */

.fp-trial-start {
    background:
        radial-gradient(circle at 88% 8%, rgba(31, 138, 255, 0.08), transparent 32%),
        #ffffff;
}

.fp-trial-start-hero {
    padding: 72px 0 88px;
}

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

.fp-trial-start-heading .eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.fp-trial-start-heading h1 {
    max-width: 760px;
    margin: 0 auto 20px;
    color: #0c2d50;
    font-size: clamp(44px, 5.2vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.fp-trial-start-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #667085;
    font-size: 19px;
    line-height: 1.65;
}

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

.fp-trial-start-card {
    position: relative;
    min-height: 250px;
    padding: 34px 32px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(12, 45, 80, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(12, 45, 80, 0.08);
}

.fp-trial-start-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, #2388ff, #42b7bd);
}

.fp-trial-start-card:nth-child(2)::before {
    background: linear-gradient(90deg, #42b7bd, #f18a45);
}

.fp-trial-start-card:nth-child(3)::before {
    background: linear-gradient(90deg, #f18a45, #55bd78);
}

.fp-trial-start-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 44px;
    margin-bottom: 28px;
    color: #2388ff;
    background: rgba(35, 136, 255, 0.09);
    border-radius: 13px;
    font-size: 17px;
    font-weight: 800;
}

.fp-trial-start-card:nth-child(2) > span {
    color: #269aa4;
    background: rgba(66, 183, 189, 0.11);
}

.fp-trial-start-card:nth-child(3) > span {
    color: #e87d36;
    background: rgba(241, 138, 69, 0.12);
}

.fp-trial-start-card h2 {
    margin: 0 0 13px;
    color: #0c2d50;
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.fp-trial-start-card p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.6;
}

.fp-trial-start-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 42px;
    background: linear-gradient(118deg, #082f53 0%, #0a5689 56%, #237fcc 100%);
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(8, 47, 83, 0.18);
}

.fp-trial-start-action .eyebrow {
    color: #5daeff;
}

.fp-trial-start-action h2 {
    margin: 8px 0 8px;
    color: #ffffff;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.fp-trial-start-action p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
}

.fp-trial-start-action .button {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .fp-trial-start-hero {
        padding: 52px 0 68px;
    }

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

    .fp-trial-start-card {
        min-height: 0;
    }

    .fp-trial-start-action {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .fp-trial-start-heading {
        text-align: left;
    }

    .fp-trial-start-heading h1 {
        font-size: 48px;
    }

    .fp-trial-start-card {
        padding: 28px 24px;
    }

    .fp-trial-start-action {
        padding: 32px 26px;
    }

    .fp-trial-start-action .button {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   Testzugang – Registrierungsmaske
   ========================================================= */

.fp-registration-section {
    padding: 12px 0 90px;
}

.fp-registration-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 54px;
    align-items: start;
    padding: 50px;
    background: #ffffff;
    border: 1px solid rgba(12, 45, 80, 0.11);
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(12, 45, 80, 0.09);
}

.fp-registration-intro {
    padding: 12px 8px;
}

.fp-registration-intro h2 {
    margin: 12px 0 18px;
    color: #0c2d50;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.fp-registration-intro > p {
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.65;
}

.fp-registration-note {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
    padding: 20px 22px;
    background: rgba(35, 136, 255, 0.07);
    border: 1px solid rgba(35, 136, 255, 0.13);
    border-radius: 17px;
}

.fp-registration-note strong {
    color: #0c2d50;
    font-size: 16px;
}

.fp-registration-note span {
    color: #667085;
    font-size: 15px;
}

.fp-registration-form {
    padding: 32px;
    background: #f8fafc;
    border: 1px solid rgba(12, 45, 80, 0.08);
    border-radius: 22px;
}

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

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

.fp-registration-field label {
    display: block;
    margin-bottom: 8px;
    color: #0c2d50;
    font-size: 15px;
    font-weight: 750;
}

.fp-registration-field input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    color: #0c2d50;
    background: #ffffff;
    border: 1px solid rgba(12, 45, 80, 0.16);
    border-radius: 13px;
    outline: none;
    font: inherit;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.fp-registration-field input:focus {
    border-color: #2388ff;
    box-shadow: 0 0 0 4px rgba(35, 136, 255, 0.11);
}

.fp-registration-field input::placeholder {
    color: #98a2b3;
}

.fp-registration-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 2px 0 24px;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.fp-registration-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #2388ff;
}

.fp-registration-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.fp-registration-status {
    margin: 13px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.fp-registration-success {
    margin: 0;
    padding: 32px;
    color: #12372a;
    text-align: center;
    background: linear-gradient(145deg, #f1fff8 0%, #e4f9ee 100%);
    border: 2px solid #55b98b;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(20, 112, 75, 0.12);
}

.fp-registration-success-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    place-items: center;
    background: #16865b;
    border-radius: 50%;
}

.fp-registration-success-title {
    display: block;
    margin-bottom: 10px;
    color: #0c4933;
    font-size: 24px;
    line-height: 1.2;
}

.fp-registration-success-text {
    margin: 0 0 24px;
    color: #416458;
    font-size: 16px;
}

.fp-registration-token-box {
    padding: 20px;
    text-align: left;
    background: #ffffff;
    border: 1px solid #9dd8be;
    border-radius: 16px;
}

.fp-registration-token-box label {
    display: block;
    margin-bottom: 9px;
    color: #173c30;
    font-size: 14px;
    font-weight: 750;
}

.fp-registration-token-row {
    display: flex;
    gap: 10px;
}

.fp-registration-token-row input {
    min-width: 0;
    flex: 1;
    padding: 14px 15px;
    color: #0a3d2b;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 14px;
    font-weight: 700;
    background: #f4fbf7;
    border: 1px solid #87caae;
    border-radius: 11px;
}

.fp-copy-token-button {
    padding: 12px 17px;
    color: #ffffff;
    font-weight: 750;
    white-space: nowrap;
    cursor: pointer;
    background: #126c4a;
    border: 0;
    border-radius: 11px;
}

.fp-registration-warning {
    display: flex;
    margin-top: 18px;
    padding: 14px 16px;
    gap: 4px;
    flex-direction: column;
    color: #714f00;
    text-align: left;
    background: #fff8df;
    border: 1px solid #e8c867;
    border-radius: 13px;
}

.fp-registration-error {
    padding: 14px 16px;
    color: #8d1f1f;
    text-align: left;
    background: #fff1f1;
    border: 1px solid #efabab;
    border-radius: 12px;
}

.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;
}

@media (max-width: 900px) {
    .fp-registration-layout {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 38px;
    }
}

@media (max-width: 600px) {
    .fp-registration-section {
        padding-bottom: 65px;
    }

    .fp-registration-layout {
        padding: 26px 20px;
        border-radius: 22px;
    }

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

    .fp-registration-form {
        padding: 24px 18px;
    }
}


/* Testversion starten – Hero wie auf den anderen Seiten */

.fp-trial-start-hero {
    margin: 28px auto 0;
    padding: 74px 0 88px;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(89, 176, 255, 0.24),
            transparent 34%
        ),
        linear-gradient(
            118deg,
            #082f53 0%,
            #0a5689 56%,
            #237fcc 100%
        );
    border-radius: 30px;
    box-shadow: 0 24px 55px rgba(8, 47, 83, 0.18);
}

.fp-trial-start-heading .eyebrow {
    color: #67b4ff;
}

.fp-trial-start-heading h1 {
    color: #ffffff;
}

.fp-trial-start-heading p {
    color: rgba(255, 255, 255, 0.78);
}

.fp-trial-start-grid {
    margin-top: 48px;
}

@media (max-width: 900px) {
    .fp-trial-start-hero {
        margin-top: 18px;
        padding: 54px 0 68px;
        border-radius: 24px;
    }
}



.fp-copy-token-button-success {
    background: #16865b;
}

.fp-copy-token-notice {
    margin: 12px 0 0;
    color: #126c4a;
    font-size: 14px;
    font-weight: 750;
    text-align: left;
}


.fp-trial-download {
    display: grid;
    margin-top: 20px;
    padding: 18px;
    gap: 14px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    text-align: left;
    background: #ffffff;
    border: 1px solid #a9c8ee;
    border-radius: 16px;
}

.fp-trial-download-icon {
    display: grid;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 25px;
    place-items: center;
    background: #0d5faf;
    border-radius: 13px;
}

.fp-trial-download-content {
    display: flex;
    min-width: 0;
    gap: 3px;
    flex-direction: column;
}

.fp-trial-download-content strong {
    color: #102f52;
    font-size: 15px;
}

.fp-trial-download-content span {
    color: #5d7189;
    font-size: 13px;
    line-height: 1.45;
}

.fp-testflight-button {
    padding: 12px 17px;
    color: #ffffff;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    background: #0869d1;
    border: 0;
    border-radius: 11px;
}

.fp-testflight-button:hover {
    color: #ffffff;
    background: #0559b4;
}

.fp-trial-next-steps {
    display: flex;
    margin-top: 14px;
    padding: 13px 16px;
    gap: 4px;
    flex-direction: column;
    color: #29415c;
    text-align: left;
    background: #eef6ff;
    border: 1px solid #bdd9f5;
    border-radius: 13px;
}

@media (max-width: 760px) {
    .fp-trial-download {
        grid-template-columns: auto 1fr;
    }

    .fp-testflight-button {
        width: 100%;
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* FAHRTPILOT KOMPAKTES DESKTOP-LAYOUT START */

/*
 * Kompaktere Darstellung für Desktop und Notebook.
 * Die vorhandene mobile Darstellung bleibt erhalten.
 */
@media (min-width: 1100px) {

    .container {
        width: min(1120px, calc(100% - 48px));
        max-width: 1120px;
    }

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

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

    .section-heading h2 {
        font-size: clamp(30px, 3vw, 42px);
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .section-heading p {
        font-size: 17px;
        line-height: 1.55;
    }

    /*
     * Hauptbereich
     */
    .hero {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 48px;
    }

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

    .hero-copy h1 {
        max-width: 650px;
        font-size: clamp(44px, 4.4vw, 62px);
        line-height: 1.02;
        letter-spacing: -0.05em;
    }

    .hero-copy .eyebrow {
        margin-bottom: 20px;
    }

    .hero-text {
        max-width: 610px;
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .hero-points {
        margin-top: 24px;
        font-size: 15px;
        gap: 22px;
    }

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

    .hero-phone img {
        display: block;
        width: auto;
        max-width: 270px;
        max-height: 470px;
        margin-inline: auto;
        object-fit: contain;
        image-rendering: auto;
    }

    /*
     * Drei Schritte
     */
    .section-steps {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .app-steps {
        gap: 18px;
    }

    .app-step,
    .app-step.reverse {
        min-height: 470px;
        padding: 24px 26px 0;
        border-radius: 22px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

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

    .step-copy h3 {
        font-size: 24px;
        line-height: 1.15;
    }

    .step-copy p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.48;
    }

    .step-phone {
        min-height: 300px;
        margin-top: 20px;
    }

    .step-phone img {
        display: block;
        width: auto;
        max-width: 185px;
        max-height: 320px;
        margin-inline: auto;
        object-fit: contain;
        image-rendering: auto;
    }

    /*
     * Desktop-Vorschau
     */
    .desk-showcase {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .desk-showcase > .container {
        padding: 52px 38px 38px;
    }

    .desk-heading {
        margin-bottom: 30px;
        gap: 42px;
    }

    .desk-heading h2 {
        font-size: clamp(34px, 3.4vw, 48px);
        line-height: 1.05;
    }

    .desk-heading p {
        font-size: 16px;
        line-height: 1.55;
    }

    .desk-frame {
        max-width: 1040px;
        margin-inline: auto;
        border-radius: 20px;
    }

    .desk-frame img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        image-rendering: auto;
    }

    .desk-highlights {
        margin-top: 24px;
    }

    /*
     * Funktionskarten
     */
    .feature-grid {
        gap: 18px;
    }

    .feature-card {
        min-height: 190px;
        padding: 24px;
        border-radius: 20px;
    }

    .feature-card h3 {
        margin-top: 16px;
        font-size: 20px;
        line-height: 1.2;
    }

    .feature-card p {
        margin-top: 9px;
        font-size: 15px;
        line-height: 1.48;
    }

    .feature-symbol {
        min-height: 42px;
    }

    /*
     * Testzugang-Seite oben
     */
    .fp-trial-start-hero {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .fp-trial-start-heading {
        max-width: 850px;
        margin-bottom: 34px;
    }

    .fp-trial-start-heading h1 {
        font-size: clamp(42px, 4.4vw, 60px);
        line-height: 1.03;
        letter-spacing: -0.045em;
    }

    .fp-trial-start-heading p {
        max-width: 770px;
        margin-top: 18px;
        font-size: 18px;
        line-height: 1.5;
    }

    .fp-trial-start-grid {
        gap: 18px;
    }

    .fp-trial-start-card {
        min-height: 240px;
        padding: 30px;
        border-radius: 20px;
    }

    .fp-trial-start-card h2 {
        margin-top: 24px;
        font-size: 24px;
        line-height: 1.18;
    }

    .fp-trial-start-card p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.5;
    }

    /*
     * Registrierungsbereich
     */
    .fp-registration-section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .fp-registration-layout {
        gap: 54px;
        align-items: start;
    }

    .fp-registration-intro h2 {
        font-size: 42px;
        line-height: 1.08;
    }

    .fp-registration-intro > p {
        font-size: 17px;
        line-height: 1.55;
    }

    .fp-registration-note {
        margin-top: 28px;
        padding: 22px;
    }

    .fp-registration-form {
        padding: 28px;
        border-radius: 22px;
    }

    .fp-registration-field input {
        min-height: 54px;
        padding: 14px 16px;
        font-size: 16px;
    }

    .fp-registration-submit {
        min-height: 52px;
    }

    /*
     * Abschlussbox und Footer
     */
    .cta-box {
        padding: 34px 0;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .site-footer {
        margin-top: 32px;
    }
}

/*
 * Auf kleineren Notebooks nicht wieder übermäßig aufblasen.
 */
@media (min-width: 1100px) and (max-width: 1350px) {

    .container {
        width: min(1060px, calc(100% - 36px));
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 42px;
        padding: 52px 44px;
    }

    .hero-copy h1 {
        font-size: 50px;
    }

    .hero-phone img {
        max-width: 240px;
        max-height: 420px;
    }

    .step-phone img {
        max-width: 165px;
        max-height: 290px;
    }

    .fp-trial-start-heading h1 {
        font-size: 50px;
    }
}

/* FAHRTPILOT KOMPAKTES DESKTOP-LAYOUT ENDE */

/* FAHRTPILOT DESKTOP-FEINSCHLIFF START */

@media (min-width: 1100px) {

    .site-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero {
        padding-top: 24px;
        padding-bottom: 42px;
    }

    .hero-grid {
        min-height: 470px;
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 4vw, 56px);
    }

    .hero-text {
        font-size: 17px;
    }

    .section-heading h2 {
        font-size: clamp(28px, 2.7vw, 38px);
    }

    .desk-heading h2 {
        font-size: clamp(32px, 3vw, 44px);
    }

    .fp-trial-start-heading h1 {
        font-size: clamp(40px, 4vw, 54px);
    }

    .feature-hero,
    .features-hero,
    .page-hero {
        padding-top: 42px;
        padding-bottom: 42px;
    }
}

/* FAHRTPILOT DESKTOP-FEINSCHLIFF ENDE */

/* FAHRTPILOT SEITENANGLEICHUNG START */

/*
 * Startseite und Funktionsseite erhalten dieselbe Breite,
 * dieselben Außenabstände, Rundungen und Größenverhältnisse.
 */
@media (min-width: 1100px) {

    /*
     * Gemeinsame Seitenbreite
     */
    .hero .container,
    .fp-functions-hero .container,
    .section .container,
    .fp-functions-section .container,
    .fp-functions-band .container,
    .desk-showcase .container,
    .fp-functions-final .container {
        width: min(1120px, calc(100% - 48px));
        max-width: 1120px;
        margin-left: auto;
        margin-right: auto;
    }

    /*
     * Gleicher Abstand unter dem Header
     */
    .hero,
    .fp-functions-hero {
        padding-top: 24px !important;
        padding-bottom: 42px !important;
    }

    /*
     * Gemeinsame blaue Hauptflächen
     */
    .hero-grid,
    .fp-functions-hero-grid {
        min-height: 470px !important;
        padding: 52px 48px !important;
        border-radius: 24px !important;
        box-shadow: 0 24px 60px rgba(7, 39, 67, 0.16) !important;
        overflow: hidden;
    }

    /*
     * Spaltenverhältnis angleichen
     */
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 290px !important;
        gap: 46px !important;
    }

    .fp-functions-hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr) !important;
        gap: 46px !important;
    }

    /*
     * Gleiche Hauptüberschriftengröße
     */
    .hero-copy h1,
    .fp-functions-intro h1 {
        max-width: 650px !important;
        margin-top: 12px !important;
        margin-bottom: 20px !important;
        font-size: clamp(42px, 4vw, 56px) !important;
        line-height: 1.03 !important;
        letter-spacing: -0.048em !important;
    }

    .hero-copy h1 span,
    .fp-functions-intro h1 span {
        display: block;
    }

    /*
     * Fließtexte angleichen
     */
    .hero-text,
    .fp-functions-intro > p {
        max-width: 620px !important;
        margin-top: 0 !important;
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    /*
     * Buttons angleichen
     */
    .hero-actions,
    .fp-functions-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px !important;
        margin-top: 26px !important;
    }

    .hero-actions .button,
    .fp-functions-actions .button {
        min-height: 48px;
        padding: 13px 22px;
        border-radius: 12px;
        font-size: 16px;
    }

    /*
     * Rechte Seite der Funktionsseite kompakter
     */
    .fp-functions-summary {
        gap: 12px !important;
    }

    .fp-summary-card {
        min-height: 0 !important;
        padding: 19px 20px !important;
        border-radius: 16px !important;
    }

    .fp-summary-card > span {
        width: 42px !important;
        height: 42px !important;
        font-size: 15px !important;
    }

    .fp-summary-card strong {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    .fp-summary-card p {
        margin-top: 6px !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    /*
     * iPhone-Bild der Startseite
     */
    .hero-phone {
        min-height: 390px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-phone img {
        width: auto !important;
        max-width: 235px !important;
        max-height: 420px !important;
        object-fit: contain !important;
    }

    /*
     * Nachfolgende Bereiche erhalten gleiche vertikale Rhythmik
     */
    .section,
    .fp-functions-section,
    .fp-functions-band {
        padding-top: 62px !important;
        padding-bottom: 62px !important;
    }

    .section-heading,
    .fp-functions-heading {
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 34px !important;
        text-align: center;
    }

    .section-heading h2,
    .fp-functions-heading h2 {
        font-size: clamp(28px, 2.7vw, 38px) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.035em !important;
    }

    .section-heading p,
    .fp-functions-heading p {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    /*
     * Karten auf beiden Seiten gleich kompakt
     */
    .feature-card,
    .fp-detail-card,
    .fp-management-card {
        min-height: 190px !important;
        padding: 24px !important;
        border-radius: 20px !important;
    }

    .feature-card h3,
    .fp-detail-card h3,
    .fp-management-card h3 {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    .feature-card p,
    .fp-detail-card p,
    .fp-management-card p {
        font-size: 15px !important;
        line-height: 1.48 !important;
    }

    /*
     * Unterer Testbereich
     */
    .cta-box,
    .fp-functions-final-inner {
        min-height: 0 !important;
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .cta-box h2,
    .fp-functions-final h2 {
        font-size: 30px !important;
        line-height: 1.15 !important;
    }
}

@media (min-width: 1100px) and (max-width: 1350px) {

    .hero .container,
    .fp-functions-hero .container,
    .section .container,
    .fp-functions-section .container,
    .fp-functions-band .container,
    .desk-showcase .container,
    .fp-functions-final .container {
        width: min(1060px, calc(100% - 36px));
    }

    .hero-grid,
    .fp-functions-hero-grid {
        padding: 46px 40px !important;
    }

    .hero-copy h1,
    .fp-functions-intro h1 {
        font-size: 48px !important;
    }

    .hero-phone img {
        max-width: 220px !important;
        max-height: 395px !important;
    }
}

/* FAHRTPILOT SEITENANGLEICHUNG ENDE */

/* FAHRTPILOT FUNKTIONSKARTEN-FIX START */

@media (min-width: 901px) {

    /*
     * Nummer links, Text sauber rechts daneben.
     */
    .fp-summary-card {
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr) !important;
        grid-template-rows: auto auto !important;
        column-gap: 14px !important;
        row-gap: 5px !important;
        align-items: start !important;

        min-height: 112px !important;
        padding: 18px 20px !important;
        overflow: hidden !important;
    }

    .fp-summary-card > span {
        position: static !important;
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        padding: 0 !important;

        border-radius: 12px !important;
        transform: none !important;
    }

    .fp-summary-card strong {
        position: static !important;
        grid-column: 2 !important;
        grid-row: 1 !important;

        display: block !important;
        margin: 2px 0 0 !important;
        padding: 0 !important;

        font-size: 18px !important;
        line-height: 1.22 !important;
    }

    .fp-summary-card p {
        position: static !important;
        grid-column: 2 !important;
        grid-row: 2 !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    /*
     * Rechte Kartenspalte etwas breiter,
     * damit lange Überschriften nicht abgeschnitten werden.
     */
    .fp-functions-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(390px, 0.9fr) !important;
    }
}

/*
 * Alte dekorative Punkte und Pseudoelemente sicher entfernen.
 */
.fp-functions-hero::before,
.fp-functions-hero::after,
.fp-functions-hero-grid::before,
.fp-functions-hero-grid::after,
.fp-functions-intro::before,
.fp-functions-intro::after,
.fp-functions-summary::before,
.fp-functions-summary::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

/* FAHRTPILOT FUNKTIONSKARTEN-FIX ENDE */

/* FAHRTPILOT APP LOGO UND FOOTERBREITE START */

/*
 * In der Web-Demo wird statt des Buchstabenkürzels
 * das echte FahrtPilot-App-Icon dargestellt.
 */
.fpdesk-brand img.fpdesk-brand-icon {
    display: block;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border: 0;
    border-radius: 11px;
    object-fit: cover;
    background: transparent;
    box-shadow:
        0 7px 16px rgba(7, 43, 82, 0.16);
}

/*
 * Nur auf der FahrtPilot-App-Seite erhält der Footer
 * dieselbe Außenbreite wie das Web-Demo-Fenster.
 */
body.page-id-27 .site-footer {
    width: min(1500px, calc(100% - 40px));
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

body.page-id-27 .site-footer .footer-simple {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

@media (max-width: 820px) {
    body.page-id-27 .site-footer {
        width: calc(100% - 24px);
    }
}

/* FAHRTPILOT APP LOGO UND FOOTERBREITE ENDE */
