:root {
    --bg: #ffffff;
    --text: #333333;
    --muted: #555555;
    --brand: #0093d7;
    --brand-2: #0076ad; /* dunkleres Blau für Hover */
    --line: rgba(0, 147, 215, .22);
    --alt: #f5fafc;
    --card: #ffffff;
    --radius: 20px;
    --shadow-sm: 0 5px 10px rgba(0, 0, 0, .1);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, .12);
    --focus: 0 0 0 4px rgba(0, 147, 215, .22);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Roboto Slab, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    font-family: 'Roboto Slab', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

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

figure {
    margin: 0;
}

a {
    color: inherit;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

p {
    font-size: 1.0rem;
}

a:hover {
    color: var(--brand-2);
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus);
    border-radius: 12px;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
}

/* ================================
   Reveal Animation (allgemein)
   ================================ */

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*Timeline*/

.timeline-wrap{
max-width:1240px;
margin:auto;
padding:90px 40px 140px;
}

.timeline-intro{
max-width:980px;
margin:0 auto 80px;
text-align:center;
}

.timeline-intro h2{
margin:0;
color:#2f3a40;
font-size:clamp(1.6rem,2.7vw,2.7rem);
line-height:1.2;
text-transform:none;
}

.timeline-intro p{
margin:16px auto 0;
max-width:880px;
font-size:1.05rem;
line-height:1.6;
color:#546068;
}

.timeline-container{
position:relative;
display:flex;
flex-direction:column;
gap:290px;
}

/* Mittellinie */

.timeline-container::before{
content:"";
position:absolute;
left:50%;
top:10px;
bottom:10px;
width:1px;
background:rgba(0,0,0,0.5);
transform:translateX(-50%);
}

/* Desktop Layout */

.timeline-item{
position:relative;
display:grid;
grid-template-columns:minmax(0,1fr) 80px minmax(0,1fr);
align-items:center;
column-gap:48px;
min-height:360px;
}

.timeline-item--left{
grid-template-areas:"card marker content";
}

.timeline-item--right{
grid-template-areas:"content marker card";
}

.timeline-marker{
grid-area:marker;
justify-self:center;
align-self:start;
width:42px;
height:42px;
border-radius:50%;
background:var(--brand);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:700;
box-shadow:0 10px 24px rgba(0,0,0,0.14);
z-index:2;
}

.timeline-card{
grid-area:card;
background:#ffffff;
border-radius:32px;
min-height:360px;
padding:4px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 18px 50px rgba(0,0,0,0.10);
width:100%;
max-width:480px;
    overflow: hidden;
}

.timeline-item--left .timeline-card{
justify-self:start;
}

.timeline-item--right .timeline-card{
justify-self:end;
}

.timeline-card img{
object-fit:contain;
}

.timeline-content{
grid-area:content;
max-width:430px;
width:100%;
}

.timeline-item--left .timeline-content{
justify-self:end;
}

.timeline-item--right .timeline-content{
justify-self:start;
}

.timeline-content h2{
margin:0 0 18px;
font-size: 1.4em;
line-height:1.1;
font-weight:700;
}

.timeline-content p{
margin:0;
font-size:18px;
line-height:1.7;
color:#4a555c;
}



/* Tablet */

@media (max-width:1024px){

.timeline-wrap{
padding:80px 24px 120px;
}

.timeline-intro{
margin-bottom:56px;
}

.timeline-container{
gap:120px;
}

.timeline-item{
grid-template-columns:minmax(0,1fr) 64px minmax(0,1fr);
column-gap:28px;
min-height:300px;
}

.timeline-card{
min-height:300px;
max-width:420px;
padding:26px;
}

.timeline-content{
max-width:360px;
}

.timeline-content h2{
font-size:28px;
}

.timeline-content p{
font-size:17px;
}

}

/* Mobile */

