/* ============================================================
   Evoparts24 — TeSys Deca Snap-In Landing Page
   Dark, bold, modern style inspired by bese-media.de
   ============================================================ */

/* --- Lokale Fonts (DSGVO-konform, kein Google-Server) --- */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/manrope-latin.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;
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/manrope-latin-ext.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url("../fonts/spacegrotesk-latin.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;
}
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url("../fonts/spacegrotesk-latin-ext.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --bg: #070b08;
    --bg-2: #0b110c;
    --bg-3: #101711;
    --surface: #131b14;
    --surface-2: #182219;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);

    --text: #eef2ee;
    --text-dim: #a7b3a8;
    --text-mute: #6f7d70;

    --green: #3dcd58;      /* Schneider green */
    --green-bright: #5cff7a;
    --green-deep: #16a02f;
    --green-glow: rgba(61, 205, 88, 0.35);

    --evo: #db4e39;        /* Evoparts24 Markenfarbe */
    --evo-bright: #f2694f;
    --evo-deep: #b83a28;
    --evo-glow: rgba(219, 78, 57, 0.35);

    --radius: 18px;
    --radius-lg: 26px;
    --maxw: 1440px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-head: 'Space Grotesk', 'Manrope', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

/* subtle grid + glow backdrop */
body::before {
    content: "";
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background:
        radial-gradient(700px 500px at 80% -5%, rgba(61, 205, 88, 0.12), transparent 60%),
        radial-gradient(600px 500px at 0% 30%, rgba(61, 205, 88, 0.06), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }

.text-gradient {
    background: linear-gradient(100deg, var(--green-bright), var(--green) 50%, #d8ffe0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
    padding: 6px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    background: rgba(61, 205, 88, 0.06);
}
.section-tag.light { color: var(--green-bright); }

.section-head { max-width: 800px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-dim); font-size: 1.08rem; margin-top: 16px; }

.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(7, 11, 8, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
    height: 40px; width: auto; display: block;
    transition: height .4s var(--ease);
}
.site-header.scrolled .brand-logo { height: 34px; }
.brand-mark {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: #07110a;
    font-size: 0.9rem; font-weight: 700; letter-spacing: -0.02em;
    box-shadow: 0 6px 20px var(--green-glow);
}
.brand-text { font-size: 1.25rem; letter-spacing: -0.02em; }
.brand-accent { color: var(--green); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
    font-size: 0.95rem; font-weight: 500; color: var(--text-dim);
    transition: color .25s var(--ease); position: relative;
}
.main-nav a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    width: 0; height: 2px; background: var(--green);
    transition: width .3s var(--ease);
}
.main-nav a:not(.nav-cta):hover { color: var(--text); }
.main-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    padding: 10px 20px; border-radius: 100px;
    background: var(--green); color: #07110a !important;
    font-weight: 700 !important;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 26px var(--green-glow); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 14px 10px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 80px;
    min-height: 88vh;
    min-height: 88svh;
}
.hero-bg {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background:
        radial-gradient(720px 480px at 80% 8%, rgba(61, 205, 88, 0.18), transparent 60%),
        radial-gradient(600px 520px at 8% 95%, rgba(61, 205, 88, 0.07), transparent 55%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 64px); align-items: center;
    position: relative; z-index: 1;
}
.hero-content { max-width: 680px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
    color: var(--text-dim);
    padding: 8px 16px; border-radius: 100px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    margin-bottom: 22px;
}
.eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green);
    box-shadow: 0 0 0 0 var(--green-glow);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(61, 205, 88, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(61, 205, 88, 0); }
    100% { box-shadow: 0 0 0 0 rgba(61, 205, 88, 0); }
}

.hero-title {
    font-size: clamp(2.1rem, 4.6vw, 3.9rem);
    margin-bottom: 18px;
}
.hero-lead {
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
    color: var(--text-dim);
    margin-bottom: 24px;
}
.hero-lead strong { color: var(--text); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 100px;
    border: 1px solid var(--border-strong); background: var(--surface);
    font-size: 0.85rem; color: var(--text-dim);
}
.hero-chip b { color: var(--green-bright); font-family: var(--font-head); font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-actions .btn { padding-left: 20px; padding-right: 20px; }
.hero-brandline {
    display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-family: var(--font-head); font-weight: 500;
    font-size: 0.9rem; color: var(--text-mute);
    margin-top: 24px;
}
.hero-brandline strong { color: var(--text-dim); }
.hero-brandline .inline-se-logo {
    height: 26px; width: auto; border-radius: 5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.hero-media { position: relative; }
.hero-media-frame {
    position: relative; overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-strong);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
    background: #0a0f0a;
}
.hero-slides { position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.hero-slide {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.05);
    transition: opacity 1.4s var(--ease), transform 7s ease-out;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-video {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-media-badge {
    position: absolute; top: 16px; left: 16px;
    padding: 8px 16px; border-radius: 100px;
    background: var(--green); color: #06110a;
    font-family: var(--font-head); font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.1em;
    box-shadow: 0 8px 22px var(--green-glow);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px; border-radius: 100px;
    font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
    cursor: pointer; border: 1px solid transparent;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn-primary {
    background: linear-gradient(120deg, var(--green-bright), var(--green));
    color: #06110a;
    box-shadow: 0 10px 30px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--green-glow); }
.btn-arrow { transition: transform .3s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(5px); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-strong);
    color: var(--text);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--green); background: rgba(61, 205, 88, 0.08); }
.play-icon {
    width: 0; height: 0;
    border-top: 6px solid transparent; border-bottom: 6px solid transparent;
    border-left: 10px solid var(--green); margin-right: 2px;
}
.btn-block { width: 100%; justify-content: center; }

/* Evoparts24 orange button */
.btn-evo {
    background: linear-gradient(120deg, var(--evo-bright), var(--evo));
    color: #fff;
    box-shadow: 0 10px 30px var(--evo-glow);
}
.btn-evo:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--evo-glow); }
.btn-evo:hover .btn-arrow { transform: translateX(5px); }
.btn-sm { padding: 12px 22px; font-size: 0.92rem; }

/* centered call-to-action row below sections */
.section-cta {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
    margin-top: 48px;
}

/* ============================================================
   EVOPARTS24 STRIP (unter Stats)
   ============================================================ */
