/* ===================================================================
   KIVOLA — style.css
   LIGHT DESIGN for KMU target audience
   1:1 JeskoJets structure clone
   =================================================================== */

/* ─── RESET & ROOT ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Palette */
    --bg: #FAFAFA;
    --bg-cream: #F5F3EF;
    --bg-white: #FFFFFF;
    --bg-dark: #111118;
    --bg-card: #FFFFFF;

    /* Warm Palette (JeskoJets-inspired) */
    --bg-warm: #C9B99A;
    --bg-warm-light: #D4C5B0;
    --bg-warm-dark: #8B7D6B;
    --tx-warm: #3D3428;
    --tx-warm-soft: #5C5245;
    --border-warm: rgba(61, 52, 40, 0.12);

    /* Text */
    --tx: #1A1A2E;
    --tx-soft: #3D3D54;
    --tx-gray: #8B8FA3;
    --tx-light: #E8E8EE;
    --tx-on-dark: #FFFFFF;

    /* Accent */
    --accent: #00D4AA;
    --accent-2: #0EA5E9;
    --accent-glow: rgba(0, 212, 170, 0.15);

    /* Structural */
    --border: rgba(26, 26, 46, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);
    --radius: 12px;
    --radius-lg: 20px;

    /* Font */
    --f-head: 'Plus Jakarta Sans', sans-serif;
    --f-body: 'Inter', sans-serif;
    --f-mono: 'JetBrains Mono', monospace;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--f-body);
    color: var(--tx);
    background-color: var(--bg);
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ─── TYPOGRAPHY ─── */
.h1 {
    font-family: var(--f-head);
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--tx);
}

.h2 {
    font-family: var(--f-head);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.h4 {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.p2 {
    font-family: var(--f-head);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.p5 {
    font-family: var(--f-head);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    line-height: 1.4;
}

.p7 {
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--tx-soft);
}

.t6 {
    font-family: var(--f-head);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.3;
}

.t7 {
    font-family: var(--f-head);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.l1 {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--tx-gray);
}

.l1-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.l1-item .l1:last-child {
    color: var(--tx);
}

/* Modifiers */
.text-light {
    color: var(--tx-on-dark) !important;
}

.text-gray {
    color: var(--tx-gray) !important;
}

.text-gray-light {
    color: rgba(255, 255, 255, 0.4) !important;
}

.a-right {
    text-align: right;
}

.h-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.clip {
    overflow: hidden;
}

/* ─── LAYOUT ─── */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.section {
    position: relative;
    width: 100%;
}

.section--light {
    background-color: var(--bg);
    color: var(--tx);
}

.section--cream {
    background-color: var(--bg-cream);
    color: var(--tx);
}

.section--dark {
    background-color: var(--bg-dark);
    color: var(--tx-on-dark);
}

.section--warm {
    background-color: var(--bg-warm);
    color: var(--tx-on-dark);
}

/* ─── SHARED ELEMENTS ─── */
.line-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
}

.line-divider.on-color {
    background: var(--border-dark);
}

.line-v {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.line-v.on-color {
    background: var(--border-dark);
}

/* ─── PRELOADER ─── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader_c {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preloader_info {
    text-align: center;
}

.preloader_title {
    font-family: var(--f-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--tx);
    letter-spacing: -0.02em;
}

.preloader_sub {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tx-gray);
    margin-top: 0.5rem;
}

.preloader_bg {
    margin-top: 2rem;
}

.preloader_bar {
    width: 120px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.preloader_bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: preloaderFill 1.8s ease-in-out forwards;
}

@keyframes preloaderFill {
    0% {
        width: 0%;
    }

    60% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* ─── HEADER / NAV ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.header.is-scrolled {
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 0.75rem 0;
}

.header_c {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_nav {
    flex: 1;
}

.header_logo {
    flex: 0 0 auto;
}

.header_cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.link-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--tx);
}

.section--dark .link-logo {
    color: var(--tx-on-dark);
}

.header.is-scrolled .link-logo {
    color: var(--tx);
}

.logo-compass {
    color: var(--tx);
}

.header.is-scrolled .logo-compass {
    color: var(--tx);
}

.logo-text {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

/* Nav Item — text-swap hover like JeskoJets */
.nav-item-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
    overflow: hidden;
}

.nav-item_label {
    display: flex;
    flex-direction: column;
    height: 1.1em;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-item:hover .nav-item_label {
    transform: translateY(-50%);
}

.nav-item_text {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--tx-gray);
    white-space: nowrap;
    flex-shrink: 0;
    height: 1.1em;
    line-height: 1.1em;
    transition: color 0.3s ease;
}

.nav-item_text.is-2 {
    color: var(--accent);
}

/* On dark section, use light labels */
.section--dark .nav-item_text {
    color: var(--tx-light);
}

.section--dark .nav-item_text.is-2 {
    color: var(--accent);
}

.header.is-scrolled .nav-item_text {
    color: var(--tx-gray);
}

/* Mobile menu button */
.header_menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.header_menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--tx);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header_menu-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header_menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.header_menu-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {

    .header_nav,
    .header_cta .nav-item-list {
        display: none;
    }

    .header_menu-btn {
        display: flex;
    }
}