@media (max-width:767px){

.timeline-wrap{
padding:60px 18px 120px;
}

.timeline-intro{
margin-bottom:44px;
}

.timeline-intro h2{
font-size:1.45rem;
}

.timeline-intro p{
font-size:.95rem;
}

.timeline-container{
gap:120px;
}

.timeline-container::before{
left:24px;
transform:none;
}

.timeline-item,
.timeline-item--left,
.timeline-item--right{
grid-template-columns:48px minmax(0,1fr);
grid-template-areas:
"marker card"
". content";
column-gap:12px;
row-gap:24px;
min-height:auto;
}

.timeline-marker{
width:36px;
height:36px;
font-size:13px;
justify-self:center;
margin-top:8px;
}

.timeline-card{
min-height:0;
max-width:none;
width:100%;
padding:18px;
border-radius:26px;
justify-self:stretch;
}

.timeline-card img{
max-height:200px;
}

.timeline-content,
.timeline-item--left .timeline-content,
.timeline-item--right .timeline-content{
max-width:none;
justify-self:stretch;
}

.timeline-content h2{
font-size:28px;
margin-bottom:12px;
}

.timeline-content p{
font-size:16px;
line-height:1.7;
}

}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand-mark {
    width: auto;
    height: 60px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-name {
    font-weight: 800;
    letter-spacing: .2px;
}

.brand-sub {
    color: var(--brand);
    font-weight: 800;
}

/* Desktop nav */
.top-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.top-nav a {
    font-weight: 500;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
}

.top-nav a:hover {
    background: rgba(0, 147, 215, .08);
    color: inherit;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle:hover {
    background: rgba(0, 147, 215, .08);
}

.nav-toggle-bars {
    width: 20px;
    height: 2px;
    background: var(--text);
    position: relative;
    display: block;
    border-radius: 999px;
    transition: background .2s ease, transform .2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.nav-toggle-bars::before {
    top: -6px;
}

.nav-toggle-bars::after {
    top: 6px;
}

.nav-toggle.is-open .nav-toggle-bars {
    background: transparent;
}

.nav-toggle.is-open .nav-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    letter-spacing: .3px;
    border: 2px solid var(--brand);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 147, 215, .22);
}

.btn:hover {
    background: var(--brand-2);
    border-color: var(--brand-2);
    color: #fff;
}

.btn-small {
    padding: 8px 12px;
    font-size: .95rem;
}

.btn-invert {
    background: #fff;
    color: var(--brand-2);
    border-color: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.btn-invert:hover {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .92);
    color: var(--brand-2);
}

h1, h2, h3 {
    margin: 0;
    line-height: 1.4em;
    color: var(--brand);
}

h1 {
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.7rem;
    letter-spacing: .1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 4px;
}

h3 {
    color: var(--brand-2);
    margin-bottom: 5px;
}

.legal-page h1,
.legal-page h2 {
    text-transform: none;
    letter-spacing: 0;
}

.legal-page h1 {
    font-size: clamp(1.7rem, 2vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 18px;
}

.legal-page h2 {
    font-size: clamp(1.2rem, 1.5vw, 1.45rem);
    line-height: 1.3;
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-page a {
    text-decoration: none;
}

.fadebg {
    background: linear-gradient(180deg, rgba(0, 147, 215, .15) 0%, rgba(0, 147, 215, 0) 55%);
}

.accent {
    color: var(--brand);
}

.muted {
    color: var(--muted);
}

.small {
    font-size: .92rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(760px, 85vh, 1040px);
    padding: 150px 0 70px;
    border-bottom: 1px solid var(--line);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .8;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, .97) 0%,
            rgba(255, 255, 255, .94) 28%,
            rgba(255, 255, 255, .72) 40%,
            rgba(255, 255, 255, .24) 54%,
            rgba(255, 255, 255, 0) 70%
    );
}

.hero-grid {
    display: block;
}

.hero-copy {
    width: min(40%, 600px);
    max-width: 100%;
}

.hero-copy p {
    color: #2c363f;
}

.eyebrow {
    color: var(--text) !important;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .9rem;
    margin: 0 0 10px;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 16px;
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
    margin: 30px 0;
}

.pill {
    display: flex; /* flex, damit ::before als erstes "Item" steht */
    align-items: center;
    gap: 10px;
    /*border: 1px solid rgba(0, 147, 215, 0.10);*/
   /*background: rgba(0, 147, 215, 0.10);*/
    border-radius: 999px;
    padding: 0;
    font-weight: 800;
    color: var(--text);
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, .1);*/
}

.pill::before {
    content: "✓";
    color: var(--brand); /* blauer Haken */
    font-weight: 900;
    flex: 0 0 auto;
    width: 32px; /* optional: saubere Ausrichtung */
    text-align: center;
    font-size: 1.8em;
}

.vergleichswrapper {
    display: flex;
    gap: 50px;

    img {
        width: 40%;
        height: 100%;
    }

}

.cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-hint {
    color: var(--muted);
    font-weight: 800;
}

.img-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.img-card img {
    width: 100%;
    height: auto;
}

.img-card figcaption {
    padding: 12px 14px;
    font-weight: 800;
    color: #2b3b46;
}

.img-card.compact figcaption {
    display: none;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
}

.mini.wide {
    grid-column: 1 / -1;
    height: 160px;
}

/* ---------- Sections ---------- */
.section {
    padding: 90px 0;
}