.evo-strip {
    background: linear-gradient(90deg, rgba(219, 78, 57, 0.12), rgba(219, 78, 57, 0.04));
    border-bottom: 1px solid var(--border);
}
.evo-strip-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap; padding: 18px 24px;
}
.evo-strip-brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.evo-strip-logo { height: 30px; width: auto; }
.evo-strip-brand span { color: var(--text); font-weight: 500; font-size: 0.98rem; }

/* ============================================================
   EVOPARTS24 CTA BAND (groß)
   ============================================================ */
.evo-cta { padding: clamp(60px, 8vw, 100px) 0; }
.evo-cta-inner {
    position: relative; overflow: hidden; text-align: center;
    max-width: 860px; margin: 0 auto;
    padding: clamp(40px, 6vw, 68px);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(219, 78, 57, 0.14), var(--surface));
    border: 1px solid rgba(219, 78, 57, 0.3);
}
.evo-cta-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 500px; height: 320px;
    background: radial-gradient(circle, var(--evo-glow), transparent 70%);
    filter: blur(34px);
}
.evo-cta-logo { height: 44px; width: auto; margin: 0 auto 22px; position: relative; }
.evo-cta-inner h2 { margin-bottom: 14px; position: relative; }
.evo-cta-inner > p { color: var(--text-dim); max-width: 620px; margin: 0 auto 30px; position: relative; }
.evo-cta-inner .section-cta { margin-top: 0; position: relative; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
    position: fixed; bottom: 26px; right: 86px; z-index: 91;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; border-radius: 100px;
    background: linear-gradient(120deg, var(--green-bright), var(--green));
    color: #06110a; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
    box-shadow: 0 12px 34px var(--green-glow);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, box-shadow .3s var(--ease);
}
.floating-cta.show { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 44px var(--green-glow); }
.fc-pulse {
    width: 9px; height: 9px; border-radius: 50%; background: #06110a;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); animation: pulse 2s infinite;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    padding: 44px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
    content: ""; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 54px; background: var(--border);
}
.stat-num {
    font-family: var(--font-head); font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--green-bright);
    line-height: 1;
    letter-spacing: -0.03em;
}
.stat-label { color: var(--text-dim); font-size: 0.92rem; margin-top: 10px; }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-text h2 { margin-bottom: 22px; }
.split-text p { color: var(--text-dim); margin-bottom: 16px; }
.split-text p strong { color: var(--text); }

.split-media { position: relative; }
.split-media img {
    width: 100%; border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.media-badge {
    position: absolute; top: 20px; left: 20px;
    padding: 8px 16px; border-radius: 100px;
    font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    background: rgba(7, 11, 8, 0.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid var(--border-strong); color: var(--text);
}
.media-badge.accent { background: var(--green); color: #06110a; border-color: transparent; }

/* Feedback-Signale (akustisch / haptisch / optisch) auf dunklem Grund */
.feedback-signals {
    margin-top: 16px;
    background: #0a0f0a;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
}
.split-media .feedback-signals img {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.check-list { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.check-list li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text); font-weight: 500;
}
.check-list li::before {
    content: "✓"; flex: none;
    display: grid; place-items: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(61, 205, 88, 0.15); color: var(--green-bright);
    font-size: 0.8rem; font-weight: 700;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 205, 88, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.product-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.product-media::after {
    content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(19, 27, 20, 0.9));
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-body { padding: 26px; }
.product-kicker {
    font-family: var(--font-head); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--green);
}
.product-body h3 { margin: 8px 0 12px; }
.product-body p { color: var(--text-dim); font-size: 0.96rem; margin-bottom: 18px; }
.product-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; color: var(--text);
    transition: gap .3s var(--ease), color .3s var(--ease);
}
.product-link span { color: var(--green); transition: transform .3s var(--ease); }
.product-link:hover { color: var(--green-bright); }
.product-link:hover span { transform: translateX(5px); }

/* ============================================================
   REASONS
   ============================================================ */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card {
    padding: 34px 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.reason-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--green), transparent);
    transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.reason-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.reason-card:hover::before { transform: scaleX(1); }
.reason-icon {
    font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center; margin-bottom: 20px;
    background: rgba(61, 205, 88, 0.1); color: var(--green-bright);
    border: 1px solid rgba(61, 205, 88, 0.2);
}
.reason-card h3 { margin-bottom: 4px; }
.reason-sub { color: var(--green); font-weight: 600; font-size: 0.92rem; margin-bottom: 12px; }
.reason-card > p:last-child { color: var(--text-dim); font-size: 0.96rem; }

/* ============================================================
   HOW TO
   ============================================================ */
.howto { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.step-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.step-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.step-media img { width: 100%; height: 100%; object-fit: cover; }
.step-num {
    position: absolute; bottom: 12px; right: 12px;
    width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--green); color: #06110a;
    font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
    box-shadow: 0 8px 20px var(--green-glow);
}
.step-card h3 { font-size: 1.15rem; margin: 20px 22px 8px; }
.step-card p { color: var(--text-dim); font-size: 0.92rem; margin: 0 22px 24px; }

/* ============================================================
   VIDEO
   ============================================================ */
.video-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
    background: #000;
}
.video-frame::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: 2;
    padding: 1px; pointer-events: none;
    background: linear-gradient(120deg, rgba(61, 205, 88, 0.5), transparent 40%, transparent 60%, rgba(61, 205, 88, 0.3));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
}
.video-frame video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }

/* ============================================================
   ROBOT
   ============================================================ */
.robot { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }

/* ============================================================
   UMSTIEG / KLASSIKER LC1D32
   ============================================================ */