/* ─── HERO — Standard Light Section ─── */
#hero {
    position: relative;
    background: var(--bg-cream);
    overflow: hidden;
}

.hero-w {
    padding: 10rem 0 6rem;
    position: relative;
    z-index: 1;
}

/* ─── Hero Text ─── */
.hero-s {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-s_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-s_left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-s_right {
    flex-shrink: 0;
    width: 340px;
}

.hero-s_titles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-s_title_divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0.5rem 0;
}

/* Hero headline */
.hero-s_titles .h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--tx);
}

.hero-title-accent {
    background: linear-gradient(135deg, #00D4AA 0%, #0EA5E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trust Badge */
.hero-trust {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem 0.5rem 0.8rem;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 100px;
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 0.8s ease 2s forwards;
}

.hero-trust_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(0, 212, 170, 0.12);
    border-radius: 50%;
    color: var(--accent);
    flex-shrink: 0;
}

.hero-trust_text {
    font-family: var(--f-body);
    font-size: 0.85rem;
    color: var(--tx-soft);
    letter-spacing: 0.01em;
}

.hero-trust_text strong {
    color: var(--tx);
    font-weight: 600;
}

/* Hero subtitle */
.hero-subtitle {
    color: var(--tx-soft);
    max-width: 420px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeUp 0.8s ease 2.4s forwards;
}

/* ─── 87% Stat Card ─── */
.hero-stat-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 1s ease 2.8s forwards;
}

.hero-stat-card_number .h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-card_body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-stat-card_body .p5 {
    color: var(--tx);
    font-weight: 600;
}

.hero-stat-card_body .p7 {
    line-height: 1.7;
    opacity: 0.65;
    color: var(--tx-soft);
}

/* ─── Marquee Section (between hero & about) ─── */
.marquee-section {
    padding-top: 4rem !important;
    padding-bottom: 2rem !important;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Hero Badge / Tag ─── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 0.8s ease 2.2s forwards;
}

.hero-badge_dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(0, 212, 170, 0);
    }
}

.hero-badge_text {
    font-family: var(--f-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tx-soft);
}

/* ─── TEXT CHAR REVEAL ─── */
[data-char-reveal] .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

[data-char-reveal] .char-space {
    display: inline-block;
    width: 0.3em;
}

@media (max-width: 768px) {
    .hero-w {
        padding: 8rem 0 4rem;
    }

    .hero-s_titles .h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-s {
        gap: 3rem;
    }

    .hero-s_main {
        flex-direction: column;
        gap: 2.5rem;
    }

    .hero-s_right {
        width: 100%;
    }

    .hero-subtitle {
        text-align: center;
    }
}


/* ─── ABOUT (LIGHT) ─── */
#about {
    position: relative;
}

/* No gradient overlay needed — hero and about are both light */