.section.alt {
    background: var(--alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section.cta {
    padding: 26px 0;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    padding: 30px 0;
}

.section-head.two-col {
    display: grid;
    grid-template-columns: 1.5fr .5fr;
    gap: 30px;
    align-items: start;
}

.section p {
    margin: 0;
    color: var(--muted);
    margin-bottom: 20px;
}

/* Callout */
.callout {
    border: 1px solid var(--line);
    border-left: 6px solid var(--brand);
    border-radius: var(--radius);
    padding: 20px 30px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.callout-title {
    margin: 0 0 8px;
    font-weight: 900;
    color: #23323b;
}

/* Cards / grids */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    padding: 20px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    padding: 20px 0;
}

.card {
    background: rgba(0, 147, 215, 0.10);
    /*border: 1px solid var(--line);*/
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.card h3 {
    margin: 0 0 15px 0;
    color: var(--brand);
    font-size: 1.5rem;
    letter-spacing: .2px;
}

.card h4 {
    margin: 0 0 20px 0;
    color: var(--text);
    font-size: 1.1rem;
    letter-spacing: .1px;
}

.card img {
    margin: 10px 0 20px 0;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 12px 0;
}

/* Checklist */
.check {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 6px;
}

.check li {
    padding-left: 22px;
    position: relative;
    color: #2b3b46;
    font-weight: 700;
    margin: 4px 0;
}

.check li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 900;
}

/* Media row */
.media-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 18px;
    padding: 30px 0;
}

/* Audience section */
.audience {
    background: #f4f5f6;
    border-top: 1px solid #eceef0;
    border-bottom: 1px solid #eceef0;
}

.audience-head {
    max-width: 900px;
    margin: 0 auto 36px;
    text-align: center;
}

.audience-head h2 {
    margin: 0;
    text-transform: none;
    color: #3a4247;
    font-size: clamp(1.7rem, 2.5vw, 2.6rem);
    line-height: 1.2;
}

.audience-head p {
    margin: 16px auto 0;
    max-width: 780px;
    color: #5d656b;
    font-size: 1rem;
}

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

.audience-card {
    background: #eeeff1;
    border-radius: 24px;
    padding: 30px 22px 26px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.audience-icon {
    width: 142px;
    height: 142px;
    margin-bottom: 14px;
    filter: drop-shadow(0 6px 10px rgba(103, 182, 215, .20));
}

.audience-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.audience-card h3 {
    margin: 0 0 12px;
    text-transform: none;
    color: #454d53;
    font-size: clamp(1.05rem, 1.4vw, 1.45rem);
    line-height: 1.3;
}

.audience-card p {
    margin: 0;
    color: #646d73;
    font-size: .92rem;
}

.audience-cta {
    margin-top: 30px;
    text-align: center;
}

.audience-btn {
    padding: 14px 30px;
    background: #e48d56;
    border-color: #e48d56;
    box-shadow: 0 12px 24px rgba(228, 141, 86, .28);
}

.audience-btn:hover {
    background: #d37a42;
    border-color: #d37a42;
}

.media-row-full {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 18px;
    padding: 30px 0;
}

.media {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
    background: #fff;
}

.media-full {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
    background: #fff;
}

.media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Reference / legal */
.reference {
    margin-top: 14px;
    border-top: 1px dashed var(--line);
    padding-top: 12px;
    font-size: .9em;
}

.reference p {
    margin: 0;
    color: var(--muted);
}

.legal {
    margin-top: 16px;
    /*border: 1px solid #ddd;*/
    border-radius: 10px;
    font-size: .9em;
    color: #777;
    /*padding: 12px 14px;*/
    /*background-color: #f7f7f7;*/
}

/* CTA Box */
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--line);
    padding: 25px 30px;
    background: rgba(0, 147, 215, 0.10);
    box-shadow: var(--shadow-md);
    margin-bottom: 140px;
}

/* ---------- Full-width row ---------- */
.full-row {
    padding: 34px 0;
    color: #fff;
    background: radial-gradient(1200px 260px at 20% 0%, rgba(255, 255, 255, .18), transparent 55%),
    radial-gradient(900px 240px at 90% 30%, rgba(0, 0, 0, .10), transparent 60%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
}

.full-row-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.full-row-image {
    width: 300px;
}

.full-row-copy {
    max-width: 720px;
}

.full-row-subline {
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .9rem;
    color: rgba(255, 255, 255, .9);
}

.full-row-headline {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.85rem;
    letter-spacing: .2px;
}

.full-row-text {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

/* ---------- Footer ---------- */
footer {
    background-color: var(--brand);
    width: 100%;
    position: relative;

    p {
        color: #fff;
        margin-bottom: 10px;
    }

    h3 {
        color: #fff;
    }

    a {
        text-decoration: none;
    }

}

footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: -48px;
    left: 0;
    right: 0;
    z-index: 10;
    background-image: url(../../static/images/blende-banner-unten.svg);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 102%;
}


.f-left, .fleft {
    float: left;
}

.f-right, .fright {
    float: right;
}

.footer-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0 120px 0;
    font-size: .9em;
    overflow: hidden;
}