.switch { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.spec-list {
    list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
    margin: 22px 0 26px;
}
.spec-list li {
    padding: 7px 14px; border-radius: 100px;
    border: 1px solid var(--border-strong); background: var(--surface);
    color: var(--text-dim); font-size: 0.85rem; font-family: var(--font-head); font-weight: 600;
}

/* ============================================================
   SAVINGS / KOSTENERSPARNIS
   ============================================================ */
.savings { background: linear-gradient(180deg, var(--bg-2), var(--bg)); overflow: hidden; }
.savings-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(36px, 5vw, 70px); align-items: center;
}
.savings-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    position: relative;
}
.savings-card-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; margin-bottom: 10px; flex-wrap: wrap;
}
.sc-title { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--text); }
.sc-legend { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-dim); }
.sc-legend .lg { width: 13px; height: 4px; border-radius: 3px; display: inline-block; }
.sc-legend .lg-screw { background: #8892a0; margin-left: 8px; }
.sc-legend .lg-feder { background: #d9a441; margin-left: 8px; }
.sc-legend .lg-snap { background: var(--green-bright); margin-left: 8px; }
.sc-legend .lg-without { background: #d9a441; margin-left: 8px; }
.sc-legend .lg-evo { background: var(--evo-bright); margin-left: 8px; }

.savings-chart { width: 100%; height: auto; display: block; }
.savings-chart .grid line { stroke: rgba(255, 255, 255, 0.06); stroke-width: 1; }
.savings-chart .axis { stroke: rgba(255, 255, 255, 0.16); stroke-width: 1.5; }
.savings-chart .area { fill: url(#savingsGrad); opacity: 0; }
.savings-chart .area-evo { fill: url(#savingsGradEvo); opacity: 0; }
.savings-chart .line { fill: none; stroke-width: 3.6; stroke-linecap: round; }
.line-screw { stroke: #8892a0; stroke-dasharray: 100; stroke-dashoffset: 100; }
.line-feder { stroke: #d9a441; stroke-width: 2.6; stroke-dasharray: 6 5; opacity: 0; }
.line-snap { stroke: var(--green-bright); stroke-dasharray: 100; stroke-dashoffset: 100; }
.line-without { stroke: #d9a441; stroke-width: 2.6; stroke-dasharray: 6 5; opacity: 0; }
.line-evo { stroke: var(--evo-bright); stroke-dasharray: 100; stroke-dashoffset: 100; }
.move-dot { fill: var(--green-bright); }
.move-dot-evo { fill: var(--evo-bright); opacity: 0; }
.savings-chart .lbl { font-family: var(--font-head); font-size: 14px; font-weight: 600; opacity: 0; }
.savings-chart .lbl-screw { fill: #aab2bd; }
.savings-chart .lbl-feder { fill: #e6b866; }
.savings-chart .lbl-snap { fill: var(--green-bright); }
.savings-chart .lbl-without { fill: #e6b866; }
.savings-chart .lbl-evo { fill: var(--evo-bright); }
.savings-chart .axis-x { fill: var(--text-mute); font-size: 12px; text-anchor: middle; letter-spacing: 0.04em; }
.savings-chart .axis-y { fill: var(--text-mute); font-size: 12px; text-anchor: middle; letter-spacing: 0.04em; }
.savings-chart .save-badge { opacity: 0; transform-box: fill-box; transform-origin: center; }
.savings-chart .save-badge rect {
    fill: rgba(9, 18, 11, 0.9); stroke: var(--green); stroke-width: 1.5;
}
.savings-chart .sb-num { fill: #eafff0; font-family: var(--font-head); font-weight: 700; font-size: 15px; text-anchor: middle; }
.savings-chart .sb-sub { fill: #a9e6ba; font-size: 11px; text-anchor: middle; letter-spacing: 0.03em; }
.savings-chart .evo-badge { opacity: 0; transform-box: fill-box; transform-origin: center; }
.savings-chart .evo-badge rect {
    fill: rgba(24, 11, 8, 0.9); stroke: var(--evo-bright); stroke-width: 1.5;
}
.savings-chart .eb-num { fill: #ffe6df; font-family: var(--font-head); font-weight: 700; font-size: 15px; text-anchor: middle; }
.savings-chart .eb-sub { fill: #f0b9ac; font-size: 10.5px; text-anchor: middle; letter-spacing: 0.02em; }

/* trigger animations when chart scrolls into view */
.savings-chart.in .line-screw { animation: drawLine 1.7s 0.15s var(--ease) forwards; }
.savings-chart.in .line-feder { animation: fadeIn 1s 0.9s var(--ease) forwards; }
.savings-chart.in .line-snap { animation: drawLine 1.7s 0.45s var(--ease) forwards; }
.savings-chart.in .line-without { animation: fadeIn 1s 1.0s var(--ease) forwards; }
.savings-chart.in .line-evo { animation: drawLine 1.7s 0.75s var(--ease) forwards; }
.savings-chart.in .area { animation: fadeIn 1.3s 0.9s var(--ease) forwards; }
.savings-chart.in .area-evo { animation: fadeIn 1.3s 1.1s var(--ease) forwards; }
.savings-chart.in .move-dot-evo { animation: fadeIn 0.6s 1.3s var(--ease) forwards; }
.savings-chart.in .lbl { animation: fadeIn 0.7s 1.5s var(--ease) forwards; }
.savings-chart.in .save-badge { animation: popIn 0.7s 1.7s var(--ease) forwards; }
.savings-chart.in .evo-badge { animation: popIn 0.7s 1.95s var(--ease) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes popIn { 0% { opacity: 0; transform: scale(0.8); } 60% { transform: scale(1.05); } 100% { opacity: 1; transform: scale(1); } }

.savings-text h2 { margin-bottom: 18px; }
.savings-text > p { color: var(--text-dim); margin-bottom: 26px; }
.savings-text > p strong { color: var(--text); }
.savings-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    padding: 24px 0; margin-bottom: 22px;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.sv-stat { display: flex; flex-direction: column; gap: 4px; }
.sv-num {
    font-family: var(--font-head); font-weight: 700; line-height: 1;
    font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--green-bright);
    letter-spacing: -0.02em;
}
.sv-stat-evo .sv-num { color: var(--evo-bright); }
.sv-label { font-size: 0.82rem; color: var(--text-dim); }
.savings-note { color: var(--text-mute); font-size: 0.95rem; margin-bottom: 28px; }

/* Evoparts24/evobrain Beispiel-Box in der Sparsektion */
.savings-evo-box {
    display: flex; align-items: center; gap: 14px;
    background: rgba(219, 78, 57, 0.09);
    border: 1px solid rgba(219, 78, 57, 0.35);
    border-radius: 14px; padding: 14px 16px; margin-bottom: 22px;
}
.seb-icon {
    flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: rgba(219, 78, 57, 0.16); color: var(--evo-bright); font-size: 1.15rem;
    border: 1px solid rgba(219, 78, 57, 0.3);
}
.seb-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.4; }
.seb-text strong { font-family: var(--font-head); font-size: 0.9rem; color: var(--text); }
.seb-text span { font-size: 0.9rem; color: var(--text-dim); }
.seb-text s { color: var(--text-mute); }
.seb-text b { color: var(--evo-bright); font-weight: 700; }
.seb-link {
    flex: none; margin-left: auto; align-self: center;
    font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--evo-bright);
    white-space: nowrap; transition: transform .25s var(--ease);
}
.seb-link:hover { transform: translateX(4px); }

/* ============================================================
   EVOBRAIN SPARRECHNER
   ============================================================ */
.evobrain { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.evobrain .section-tag { color: var(--evo-bright); background: rgba(219, 78, 57, 0.08); border-color: rgba(219, 78, 57, 0.3); }
.eb-calc {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 48px);
    align-items: stretch;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.eb-controls { display: flex; flex-direction: column; gap: 16px; }
.eb-controls label { font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 0.95rem; }
.eb-input {
    display: flex; align-items: center; gap: 10px;
    background: rgba(0, 0, 0, 0.28); border: 1px solid var(--border-strong);
    border-radius: 14px; padding: 8px;
}
.eb-input button {
    width: 42px; height: 42px; flex: none; border-radius: 10px; cursor: pointer;
    border: 1px solid var(--border-strong); background: var(--surface);
    color: var(--text); font-size: 1.3rem; font-family: var(--font-head);
    transition: background .25s var(--ease), border-color .25s var(--ease);
}
.eb-input button:hover { border-color: var(--evo); background: rgba(219, 78, 57, 0.12); color: var(--evo-bright); }
.eb-input input {
    flex: 1; min-width: 0; background: none; border: none; outline: none;
    color: var(--text); font-family: var(--font-head); font-weight: 700;
    font-size: 1.6rem; text-align: center;
}
.eb-input input::-webkit-outer-spin-button, .eb-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.eb-presets { display: flex; gap: 8px; flex-wrap: wrap; }
.eb-preset {
    padding: 7px 14px; border-radius: 100px; cursor: pointer;
    border: 1px solid var(--border-strong); background: transparent;
    color: var(--text-dim); font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
    transition: all .25s var(--ease);
}
.eb-preset:hover { border-color: var(--evo); color: var(--evo-bright); }
.eb-preset.is-active { background: var(--evo); border-color: var(--evo); color: #fff; }
.eb-assumption { color: var(--text-mute); font-size: 0.82rem; line-height: 1.5; margin-top: 4px; }

.eb-visual { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.eb-bar-row { display: flex; flex-direction: column; gap: 8px; }
.eb-bar-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.eb-bar-label { color: var(--text-dim); font-size: 0.92rem; }
.eb-bar-label strong { color: var(--evo-bright); }
.eb-bar-val { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.eb-bar-val.eb-val-evo { color: var(--evo-bright); }
.eb-bar { height: 20px; border-radius: 100px; background: rgba(255, 255, 255, 0.05); overflow: hidden; }
.eb-bar-fill {
    display: block; height: 100%; width: 0; border-radius: 100px;
    transition: width 1s var(--ease);
}
.eb-fill-manual { background: linear-gradient(90deg, #6b7484, #8892a0); }
.eb-fill-evo { background: linear-gradient(90deg, var(--evo), var(--evo-bright)); box-shadow: 0 0 18px var(--evo-glow); }

.eb-result {
    display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
    margin-top: 6px; padding-top: 20px; border-top: 1px solid var(--border);
}
.eb-res-item { display: flex; flex-direction: column; gap: 2px; }
.eb-res-num {
    font-family: var(--font-head); font-weight: 700; line-height: 1;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--evo-bright); letter-spacing: -0.02em;
}
.eb-res-label { color: var(--text-dim); font-size: 0.85rem; }
.eb-cta { margin-top: 8px; align-self: flex-start; }

/* ============================================================
   ABOUT EVOPARTS24
   ============================================================ */
.about { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.about .section-tag {
    color: var(--evo-bright);
    background: rgba(219, 78, 57, 0.08);
    border-color: rgba(219, 78, 57, 0.3);
}
.about-top {
    display: grid; grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(36px, 5vw, 70px); align-items: center; margin-bottom: 60px;
}
.about-intro h2 { margin-bottom: 20px; }
.about-intro > p { color: var(--text-dim); margin-bottom: 16px; }
.about-intro > p strong { color: var(--text); }
.about-intro .btn { margin-top: 12px; }

.about-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.about-stat {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 26px 22px;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.about-stat:hover { transform: translateY(-5px); border-color: rgba(219, 78, 57, 0.45); }
.as-num {
    display: block; font-family: var(--font-head); font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.15rem); color: var(--evo-bright);
    line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px;
}
.as-label { color: var(--text-dim); font-size: 0.88rem; }

.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 24px;
    transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(219, 78, 57, 0.4); background: var(--surface-2); }
.value-icon {
    width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
    font-size: 1.3rem; margin-bottom: 16px;
    background: rgba(219, 78, 57, 0.12); color: var(--evo-bright);
    border: 1px solid rgba(219, 78, 57, 0.25);
}
.value-card:hover .value-icon { background: rgba(219, 78, 57, 0.18); }
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { color: var(--text-dim); font-size: 0.92rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 56px); align-items: start;
}
.contact-info .section-tag {
    margin-bottom: 18px;
    color: var(--evo-bright);
    background: rgba(219, 78, 57, 0.08);
    border-color: rgba(219, 78, 57, 0.3);
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-dim); margin-bottom: 28px; }
.contact-list { list-style: none; display: grid; gap: 16px; margin-bottom: 32px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.ci-ico {
    flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: rgba(219, 78, 57, 0.1); color: var(--evo-bright);
    border: 1px solid rgba(219, 78, 57, 0.25); font-size: 1.05rem;
}
.contact-list .ci-k { display: block; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 2px; }
.contact-list a, .contact-list span > span:not(.ci-k) { color: var(--text); }
.contact-list a:hover { color: var(--evo-bright); }

.contact-people { display: grid; gap: 14px; }
.person {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 14px 16px;
}
.person-avatar {
    flex: none; width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
    background: linear-gradient(135deg, var(--evo), var(--evo-deep)); color: #fff;
}
.person-info { display: flex; flex-direction: column; line-height: 1.35; }
.person-info strong { font-family: var(--font-head); }
.person-info span { font-size: 0.8rem; color: var(--text-mute); }
.person-info a { font-size: 0.85rem; color: var(--evo-bright); }
.cta-form-title { font-size: 1.2rem; margin-bottom: 18px; position: relative; }

/* ============================================================
   PARTNER / MANUFACTURER BAND
   ============================================================ */
.partner {
    padding: clamp(40px, 6vw, 70px) 0;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partner-inner {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 5vw, 60px);
    align-items: center;
}
.partner-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.partner-text p { color: var(--text-dim); }
.partner-text p strong { color: var(--text); }
.partner-logo {
    display: grid; place-items: center;
    padding: clamp(20px, 3vw, 32px);
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-strong);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.partner-logo img {
    max-width: 100%; width: min(360px, 100%); height: auto;
    border-radius: 10px;
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta { padding-bottom: clamp(80px, 10vw, 140px); }
.cta-inner {
    position: relative;
    padding: clamp(30px, 4vw, 44px);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-strong);
    overflow: hidden;
}
.cta-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 460px; height: 300px;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    filter: blur(30px);
}
.cta-inner h2 { margin-bottom: 16px; position: relative; }
.cta-inner > p { color: var(--text-dim); margin-bottom: 34px; position: relative; }
.cta-form { position: relative; display: grid; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input, .cta-form textarea {
    width: 100%; padding: 15px 18px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-strong);
    border-radius: 14px; color: var(--text);
    font-family: var(--font-body); font-size: 1rem; /* min. 16px verhindert iOS-Auto-Zoom */
    transition: border-color .3s var(--ease), background .3s var(--ease);
    resize: vertical;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: var(--text-mute); }
.cta-form input:focus, .cta-form textarea:focus {
    outline: none; border-color: var(--green);
    background: rgba(61, 205, 88, 0.05);
}
.form-note { color: var(--green-bright); font-weight: 600; text-align: center; }
.form-note.error { color: var(--evo-bright); }
.form-privacy { font-size: 0.8rem; color: var(--text-mute); text-align: center; }
.form-privacy a { color: var(--text-dim); text-decoration: underline; }
.form-privacy a:hover { color: var(--green-bright); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-top: 60px; }
.footer-inner {
    display: grid; grid-template-columns: 1.4fr 0.8fr 1.2fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-col h4 {
    font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text); margin-bottom: 16px;
}
.footer-contact { font-style: normal; color: var(--text-dim); font-size: 0.92rem; line-height: 1.6; }
.footer-contact a { color: var(--text-dim); transition: color .25s var(--ease); }
.footer-contact a:hover { color: var(--green); }
.footer-linkedin {
    display: inline-block; margin-top: 16px; padding: 7px 14px;
    border: 1px solid var(--border-strong); border-radius: 8px;
    font-size: 0.85rem; color: var(--text-dim); transition: all .25s var(--ease);
}
.footer-linkedin:hover { color: var(--evo-bright); border-color: var(--evo); }
.footer-brand { max-width: 340px; }
.footer-logo {
    height: 42px; width: auto;
}
.footer-brand p { color: var(--text-dim); font-size: 0.95rem; margin-top: 16px; }
.footer-partner {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 22px;
}
.footer-partner span {
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-mute);
}
.footer-se-logo {
    height: 34px; width: auto; align-self: flex-start;
    border-radius: 7px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-nav a { color: var(--text-dim); font-weight: 500; transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--green); }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    padding: 24px 0; color: var(--text-mute); font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: var(--text-mute); transition: color .25s var(--ease); }
.footer-legal a:hover { color: var(--green); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed; bottom: 26px; right: 26px; z-index: 90;
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--green); color: #06110a; font-size: 1.3rem; font-weight: 700;
    box-shadow: 0 10px 30px var(--green-glow);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .main-nav {
        position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(80vw, 320px);
        flex-direction: column; align-items: flex-start; justify-content: center;
        gap: 26px; padding: 40px;
        background: rgba(9, 14, 10, 0.98); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
        transform: translateX(100%); transition: transform .4s var(--ease);
        border-left: 1px solid var(--border);
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav a { font-size: 1.15rem; }
    .nav-toggle { display: flex; z-index: 101; }
    .product-grid, .reason-grid { grid-template-columns: repeat(2, 1fr); }
    .step-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; gap: 34px; max-width: 640px; margin: 0 auto; }
    .hero-media { order: -1; }
    .hero-content { max-width: none; }
    .split { grid-template-columns: 1fr; }
    .split.reverse .split-media, .robot .split-media { order: -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
    .stat:nth-child(2)::after { display: none; }
    .partner-inner { grid-template-columns: 1fr; text-align: center; }
    .partner-text .section-tag { margin-left: auto; margin-right: auto; }
    .partner-logo { order: -1; }
    .savings-grid { grid-template-columns: 1fr; }
    .savings-visual { order: -1; }
    .eb-calc { grid-template-columns: 1fr; }
    .about-top { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .product-grid, .reason-grid, .step-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stat:not(:last-child)::after { display: none; }
    .footer-bottom { flex-direction: column; }
    .about-values { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
    .evo-strip-inner { flex-direction: column; text-align: center; }
    .evo-strip-brand { justify-content: center; }
    .floating-cta { right: 16px; bottom: 84px; padding: 12px 18px; font-size: 0.88rem; }
    .hero { min-height: auto; padding: 116px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-media { order: -1; }
    .hero-media-frame { aspect-ratio: 16 / 9; }
    .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
    padding: 16px 0;
    background: rgba(9, 14, 10, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border-strong);
    transform: translateY(100%); opacity: 0;
    transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner-inner {
    width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
    display: flex; flex-wrap: wrap; gap: 14px 28px;
    align-items: center; justify-content: space-between;
}
.cookie-banner-text { flex: 1 1 460px; color: var(--text-dim); font-size: 0.95rem; margin: 0; }
.cookie-banner-text strong { color: var(--text); }
.cookie-banner-text a { color: var(--green-bright); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 720px) {
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* Grosse Monitore: Schrift skaliert mit, damit die Seite nicht klein wirkt */
@media (min-width: 1680px) {
    html { font-size: 17.5px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
x;
    border: 1px solid var(--border-strong); background: var(--surface);
    color: var(--text-dim); font-size: 0.85rem; font-family: var(--font-head); font-weight: 600;
}

/* ============================================================
   SAVINGS / KOSTENERSPARNIS
   ============================================================ */
.savings { background: linear-gradient(180deg, var(--bg-2), var(--bg)); overflow: hidden; }
.savings-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(36px, 5vw, 70px); align-items: center;
}
.savings-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    position: relative;
}
.savings-card-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; margin-bottom: 10px; flex-wrap: wrap;
}
.sc-title { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--text); }
.sc-legend { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-dim); }
.sc-legend .lg { width: 13px; height: 4px; border-radius: 3px; display: inline-block; }
.sc-legend .lg-screw { background: #8892a0; margin-left: 8px; }
.sc-legend .lg-feder { background: #d9a441; margin-left: 8px; }
.sc-legend .lg-snap { background: var(--green-bright); margin-left: 8px; }
.sc-legend .lg-without { background: #d9a441; margin-left: 8px; }
.sc-legend .lg-evo { background: var(--evo-bright); margin-left: 8px; }

.savings-chart { width: 100%; height: auto; display: block; }
.savings-chart .grid line { stroke: rgba(255, 255, 255, 0.06); stroke-width: 1; }
.savings-chart .axis { stroke: rgba(255, 255, 255, 0.16); stroke-width: 1.5; }
.savings-chart .area { fill: url(#savingsGrad); opacity: 0; }
.savings-chart .area-evo { fill: url(#savingsGradEvo); opacity: 0; }
.savings-chart .line { fill: none; stroke-width: 3.6; stroke-linecap: round; }
.line-screw { stroke: #8892a0; stroke-dasharray: 100; stroke-dashoffset: 100; }
.line-feder { stroke: #d9a441; stroke-width: 2.6; stroke-dasharray: 6 5; opacity: 0; }
.line-snap { stroke: var(--green-bright); stroke-dasharray: 100; stroke-dashoffset: 100; }
.line-without { stroke: #d9a441; stroke-width: 2.6; stroke-dasharray: 6 5; opacity: 0; }
.line-evo { stroke: var(--evo-bright); stroke-dasharray: 100; stroke-dashoffset: 100; }
.move-dot { fill: var(--green-bright); }
.move-dot-evo { fill: var(--evo-bright); opacity: 0; }
.savings-chart .lbl { font-family: var(--font-head); font-size: 13px; font-weight: 600; opacity: 0; }
.savings-chart .lbl-screw { fill: #aab2bd; }
.savings-chart .lbl-feder { fill: #e6b866; }
.savings-chart .lbl-snap { fill: var(--green-bright); }
.savings-chart .lbl-without { fill: #e6b866; }
.savings-chart .lbl-evo { fill: var(--evo-bright); }
.savings-chart .axis-x { fill: var(--text-mute); font-size: 12px; text-anchor: middle; letter-spacing: 0.04em; }
.savings-chart .axis-y { fill: var(--text-mute); font-size: 12px; text-anchor: middle; letter-spacing: 0.04em; }
.savings-chart .save-badge { opacity: 0; transform-box: fill-box; transform-origin: center; }
.savings-chart .save-badge rect {
    fill: rgba(9, 18, 11, 0.9); stroke: var(--green); stroke-width: 1.5;
}
.savings-chart .sb-num { fill: #eafff0; font-family: var(--font-head); font-weight: 700; font-size: 15px; text-anchor: middle; }
.savings-chart .sb-sub { fill: #a9e6ba; font-size: 11px; text-anchor: middle; letter-spacing: 0.03em; }
.savings-chart .evo-badge { opacity: 0; transform-box: fill-box; transform-origin: center; }
.savings-chart .evo-badge rect {
    fill: rgba(24, 11, 8, 0.9); stroke: var(--evo-bright); stroke-width: 1.5;
}
.savings-chart .eb-num { fill: #ffe6df; font-family: var(--font-head); font-weight: 700; font-size: 15px; text-anchor: middle; }
.savings-chart .eb-sub { fill: #f0b9ac; font-size: 10.5px; text-anchor: middle; letter-spacing: 0.02em; }

/* trigger animations when chart scrolls into view */
.savings-chart.in .line-screw { animation: drawLine 1.7s 0.15s var(--ease) forwards; }
.savings-chart.in .line-feder { animation: fadeIn 1s 0.9s var(--ease) forwards; }
.savings-chart.in .line-snap { animation: drawLine 1.7s 0.45s var(--ease) forwards; }
.savings-chart.in .line-without { animation: fadeIn 1s 1.0s var(--ease) forwards; }
.savings-chart.in .line-evo { animation: drawLine 1.7s 0.75s var(--ease) forwards; }
.savings-chart.in .area { animation: fadeIn 1.3s 0.9s var(--ease) forwards; }
.savings-chart.in .area-evo { animation: fadeIn 1.3s 1.1s var(--ease) forwards; }
.savings-chart.in .move-dot-evo { animation: fadeIn 0.6s 1.3s var(--ease) forwards; }
.savings-chart.in .lbl { animation: fadeIn 0.7s 1.5s var(--ease) forwards; }
.savings-chart.in .save-badge { animation: popIn 0.7s 1.7s var(--ease) forwards; }
.savings-chart.in .evo-badge { animation: popIn 0.7s 1.95s var(--ease) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes popIn { 0% { opacity: 0; transform: scale(0.8); } 60% { transform: scale(1.05); } 100% { opacity: 1; transform: scale(1); } }

.savings-text h2 { margin-bottom: 18px; }
.savings-text > p { color: var(--text-dim); margin-bottom: 26px; }
.savings-text > p strong { color: var(--text); }
.savings-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    padding: 24px 0; margin-bottom: 22px;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.sv-stat { display: flex; flex-direction: column; gap: 4px; }
.sv-num {
    font-family: var(--font-head); font-weight: 700; line-height: 1;
    font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--green-bright);
    letter-spacing: -0.02em;
}
.sv-stat-evo .sv-num { color: var(--evo-bright); }
.sv-label { font-size: 0.82rem; color: var(--text-dim); }
.savings-note { color: var(--text-mute); font-size: 0.95rem; margin-bottom: 28px; }

/* Evoparts24/evobrain Beispiel-Box in der Sparsektion */
.savings-evo-box {
    display: flex; align-items: center; gap: 14px;
    background: rgba(219, 78, 57, 0.09);
    border: 1px solid rgba(219, 78, 57, 0.35);
    border-radius: 14px; padding: 14px 16px; margin-bottom: 22px;
}
.seb-icon {
    flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: rgba(219, 78, 57, 0.16); color: var(--evo-bright); font-size: 1.15rem;
    border: 1px solid rgba(219, 78, 57, 0.3);
}
.seb-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.4; }
.seb-text strong { font-family: var(--font-head); font-size: 0.9rem; color: var(--text); }
.seb-text span { font-size: 0.9rem; color: var(--text-dim); }
.seb-text s { color: var(--text-mute); }
.seb-text b { color: var(--evo-bright); font-weight: 700; }
.seb-link {
    flex: none; margin-left: auto; align-self: center;
    font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--evo-bright);
    white-space: nowrap; transition: transform .25s var(--ease);
}
.seb-link:hover { transform: translateX(4px); }

/* ============================================================
   EVOBRAIN SPARRECHNER
   ============================================================ */
.evobrain { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.evobrain .section-tag { color: var(--evo-bright); background: rgba(219, 78, 57, 0.08); border-color: rgba(219, 78, 57, 0.3); }
.eb-calc {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 48px);
    align-items: stretch;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.eb-controls { display: flex; flex-direction: column; gap: 16px; }
.eb-controls label { font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 0.95rem; }
.eb-input {
    display: flex; align-items: center; gap: 10px;
    background: rgba(0, 0, 0, 0.28); border: 1px solid var(--border-strong);
    border-radius: 14px; padding: 8px;
}
.eb-input button {
    width: 42px; height: 42px; flex: none; border-radius: 10px; cursor: pointer;
    border: 1px solid var(--border-strong); background: var(--surface);
    color: var(--text); font-size: 1.3rem; font-family: var(--font-head);
    transition: background .25s var(--ease), border-color .25s var(--ease);
}
.eb-input button:hover { border-color: var(--evo); background: rgba(219, 78, 57, 0.12); color: var(--evo-bright); }
.eb-input input {
    flex: 1; min-width: 0; background: none; border: none; outline: none;
    color: var(--text); font-family: var(--font-head); font-weight: 700;
    font-size: 1.6rem; text-align: center;
}
.eb-input input::-webkit-outer-spin-button, .eb-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.eb-presets { display: flex; gap: 8px; flex-wrap: wrap; }
.eb-preset {
    padding: 7px 14px; border-radius: 100px; cursor: pointer;
    border: 1px solid var(--border-strong); background: transparent;
    color: var(--text-dim); font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
    transition: all .25s var(--ease);
}
.eb-preset:hover { border-color: var(--evo); color: var(--evo-bright); }
.eb-preset.is-active { background: var(--evo); border-color: var(--evo); color: #fff; }
.eb-assumption { color: var(--text-mute); font-size: 0.82rem; line-height: 1.5; margin-top: 4px; }

.eb-visual { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.eb-bar-row { display: flex; flex-direction: column; gap: 8px; }
.eb-bar-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.eb-bar-label { color: var(--text-dim); font-size: 0.92rem; }
.eb-bar-label strong { color: var(--evo-bright); }
.eb-bar-val { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.eb-bar-val.eb-val-evo { color: var(--evo-bright); }
.eb-bar { height: 20px; border-radius: 100px; background: rgba(255, 255, 255, 0.05); overflow: hidden; }
.eb-bar-fill {
    display: block; height: 100%; width: 0; border-radius: 100px;
    transition: width 1s var(--ease);
}
.eb-fill-manual { background: linear-gradient(90deg, #6b7484, #8892a0); }
.eb-fill-evo { background: linear-gradient(90deg, var(--evo), var(--evo-bright)); box-shadow: 0 0 18px var(--evo-glow); }

.eb-result {
    display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
    margin-top: 6px; padding-top: 20px; border-top: 1px solid var(--border);
}
.eb-res-item { display: flex; flex-direction: column; gap: 2px; }
.eb-res-num {
    font-family: var(--font-head); font-weight: 700; line-height: 1;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--evo-bright); letter-spacing: -0.02em;
}
.eb-res-label { color: var(--text-dim); font-size: 0.85rem; }
.eb-cta { margin-top: 8px; align-self: flex-start; }

/* ============================================================
   ABOUT EVOPARTS24
   ============================================================ */
.about { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.about .section-tag {
    color: var(--evo-bright);
    background: rgba(219, 78, 57, 0.08);
    border-color: rgba(219, 78, 57, 0.3);
}
.about-top {
    display: grid; grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(36px, 5vw, 70px); align-items: center; margin-bottom: 60px;
}
.about-intro h2 { margin-bottom: 20px; }
.about-intro > p { color: var(--text-dim); margin-bottom: 16px; }
.about-intro > p strong { color: var(--text); }
.about-intro .btn { margin-top: 12px; }

.about-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.about-stat {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 26px 22px;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.about-stat:hover { transform: translateY(-5px); border-color: rgba(219, 78, 57, 0.45); }
.as-num {
    display: block; font-family: var(--font-head); font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.15rem); color: var(--evo-bright);
    line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px;
}
.as-label { color: var(--text-dim); font-size: 0.88rem; }

.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 24px;
    transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(219, 78, 57, 0.4); background: var(--surface-2); }
.value-icon {
    width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
    font-size: 1.3rem; margin-bottom: 16px;
    background: rgba(219, 78, 57, 0.12); color: var(--evo-bright);
    border: 1px solid rgba(219, 78, 57, 0.25);
}
.value-card:hover .value-icon { background: rgba(219, 78, 57, 0.18); }
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { color: var(--text-dim); font-size: 0.92rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 56px); align-items: start;
}
.contact-info .section-tag {
    margin-bottom: 18px;
    color: var(--evo-bright);
    background: rgba(219, 78, 57, 0.08);
    border-color: rgba(219, 78, 57, 0.3);
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-dim); margin-bottom: 28px; }
.contact-list { list-style: none; display: grid; gap: 16px; margin-bottom: 32px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.ci-ico {
    flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: rgba(219, 78, 57, 0.1); color: var(--evo-bright);
    border: 1px solid rgba(219, 78, 57, 0.25); font-size: 1.05rem;
}
.contact-list .ci-k { display: block; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 2px; }
.contact-list a, .contact-list span > span:not(.ci-k) { color: var(--text); }
.contact-list a:hover { color: var(--evo-bright); }

.contact-people { display: grid; gap: 14px; }
.person {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 14px 16px;
}
.person-avatar {
    flex: none; width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
    background: linear-gradient(135deg, var(--evo), var(--evo-deep)); color: #fff;
}
.person-info { display: flex; flex-direction: column; line-height: 1.35; }
.person-info strong { font-family: var(--font-head); }
.person-info span { font-size: 0.8rem; color: var(--text-mute); }
.person-info a { font-size: 0.85rem; color: var(--evo-bright); }
.cta-form-title { font-size: 1.2rem; margin-bottom: 18px; position: relative; }

/* ============================================================
   PARTNER / MANUFACTURER BAND
   ============================================================ */
.partner {
    padding: clamp(40px, 6vw, 70px) 0;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partner-inner {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 5vw, 60px);
    align-items: center;
}
.partner-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.partner-text p { color: var(--text-dim); }
.partner-text p strong { color: var(--text); }
.partner-logo {
    display: grid; place-items: center;
    padding: clamp(20px, 3vw, 32px);
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-strong);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.partner-logo img {
    max-width: 100%; width: min(360px, 100%); height: auto;
    border-radius: 10px;
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta { padding-bottom: clamp(80px, 10vw, 140px); }
.cta-inner {
    position: relative;
    padding: clamp(30px, 4vw, 44px);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-strong);
    overflow: hidden;
}
.cta-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 460px; height: 300px;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    filter: blur(30px);
}
.cta-inner h2 { margin-bottom: 16px; position: relative; }
.cta-inner > p { color: var(--text-dim); margin-bottom: 34px; position: relative; }
.cta-form { position: relative; display: grid; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input, .cta-form textarea {
    width: 100%; padding: 15px 18px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-strong);
    border-radius: 14px; color: var(--text);
    font-family: var(--font-body); font-size: 1rem; /* min. 16px verhindert iOS-Auto-Zoom */
    transition: border-color .3s var(--ease), background .3s var(--ease);
    resize: vertical;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: var(--text-mute); }
.cta-form input:focus, .cta-form textarea:focus {
    outline: none; border-color: var(--green);
    background: rgba(61, 205, 88, 0.05);
}
.form-note { color: var(--green-bright); font-weight: 600; text-align: center; }
.form-note.error { color: var(--evo-bright); }
.form-privacy { font-size: 0.8rem; color: var(--text-mute); text-align: center; }
.form-privacy a { color: var(--text-dim); text-decoration: underline; }
.form-privacy a:hover { color: var(--green-bright); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-top: 60px; }
.footer-inner {
    display: grid; grid-template-columns: 1.4fr 0.8fr 1.2fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-col h4 {
    font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text); margin-bottom: 16px;
}
.footer-contact { font-style: normal; color: var(--text-dim); font-size: 0.92rem; line-height: 1.6; }
.footer-contact a { color: var(--text-dim); transition: color .25s var(--ease); }
.footer-contact a:hover { color: var(--green); }
.footer-linkedin {
    display: inline-block; margin-top: 16px; padding: 7px 14px;
    border: 1px solid var(--border-strong); border-radius: 8px;
    font-size: 0.85rem; color: var(--text-dim); transition: all .25s var(--ease);
}
.footer-linkedin:hover { color: var(--evo-bright); border-color: var(--evo); }
.footer-brand { max-width: 340px; }
.footer-logo {
    height: 42px; width: auto;
}
.footer-brand p { color: var(--text-dim); font-size: 0.95rem; margin-top: 16px; }
.footer-partner {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 22px;
}
.footer-partner span {
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-mute);
}
.footer-se-logo {
    height: 34px; width: auto; align-self: flex-start;
    border-radius: 7px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-nav a { color: var(--text-dim); font-weight: 500; transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--green); }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    padding: 24px 0; color: var(--text-mute); font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: var(--text-mute); transition: color .25s var(--ease); }
.footer-legal a:hover { color: var(--green); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed; bottom: 26px; right: 26px; z-index: 90;
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--green); color: #06110a; font-size: 1.3rem; font-weight: 700;
    box-shadow: 0 10px 30px var(--green-glow);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .main-nav {
        position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(80vw, 320px);
        flex-direction: column; align-items: flex-start; justify-content: center;
        gap: 26px; padding: 40px;
        background: rgba(9, 14, 10, 0.98); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
        transform: translateX(100%); transition: transform .4s var(--ease);
        border-left: 1px solid var(--border);
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav a { font-size: 1.15rem; }
    .nav-toggle { display: flex; z-index: 101; }
    .product-grid, .reason-grid { grid-template-columns: repeat(2, 1fr); }
    .step-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; gap: 34px; max-width: 640px; margin: 0 auto; }
    .hero-media { order: -1; }
    .hero-content { max-width: none; }
    .split { grid-template-columns: 1fr; }
    .split.reverse .split-media, .robot .split-media { order: -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
    .stat:nth-child(2)::after { display: none; }
    .partner-inner { grid-template-columns: 1fr; text-align: center; }
    .partner-text .section-tag { margin-left: auto; margin-right: auto; }
    .partner-logo { order: -1; }
    .savings-grid { grid-template-columns: 1fr; }
    .savings-visual { order: -1; }
    .eb-calc { grid-template-columns: 1fr; }
    .about-top { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .product-grid, .reason-grid, .step-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stat:not(:last-child)::after { display: none; }
    .footer-bottom { flex-direction: column; }
    .about-values { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
    .evo-strip-inner { flex-direction: column; text-align: center; }
    .evo-strip-brand { justify-content: center; }
    .floating-cta { right: 16px; bottom: 84px; padding: 12px 18px; font-size: 0.88rem; }
    .hero { min-height: auto; padding: 116px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-media { order: -1; }
    .hero-media-frame { aspect-ratio: 16 / 9; }
    .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
