@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url(/css/Nunito-ExtraLight.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --blue-dark: #001f4f;
    --blue: #1e91f2;
    --blue-light: #e8f4ff;
    --yellow: #ffc800;
    --yellow-soft: #fff4bf;
    --text: #172033;
    --muted: #6b7280;
    --bg: #f7fbff;
    --card: #ffffff;
    --radius: 24px;
    --shadow: 0 18px 45px rgba(0, 31, 79, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 900;
}

p {
    font-weight: 500;
}

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

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

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

header {
    /* position: sticky; */
    top: 0;
    z-index: 10;
    background: rgba(247, 251, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 31, 79, 0.08);
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.menu-toggle {
    display: none;
    border: 0;
    color: var(--blue-dark);
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 1.8rem;
    font-weight: 900;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--blue-dark);
}

.logo span {
    font-size: 36px;
}

.logo img {
    width: 96px;
}

.logo .logo-tv {
    background: var(--yellow);
    color: var(--blue-dark);
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

footer .logo-tv {
    padding: 6px 12px;
    font-size: 22px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta,
.btn-primary,
.project-badge-primary {
    background: var(--yellow) !important;
    color: var(--blue-dark) !important;
    box-shadow: 0 10px 24px rgba(255, 200, 0, 0.28);
}

.btn-secondary {
    background: var(--blue-dark);
    color: white;
    box-shadow: 0 10px 24px rgba(0, 31, 79, 0.24);
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.hero {
    overflow: hidden;
}

.hero h2 {
    color: var(--blue);
    font-size: 26px;
}

.hero-grid {
    display: grid;
    grid-template-columns: .9fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-soft);
    color: var(--blue-dark);
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 200, 0, 0.45);
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    line-height: 1.02;
    color: var(--blue-dark);
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.hero p {
    font-size: 1.18rem;
    color: #344057;
    max-width: 660px;
    margin-bottom: 20px;
}

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

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-card {
    position: relative;
    background: linear-gradient(160deg, #ffffff 0%, #eaf6ff 100%);
    border-radius: 36px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 145, 242, 0.18);
}

.video-box {
    aspect-ratio: 16 / 10;
    border-radius: 28px;
    border: 12px solid var(--yellow);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.22);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 79, 0.25);
    border-radius: 28px;

}
.video-box:hover::before {
    opacity: 0;
}
.video-box:hover img {
    transform: scale(1.04);
}

.video-box::after {
    content: "100+ Windeln im Alltag getestet";
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0, 31, 79, 0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.video-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 31, 79, 0.16);
    border-color: rgba(30, 145, 242, 0.22);
}

.play {
    width: 94px;
    height: 94px;
    background: var(--yellow);
    clip-path: polygon(25% 15%, 25% 85%, 85% 50%);
    position: absolute;
    z-index: 2;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.stat {
    background: white;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(0, 31, 79, 0.08);
}

.stat strong {
    display: block;
    color: var(--blue-dark);
    font-size: 1.5rem;
    line-height: 1;
}

.stat span {
    color: var(--muted);
    font-weight: 700;
}

section {
    padding: 24px 5px;
    /* Fix für Sprungmarken mit Sticky Header: Scrollt zum Beginn der Box, statt etwas darunter */
    /* Nicht mehr nötig, seit der Header nicht mehr sticky ist */
    /* scroll-margin-top: 85px; */
}

.section-head {
    max-width: 960px;
    margin-bottom: 34px;
}

.eyebrow {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

h2 {
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

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

.audience-grid,
.content-grid,
.test-grid {
    display: grid;
    gap: 22px;
}

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

.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 31, 79, 0.08);
    border: 1px solid rgba(0, 31, 79, 0.08);
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: 1.6rem;
    margin: 0 auto 8px auto;
}

.card h3 {
    color: var(--blue-dark);
    font-size: 1.35rem;
    margin-bottom: 10px;
    text-align: center;
}

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

.voices {
    padding: 34px 5px;
}

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

.voice-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 31, 79, 0.08);
    border: 1px solid rgba(0, 31, 79, 0.08);
    text-align: left;
}

.voice-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: 1.4rem;
    margin: 0 auto 10px auto;
}

.voice-card p {
    color: #445066;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.voice-card span {
    color: var(--blue-dark);
    font-weight: 900;
    font-size: 0.9rem;
}

.test-section {
    background: white;
    border-radius: 48px;
    margin: 0 auto 10px auto;
    width: min(1240px, calc(100% - 24px));
    box-shadow: var(--shadow);
}