.footerzeile {
    width: 100%;
    text-align: left;
    color: #fff;
    font-size: 1.0em;
    line-height: 140%;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;


    .footercol.txt {
        width: 65%;
    }

    .footercol.footerlogo {
        width: 35%;
    }

    a {
        color: #fff !important;
    }

    a:visited {
        color: #fff !important;
    }

    a:hover {
        color: #ddd !important;
    }

}

.footerlinks {
    font-size: 1em;
    border-top: 1px solid #fff;
    padding-top: 15px;
    text-align: right;
    width: 100%;

    a {
        color: #fff !important;
    }

    a:visited {
        color: #fff !important;
    }

    a:hover {
        color: #ddd !important;
    }

}

.footer-item {
    color: #000;
    margin-bottom: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    /* Header: allow dropdown nav to take full row */
    .header-inner {
        flex-wrap: wrap;
    }

    .brand {
        min-width: unset;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .top-nav {
        display: none;
        flex-basis: 100%; /* forces it to next line */
        width: 100%;
        margin-top: 10px;
        padding: 30px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: #fff;
        box-shadow: var(--shadow-md);
        gap: 15px;
        justify-content: flex-start;
    }

    .top-nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 75vh;
    }

    .top-nav a {
        width: 100%;
        padding: 10px 12px;
    }

    .top-nav a.btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .legal-layout .header-inner {
        flex-wrap: nowrap;
    }

    .legal-layout .nav-toggle {
        display: none;
    }

    .legal-layout .top-nav {
        display: flex;
        flex-basis: auto;
        width: auto;
        margin-top: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        justify-content: flex-end;
    }

    .legal-layout .top-nav a,
    .legal-layout .top-nav a.btn {
        width: auto;
        margin-top: 0;
    }

    .legal-layout .top-nav a.btn-small {
        padding: 5px 9px;
        font-size: .78rem;
        min-height: 32px;
    }

    /* Hero mobile/tablet layout */
    .hero {
        min-height: 0;
        padding: 0 0 50px;
    }

    .hero-bg {
        inset: 0 0 auto 0;
        height: clamp(240px, 42vh, 360px);
    }

    .hero-bg img {
        object-position: center top;
    }

    .hero::after {
        inset: 0 0 auto 0;
        height: clamp(240px, 42vh, 360px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, .96) 100%);
    }

    .hero-grid.container {
        width: 100%;
        max-width: none;
        padding: clamp(220px, 38vh, 340px) 20px 0;
    }

    .hero-copy {
        width: 100%;
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
    }

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

    .section-head.two-col {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .mini {
        height: 170px;
    }

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

    .full-row-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}


/* Skip Link */
.skip {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    background: #fff;
    border: 2px solid var(--brand);
    border-radius: 12px;
    z-index: 9999;
}

/* Responsive: eine Spalte */
@media (max-width: 600px) {

    .full-row-inner {
        justify-content: center;
        align-items: center;
    }

    .full-row-headline,
    .full-row-subline,
    .full-row-text {
        text-align: center;
    }

    .full-row-headline {
        margin: 20px 0;
        font-size: 1.60rem;
        line-height: 1.25em;
    }

    .pill-grid {
        gap: 10px;
        margin: 30px 0;
    }

    .hero {
        padding: 0 0 40px;
    }

    .hero-bg,
    .hero::after {
        height: clamp(220px, 40vh, 360px);
    }

    .hero-grid.container {
        padding: clamp(200px, 36vh, 420px) 16px 0;
    }

    .hero-copy {
        padding: 16px;
        border-radius: 14px;
    }

    .audience-head h2 {
        font-size: 1.7rem;
    }

    .audience-head p {
        font-size: .92rem;
    }

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

    .audience-card {
        min-height: 0;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .audience-btn {
        width: 100%;
    }

    .section {
        padding: 25px 0;
    }

    .section-head {
        padding: 10px 0;
    }

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

    .vergleichswrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: .9em;

        img {
            width: 80%;
            height: auto;
            margin: 0 auto;
        }


    }

    h2 {
        font-size: 1.4rem;
    }

    .brand-mark {
        height: 46px;
    }

}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/roboto-slab-v36-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/roboto-slab-v36-latin-200.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-slab-v36-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-slab-v36-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-slab-v36-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/roboto-slab-v36-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-slab-v36-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/roboto-slab-v36-latin-800.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-slab-v36-latin-900.woff2') format('woff2');
}