.about-w {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.about-s {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.about-s_lead-text {
    max-width: 800px;
}

.about-s_lead-text .p2 {
    color: var(--tx-gray);
    transition: color 0.5s ease;
}

.about-s_lead-text .hl {
    color: var(--tx-gray);
    transition: color 0.6s ease;
}

.about-s_lead-text.is-active .hl {
    color: var(--tx);
}

/* About Info + Features */
.about-s_info {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-s_info_badge {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.diagram-compass {
    color: var(--tx-gray);
}

.about-s_info_est {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.features-card {
    padding: 2rem 2rem 2.5rem;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.features-card:first-child {
    border-left: none;
}

.features-card_title .p5 {
    color: var(--tx);
}

.features-card_desc .p7 {
    color: var(--tx-soft);
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }

    .features-card {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .features-card:first-child {
        border-top: none;
    }
}

/* ─── AGENT — "Entdecke KI" (LIGHT CREAM) ─── */
.agent_scroll-area {
    padding: 8rem 0 4rem;
    position: relative;
}

.agent-w {
    position: relative;
}

.agent-s {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.agent-s_title {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

.agent_title-big {
    color: var(--tx);
}

.agent_title-outline {
    -webkit-text-stroke: 2px var(--tx);
    color: transparent;
}

.agent-s_title_divider {
    width: 80px;
    height: 2px;
    background: var(--accent);
}

.agent-s_bot {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    align-items: flex-start;
}

.agent-s_bot_subtitle .p5 {
    color: var(--tx);
}

.agent-s_bot_desc {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agent-s_bot_desc .line-v {
    background: var(--border);
}

.agent-s_bot_desc_title {
    display: flex;
    gap: 0.5rem;
}

/* Agent Image Floating */
.agent-img-w {
    position: absolute;
    top: 30%;
    right: -5%;
    width: 45%;
    z-index: 2;
    pointer-events: none;
}

.agent_img {
    transform-origin: center center;
    will-change: transform;
}

.agent-illustration {
    width: 100%;
    height: auto;
    opacity: 0.2;
}

/* Spec / Blueprint */
.spec-w {
    margin-top: 6rem;
    padding: 3rem 0;
}

.spec-s {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.spec-s_left_top {
    margin-bottom: 2rem;
}

.spec-s_left_top .p5 {
    color: var(--tx-gray);
}

.spec-s_left_top .h2 {
    color: var(--tx);
}

.spec-s_left_bot {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.spec-item .line-v {
    height: 24px;
    background: var(--accent);
    width: 2px;
}

.spec-s_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-7rem) translateX(-2rem);
}

.product-compass {
    filter: drop-shadow(0 0 30px rgba(0, 212, 170, 0.12));
    will-change: transform;
}

/* Slow continuous rotation on outer ring */
.product-compass circle:first-of-type {
    animation: compassOrbit 20s linear infinite;
    transform-origin: center;
}

/* Counter-rotate inner ring */
.product-compass circle:nth-of-type(2) {
    animation: compassOrbit 30s linear infinite reverse;
    transform-origin: center;
}

/* Gentle pulse on center dot */
.product-compass circle:nth-of-type(3) {
    animation: compassPulse 3s ease-in-out infinite;
    transform-origin: center;
}

/* Needle subtle sway */
.product-compass polygon:first-of-type {
    animation: needleSway 6s ease-in-out infinite;
    transform-origin: 100px 100px;
}

.product-compass polygon:nth-of-type(2) {
    animation: needleSway 6s ease-in-out infinite;
    transform-origin: 100px 100px;
}

@keyframes compassOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes compassPulse {

    0%,
    100% {
        opacity: 0.15;
        r: 6;
    }

    50% {
        opacity: 0.35;
        r: 9;
    }
}

@keyframes needleSway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    75% {
        transform: rotate(-3deg);
    }
}

.spec-s_right_top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-s_right_top_desc {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-s_right_top_desc .line-v {
    background: var(--accent);
    width: 2px;
}

@media (max-width: 1024px) {
    .spec-s {
        grid-template-columns: 1fr;
    }

    .spec-s_center {
        order: -1;
    }

    .agent-img-w {
        position: relative;
        top: 0;
        right: 0;
        width: 70%;
        margin: 2rem auto;
    }
}

/* ─── BENEFITS — Accordion (LIGHT) ─── */
.benefits-w {
    padding: 8rem 0;
}

.benefits-s {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.benefits-s_content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefits-s_content_title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefits-s_content_title .line-v {
    height: 24px;
    background: var(--accent);
    width: 2px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefits-list>.line-v {
    height: 1px;
    width: 100%;
    background: var(--border);
}

.benefits-card {
    cursor: pointer;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.benefits-card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.benefits-card_header .p5 {
    color: var(--tx);
    transition: color 0.3s ease;
}

.benefits-card:hover .benefits-card_header .p5 {
    color: var(--accent);
}

.benefits-card_btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--tx-gray);
}

.benefits-card_btn .ico-minus {
    display: none;
}

.benefits-card_btn .ico-plus {
    display: block;
}

.benefits-card.is-active .benefits-card_btn .ico-minus {
    display: block;
}

.benefits-card.is-active .benefits-card_btn .ico-plus {
    display: none;
}

.benefits-card_desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding-top: 0;
}

.benefits-card.is-active .benefits-card_desc {
    max-height: 200px;
    padding-top: 1rem;
}

/* Benefits Media */
.benefits-s_media {
    position: sticky;
    top: 8rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-cream);
}

.benefits-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.benefits-media_img {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-media_img.is-active {
    opacity: 1;
}

/* Benefit Card Visuals — soft edge blending */
.benefit-card-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    padding: 0;
    /* Soft edge mask — no hard borders, image melts into background */
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 50%, transparent 100%);
    mask-image: radial-gradient(ellipse 85% 85% at center, black 50%, transparent 100%);
}

.benefit-card-visual_accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.benefit-card-visual_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.benefit-card-visual_label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.benefit-card-visual_big {
    font-family: var(--f-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.benefit-card-visual_sub {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.5;
}

.benefit-card-visual_badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
    letter-spacing: 0.05em;
}

.benefit-card-visual_badge--official {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.benefit-card-visual_icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.15;
}

/* Festpreis — Mint gradient */
.benefit-card--price {
    background: linear-gradient(135deg, hsl(160, 80%, 15%), hsl(180, 60%, 8%));
    color: #e0fff5;
}

.benefit-card--price .benefit-card-visual_accent {
    background: linear-gradient(90deg, var(--accent), hsl(180, 70%, 50%));
}

.benefit-card--price .benefit-card-visual_big {
    background: linear-gradient(135deg, var(--accent), hsl(180, 80%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 1-Tag — Deep blue */
.benefit-card--time {
    background: linear-gradient(135deg, hsl(220, 60%, 15%), hsl(240, 50%, 10%));
    color: #d0d8ff;
}

.benefit-card--time .benefit-card-visual_accent {
    background: linear-gradient(90deg, hsl(220, 70%, 60%), hsl(260, 60%, 50%));
}

.benefit-card--time .benefit-card-visual_icon {
    color: hsl(220, 70%, 50%);
}

/* Keine Vorkenntnisse — Warm amber */
.benefit-card--easy {
    background: linear-gradient(135deg, hsl(35, 60%, 15%), hsl(20, 50%, 10%));
    color: #ffe8d0;
}

.benefit-card--easy .benefit-card-visual_accent {
    background: linear-gradient(90deg, hsl(35, 80%, 55%), hsl(15, 70%, 50%));
}

.benefit-card--easy .benefit-card-visual_icon {
    color: hsl(35, 80%, 55%);
}

/* Förderfähig — Official dark green */
.benefit-card--funding {
    background: linear-gradient(135deg, hsl(140, 50%, 12%), hsl(160, 40%, 8%));
    color: #d0ffe8;
}

.benefit-card--funding .benefit-card-visual_accent {
    background: linear-gradient(90deg, hsl(140, 60%, 45%), hsl(160, 50%, 40%));
}

.benefit-card--funding .benefit-card-visual_badge--official {
    color: hsl(140, 60%, 45%);
    background: rgba(40, 180, 100, 0.1);
}

@media (max-width: 768px) {
    .benefits-s {
        grid-template-columns: 1fr;
    }

    .benefits-s_media {
        display: none;
    }
}

/* ─── DATA — Stats (LIGHT) ─── */
.data-w {
    padding: 2rem 0;
}

.data-s {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}



.data-s_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.data-s_list_item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-s_list_item_time {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.clock {
    font-family: var(--f-mono);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--tx);
}

@media (max-width: 768px) {
    .data-s_list {
        grid-template-columns: 1fr;
    }
}

/* ─── REACH — Compass + Marquee (DARK) ─── */
.reach_scroll-area {
    padding: 4rem 0 0;
}

.reach-w {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.reach-s_city {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reach-s_city_top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

.reach-s_city_top .p5 {
    color: var(--tx);
}

.reach-s_city_diagram {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.reach-s_city_diagram_line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.ico-compass-small {
    color: var(--tx);
}

/* Marquee */
.reach-s_city_marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item .p5 {
    color: rgba(26, 26, 46, 0.35);
    transition: color 0.3s ease;
}

.marquee-item:hover .p5 {
    color: var(--accent);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* REICHWEITE SVG Title */
.reach-s_title {
    width: 100%;
    overflow: hidden;
}

.reach_title-svg {
    width: 100%;
    height: auto;
}

.reach-title-text {
    font-family: var(--f-head);
    font-size: 140px;
    font-weight: 800;
    letter-spacing: -0.03em;
    fill: none;
    stroke: url(#reach-gradient);
    stroke-width: 1.5;
    paint-order: stroke;
}

/* Fallback when no gradient defined */
.reach-title-text {
    stroke: rgba(26, 26, 46, 0.08);
}

/* Compass Globe */
.reach-s_bot {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

.reach_compass-w {
    will-change: transform, opacity;
}


/* ─── FACTOID CARD ─── */
.factoid-w {
    padding: 6rem 0;
}

.factoid-s {
    display: flex;
    justify-content: center;
}

.factoid-card {
    position: relative;
    padding: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.factoid-card .card_bg {
    position: absolute;
    inset: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.factoid-card .card_c {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.factoid-card_number {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.factoid-card_number .h2 {
    color: var(--accent);
    font-size: clamp(3rem, 6vw, 5rem);
}

.factoid-barcode {
    color: rgba(26, 26, 46, 0.15);
    flex-shrink: 0;
}

.factoid-card_title .l1 {
    color: var(--tx-gray);
}

.factoid-card_bot {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.factoid-card_bot .p7 {
    color: var(--tx-soft);
}

.diagram-compass-small {
    color: var(--tx-gray);
}

/* ─── FOOTER ─── */
.footer-w {
    padding: 3rem 0 2rem;
}

.footer-s {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-s_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-s_left_bot {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer_copyright {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer_copyright .link {
    transition: color 0.3s ease;
}

.footer_copyright .link:hover {
    color: var(--accent) !important;
}

.footer-s_right {
    display: flex;
    justify-content: flex-end;
}

.footer-s_right_contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.link-contact {
    transition: color 0.3s ease;
}

.link-contact:hover .t6 {
    color: var(--accent) !important;
}

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

    .footer-s_right {
        justify-content: flex-start;
    }

    .footer-s_right_contact {
        align-items: flex-start;
    }
}

/* ─── BOTTOM CENTER CTA ─── */
.bottom-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bottom-cta.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.bottom-cta_pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    color: var(--tx);
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.bottom-cta_pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 212, 170, 0.2), 0 2px 6px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.bottom-cta_label {
    position: relative;
    overflow: hidden;
    height: 1.3em;
}


.bottom-cta_text {
    display: block;
    transition: transform 0.3s ease;
}

.bottom-cta_text--hover {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    color: var(--accent);
}

.bottom-cta_pill:hover .bottom-cta_text:not(.bottom-cta_text--hover) {
    transform: translateY(-100%);
}

.bottom-cta_pill:hover .bottom-cta_text--hover {
    transform: translateY(0);
}

.bottom-cta_icon {
    display: flex;
    align-items: center;
    color: var(--accent);
    animation: ctaSpin 8s linear infinite;
}

@keyframes ctaSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ─── CONTACT MODAL ─── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(8px);
}

.modal_content {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal.is-open .modal_content {
    transform: translateY(0);
}

.modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal_close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--tx-gray);
    transition: background 0.3s ease, color 0.3s ease;
}

.modal_close:hover {
    background: var(--bg);
    color: var(--tx);
}

.modal_form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-group label {
    color: var(--tx-gray);
}

.input-group input {
    font-family: var(--f-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--tx);
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: var(--accent);
}

.input-group input::placeholder {
    color: var(--tx-gray);
    opacity: 0.5;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--accent);
    color: white;
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 95;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu_overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(8px);
}

.mobile-menu_list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    background: var(--bg-white);
    height: 100%;
    max-width: 340px;
}

.mobile-menu_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--tx);
    transition: color 0.3s ease;
}

.mobile-menu_item:hover {
    color: var(--accent);
}

.mobile-menu_item svg {
    color: var(--tx-gray);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero-s_titles {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .hero-s_title-r .h2 {
        text-align: center;
    }

    .hero-s_bot {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .monitor-frame {
        width: 70vw;
        height: 46vw;
    }

    .about-w {
        padding: 4rem 0;
    }

    .about-s {
        gap: 3rem;
    }

    .agent_scroll-area {
        padding: 4rem 0;
    }

    .agent-s_bot {
        flex-direction: column;
        gap: 2rem;
    }

    .benefits-w {
        padding: 4rem 0;
    }

    .reach_scroll-area {
        padding: 4rem 0 0;
    }

    .factoid-w {
        padding: 3rem 0;
    }

    .footer-w {
        padding: 3rem 0 2rem;
    }
}

/* ─── TRUST / TESTIMONIAL ─── */
.trust-w {
    padding: 2rem 0 6rem;
    display: flex;
    justify-content: center;
}

.trust-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

.trust-card_stars {
    color: #FFC107;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.trust-card_quote {
    font-family: var(--f-head);
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--tx);
    margin-bottom: 2rem;
}

.trust-card_author {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.trust-card_avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00D4AA 0%, #0EA5E9 100%);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.trust-card_info {
    display: flex;
    flex-direction: column;
}

.trust-card_name {
    font-family: var(--f-head);
    font-weight: 700;
    color: var(--tx);
    font-size: 1rem;
}

.trust-card_role {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--tx-gray);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .trust-card {
        padding: 2rem;
    }

    .trust-card_quote {
        font-size: 1.1rem;
    }
}

/* ─── CASE STUDY ─── */
.case-w {
    padding: 0 0 4rem;
}

.case-s_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.case-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.case-card_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.case-card_client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-card_avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00D4AA 0%, #0EA5E9 100%);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.case-card_client-info {
    display: flex;
    flex-direction: column;
}

.case-card_name {
    font-family: var(--f-head);
    font-weight: 700;
    color: var(--tx);
    font-size: 1rem;
}

.case-card_role {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--tx-gray);
    letter-spacing: 0.05em;
}

.case-card_badge {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00D4AA;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-weight: 600;
}

.case-card_body {
    margin-bottom: 2rem;
}

.case-card_body h3 {
    margin-bottom: 0.75rem;
}

.case-card_body strong {
    color: #00D4AA;
    font-weight: 700;
}

.case-card_metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.case-card_metric {
    background: var(--bg-white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.case-card_metric-value {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #00D4AA;
}

.case-card_metric-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tx-gray);
}

@media (max-width: 768px) {
    .case-card {
        padding: 1.5rem;
    }

    .case-card_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .case-card_metrics {
        grid-template-columns: 1fr;
    }
}

/* ─── FAQ ─── */
.faq-w {
    padding: 0 0 2rem;
}

.faq-s_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-card {
    border-bottom: 1px solid var(--border);
}

.faq-card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-card_header:hover {
    color: #00D4AA;
}

.faq-card_btn {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--tx-gray);
}

.faq-card_btn .ico-minus,
.faq-card_btn .ico-plus {
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
}

.faq-card_btn .ico-minus {
    opacity: 0;
}

.faq-card.is-active .faq-card_btn .ico-minus {
    opacity: 1;
}

.faq-card.is-active .faq-card_btn .ico-plus {
    opacity: 0;
}

.faq-card_desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}

.faq-card.is-active .faq-card_desc {
    max-height: 200px;
    padding: 0 0 1.5rem;
}

/* ─── FOUNDER PHOTO + ABOUT LAYOUT ─── */
.about-s_lead-row {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.about-s_lead-row .about-s_lead-text {
    flex: 1;
}

.about-s_founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.founder-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 2px var(--border), 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    display: block;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.about-s_founder_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE OPTIMIERUNG — Konsolidierter Block
   Nur Mobile-Anpassungen, Desktop bleibt unverändert.
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ─── HERO: Zentriertes Layout auf Mobile ─── */
    .hero-s_left {
        align-items: center;
        text-align: center;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-subtitle {
        align-self: center;
        text-align: center;
        max-width: 100%;
    }

    .hero-trust {
        align-self: center;
        justify-content: center;
    }

    .hero-stat-card {
        padding: 2rem 1.5rem;
    }

    .hero-stat-card_number .h2 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    /* ─── ABOUT: Founder Foto unter den Text auf Mobile ─── */
    .about-s_lead-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .founder-photo {
        width: 180px;
        height: 180px;
    }

    /* ─── AGENT-SEKTION: Schrift + Compass skalieren ─── */
    .agent_title-big {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
    }

    .agent_title-outline {
        -webkit-text-stroke-width: 1.5px;
    }

    .blueprint-visual {
        transform: none;
    }

    .product-compass {
        width: 180px !important;
        height: 180px !important;
    }

    .blueprint-visual,
    .agent-img-w {
        display: none !important;
    }

    .spec-w {
        margin-top: 3rem;
    }

    .spec-s_right_top_desc .p7 {
        font-size: 0.85rem;
    }

    /* ─── BENEFITS: Touch-freundliche Accordion-Headers ─── */
    .benefits-card_header {
        min-height: 48px;
        padding: 1rem 0;
    }

    .benefits-card_header .p5 {
        font-size: 1rem;
    }

    /* ─── FAQ: Touch-Targets + Lesbarkeit ─── */
    .faq-card_header {
        min-height: 48px;
        padding: 1.25rem 0;
        gap: 1rem;
    }

    .faq-card_header .p5 {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* ─── BOTTOM CTA: Kompaktere Pill ─── */
    .bottom-cta_pill {
        padding: 0.7rem 1.25rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .bottom-cta_icon svg {
        width: 22px;
        height: 22px;
    }

    .bottom-cta {
        bottom: 1.25rem;
    }

    /* Bottom CTA ausblenden wenn Mobile-Menu offen */
    body:has(.mobile-menu.is-open) .bottom-cta {
        display: none;
    }

    /* ─── FACTOID: Weniger Padding ─── */
    .factoid-card {
        padding: 2rem 1.5rem;
    }

    .factoid-card_number .h2 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    /* ─── TRUST CARD: Kompakter ─── */
    .trust-w {
        padding: 2rem 0 3rem;
    }

    /* ─── MARQUEE-SECTION: Weniger top-padding ─── */
    .marquee-section {
        padding-top: 2rem !important;
        padding-bottom: 1rem !important;
    }

    /* ─── MOBILE MENU: CTA-Button Styling ─── */
    .mobile-menu_cta {
        margin-top: auto;
        padding: 1.5rem 0;
    }

    .mobile-menu_cta-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.85rem 1.5rem;
        background: var(--accent);
        color: #fff;
        font-family: var(--f-head);
        font-weight: 600;
        font-size: 0.95rem;
        border-radius: 100px;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mobile-menu_cta-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    }

    /* ─── ALLGEMEIN: Overflow verhindern ─── */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 1.25rem;
    }
}

/* ─── FOOTER SOCIALS ─── */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-gray);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-social-link svg {
    display: block;
}