.test-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.test-list {
    display: grid;
    gap: 14px;
}

.test-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--bg);
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(30, 145, 242, 0.13);
}

.check {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--yellow);
    display: grid;
    place-items: center;
    color: var(--blue-dark);
    font-weight: 900;
}

.rating-card {
    background: linear-gradient(160deg, var(--blue-dark), #063d90);
    color: white;
    border-radius: 32px;
    padding: 38px;
    position: relative;
    overflow: hidden;
    min-height: 430px;
}

.rating-image {
    position: absolute;
    top: -62px;
    right: -62px;
    width: 330px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.24), transparent 42%),
        rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 0 44px rgba(0, 0, 0, 0.28),
        0 22px 46px rgba(0, 31, 79, 0.28);
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: 0;
}

.rating-image img {
    object-fit: cover;
    transform: scale(1.0) rotate(-5deg);
}

.rating-card> :not(.rating-image) {
    position: relative;
    z-index: 1;
}

.rating-card h3,
.rating-card p {
    max-width: calc(100% - 230px);
}

.score {
    font-size: 4.5rem;
    font-weight: 950;
    line-height: 1;
    color: var(--yellow);
    margin-bottom: 12px;
}

.bars {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    margin-bottom: 6px;
}

.bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: var(--yellow);
    border-radius: inherit;
}

.content-grid {
    grid-template-columns: repeat(4, 1fr);
}

.mini-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mini-card>div,
.mini-card a {
    text-align: center;
}

.mini-card a {
    margin-top: 10px;
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 31, 79, 0.12);
}

.tag {
    background: var(--yellow-soft);
    color: var(--blue-dark);
    border-radius: 999px;
    font-size: 0.8rem;
    padding: 8px 14px;
    font-weight: 900;
    display: inline-block;
    margin: 0 auto 5px;
}

.projects {
    padding: 32px 0 46px;
}

.projects-shell {
    position: relative;
    overflow: hidden;
    border-radius: 48px;
    padding: 46px;
    background:
        radial-gradient(circle at top left, rgba(255, 200, 0, 0.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(30, 145, 242, 0.18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 145, 242, 0.14);
}

.projects-shell::before {
    content: "";
    position: absolute;
    inset: auto -8% -22% 36%;
    height: 54%;
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.24), rgba(30, 145, 242, 0.12));
    clip-path: polygon(18% 0, 100% 0, 78% 100%, 0 100%);
    border-radius: 40px;
}

.projects-shell>* {
    position: relative;
    z-index: 1;
}

.section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
}

.project-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 30px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 16px 40px rgba(0, 31, 79, 0.10);
    border: 1px solid rgba(0, 31, 79, 0.08);

}

.project-card,
.video-box {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 31, 79, 0.16);
    border-color: rgba(30, 145, 242, 0.22);
}

.project-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: 1.75rem;
    margin-bottom: 18px;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.project-header .project-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    flex: 0 0 auto;
    transform: translateY(-2px);
}

.project-header h3 {
    margin: 0;
}

.project-card h3 {
    color: var(--blue-dark);
    font-size: 1.55rem;
    line-height: 1.12;
    margin-bottom: 10px;
}

.project-card p {
    color: #445066;
    margin-bottom: 14px;
}

.project-card strong {
    color: var(--blue-dark);
}

.project-note {
    margin-top: auto;
    margin-bottom: 18px !important;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(232, 244, 255, 0.78);
    border: 1px solid rgba(30, 145, 242, 0.14);
    font-weight: 800;
    color: var(--blue-dark) !important;
}

.project-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--blue-dark);
    color: white;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 31, 79, 0.18);
}

.project-card.highlight {
    background: linear-gradient(135deg, #fff7cc, #ffe88c);
    border: 2px solid var(--yellow);
    box-shadow: 0 26px 64px rgba(255, 200, 0, 0.30);
}

.project-card.highlight:hover {
    transform: translateY(-6px);
}

.project-card.highlight .project-icon {
    background: var(--blue-dark);
    color: var(--yellow);
}

.project-card.highlight .project-note {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(0, 31, 79, 0.12);
}

.project-card.highlight .project-cta {
    background: var(--blue-dark);
    color: white;
}

.project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--blue-dark);
    color: white;
    font-weight: 900;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

footer {
    padding: 36px 0;
    color: white;
    background: var(--blue-dark);
    margin-top: 52px;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}