/* ═══════════════════════════════════════════════════════════════
   NEURA CONSULTING — SHARED STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES & RESET ─────────────────────────────────────── */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --text-primary: #f0eee6;
    --text-secondary: #9895a7;
    --text-muted: #5d5a6b;
    --accent: #c8ff2e;
    --accent-dim: rgba(200, 255, 46, 0.12);
    --accent-glow: rgba(200, 255, 46, 0.25);
    --gradient-1: linear-gradient(135deg, #c8ff2e 0%, #7fff5e 100%);
    --gradient-2: linear-gradient(135deg, rgba(200,255,46,0.15) 0%, rgba(127,255,94,0.05) 100%);
    --border: rgba(255,255,255,0.06);
    --border-accent: rgba(200,255,46,0.2);
    --red: #ff4455;
    --red-dim: rgba(255,68,85,0.1);
    --red-border: rgba(255,68,85,0.2);
    --green: #2ecc71;
    --green-dim: rgba(46,204,113,0.1);
    --green-border: rgba(46,204,113,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Cabinet Grotesk', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ── NOISE OVERLAY ─────────────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* ── GLOBAL TYPOGRAPHY ─────────────────────────────────────── */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.section-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary::after { content: '→'; transition: transform 0.3s var(--ease-out); }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-primary:hover::after { transform: translateX(4px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 60px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.de-risk {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 0;
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(200,255,46,0.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg); }
}

@keyframes dash-flow {
    to { stroke-dashoffset: -20; }
}

@keyframes node-pulse {
    0%, 100% { r: var(--r-base); opacity: 0.7; }
    50% { r: var(--r-pulse); opacity: 1; }
}

@keyframes data-particle {
    0% { opacity: 0; offset-distance: 0%; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; offset-distance: 100%; }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── NAV BAR ───────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.nav-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.04em;
}

.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    border-radius: 60px;
    font-weight: 700 !important;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 24px var(--accent-glow);
    color: var(--bg-primary) !important;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero .gradient-orb-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,255,46,0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    filter: blur(80px);
    pointer-events: none;
}

.hero .gradient-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127,255,94,0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    filter: blur(100px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    animation: fadeUp 0.8s var(--ease-out) both;
}

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

.hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero h1 .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero-avatars { display: flex; }

.hero-avatars .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -10px;
    object-fit: cover;
}

.hero-avatars .avatar:first-child { margin-left: 0; }

.hero-stars {
    color: #facc15;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero-proof-text { font-size: 0.85rem; color: var(--text-secondary); }
.hero-proof-text strong { color: var(--text-primary); font-weight: 700; }

/* ── HERO AI VISUAL ────────────────────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.ai-visual-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 520px;
}

.ai-visual-svg {
    width: 100%;
    height: 100%;
}

.ai-node-core {
    fill: var(--accent);
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.ai-node-secondary {
    fill: rgba(200, 255, 46, 0.6);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.ai-node-tertiary {
    fill: rgba(200, 255, 46, 0.3);
}

.ai-line {
    stroke: rgba(200, 255, 46, 0.15);
    stroke-width: 1;
    stroke-dasharray: 4 4;
    animation: dash-flow 1.5s linear infinite;
}

.ai-line-active {
    stroke: rgba(200, 255, 46, 0.35);
    stroke-width: 1.5;
    stroke-dasharray: 8 4;
    animation: dash-flow 1s linear infinite;
}

.ai-ring {
    fill: none;
    stroke: rgba(200, 255, 46, 0.08);
    stroke-width: 1;
}

.ai-ring-glow {
    fill: none;
    stroke: rgba(200, 255, 46, 0.12);
    stroke-width: 1.5;
    stroke-dasharray: 20 10;
    animation: dash-flow 3s linear infinite reverse;
}

/* Floating labels */
.ai-label {
    position: absolute;
    padding: 8px 14px;
    background: rgba(22, 22, 31, 0.9);
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

.ai-label:nth-child(2) { animation-delay: -1s; }
.ai-label:nth-child(3) { animation-delay: -2s; }
.ai-label:nth-child(4) { animation-delay: -3s; }

.ai-label-1 { top: 8%; right: 5%; }
.ai-label-2 { bottom: 25%; left: 0%; }
.ai-label-3 { top: 35%; right: -5%; }
.ai-label-4 { bottom: 8%; right: 15%; }

.ai-label .label-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

/* ── LOGO BAR ──────────────────────────────────────────────── */
.logo-bar {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.logo-bar-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.logo-marquee {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

.logo-marquee-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-shrink: 0;
}

.client-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity 0.3s;
}

.client-logo:hover { opacity: 1; }

/* ── WHALE TESTIMONIAL ─────────────────────────────────────── */
.whale-testimonial { padding: 100px 0; }

.whale-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 64px);
    position: relative;
    overflow: hidden;
}

.whale-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 32px;
    font-family: var(--font-display);
    font-size: 12rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.06;
    line-height: 1;
}

.whale-quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.whale-author { display: flex; align-items: center; gap: 16px; }

.whale-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-accent);
}

.whale-name { font-weight: 700; font-size: 1rem; }
.whale-role { font-size: 0.85rem; color: var(--text-secondary); }

/* ── PROBLEMS / RELEVANCE ──────────────────────────────────── */
.relevance { padding: 100px 0; }

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
}

.problem-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.problem-card:hover::before { opacity: 1; }

.pain-cross {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--red-dim);
    border: 1px solid var(--red-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.pain-cross svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
    stroke-width: 2.5;
    stroke-linecap: round;
    fill: none;
}

.problem-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.problem-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── TESTIMONIALS STRIP ────────────────────────────────────── */
.testimonials-strip { padding: 60px 0; }

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testimonial-name { font-weight: 600; font-size: 0.88rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA BLOCK ─────────────────────────────────────────────── */
.cta-block {
    text-align: center;
    padding: 60px 0;
}

.cta-block .section-heading {
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-block .de-risk { text-align: center; }

/* ── VALUE ─────────────────────────────────────────────────── */
.value { padding: 100px 0; }

.value-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.value-item:last-child { border-bottom: none; }
.value-item:nth-child(even) .value-visual { order: -1; }

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.value-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.value-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-dim);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.value-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.value-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-2);
    pointer-events: none;
}

.value-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.value-visual-content { position: relative; z-index: 1; text-align: center; }

.value-visual-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.value-visual-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how-it-works { padding: 100px 0; position: relative; }

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(200,255,46,0.1) 100%);
    z-index: 0;
}

.step-card { position: relative; z-index: 1; text-align: center; }

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--accent);
    margin: 0 auto 24px;
    transition: all 0.4s var(--ease-out);
}

.step-card:hover .step-number {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow);
}

.step-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services { padding: 100px 0; }

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px 40px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.service-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,255,46,0.04);
    border: 1px solid rgba(200,255,46,0.1);
    border-radius: 50%;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-icon-wrap {
    background: rgba(200,255,46,0.08);
    border-color: rgba(200,255,46,0.2);
    box-shadow: 0 0 30px rgba(200,255,46,0.08);
}

.service-anim-icon {
    width: 60px;
    height: 60px;
}

.service-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.3;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
}

/* ── DIFFERENTIATION ───────────────────────────────────────── */
.differentiation { padding: 100px 0; }

/* ── COMPARISON GRID (3-column: side / hero / side) ─────── */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    align-items: center;
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    height: 100%;
}

.compare-card--side {
    opacity: 0.85;
}

.compare-card--hero {
    background: linear-gradient(165deg, rgba(200,255,46,0.06) 0%, var(--bg-card) 40%);
    border-color: rgba(200,255,46,0.25);
    padding: 44px 36px;
    position: relative;
    box-shadow: 0 0 60px rgba(200,255,46,0.06), 0 24px 48px rgba(0,0,0,0.3);
    z-index: 2;
    transform: scale(1.03);
}

.compare-hero-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: rgba(200,255,46,0.08);
    border: 2px solid rgba(200,255,46,0.25);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(200,255,46,0.1);
}

.compare-hero-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.compare-hero-logo span {
    color: var(--accent);
}

.compare-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.compare-card-title--hero {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 28px;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.compare-item:last-child {
    border-bottom: none;
}

.compare-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1px;
}

.compare-icon--pos {
    background: rgba(200,255,46,0.12);
    color: var(--accent);
    border: 1px solid rgba(200,255,46,0.2);
}

.compare-icon--neg {
    background: rgba(255,68,85,0.1);
    color: #ff4455;
    border: 1px solid rgba(255,68,85,0.15);
}

.compare-item--pos {
    color: var(--text-secondary);
}

.compare-item--neg {
    color: rgba(255,255,255,0.45);
}

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item { padding: 20px; }

.stat-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label { font-size: 0.88rem; color: var(--text-secondary); font-weight: 500; }

/* ── STANDORT ──────────────────────────────────────────────── */
.standort { padding: 100px 0; }

.standort-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.standort-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.standort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.standort-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.standort-overlay-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 22px;
}

.standort-wappen {
    flex-shrink: 0;
    width: 42px;
    height: 50px;
}

.standort-wappen svg {
    width: 100%;
    height: 100%;
}

.standort-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.standort-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

@media (max-width: 768px) {
    .standort-image { aspect-ratio: 4 / 3; }
    .standort-overlay { bottom: 16px; left: 16px; right: 16px; }
    .standort-overlay-inner { padding: 12px 16px; gap: 12px; }
    .standort-wappen { width: 34px; height: 42px; }
    .standort-label { font-size: 0.85rem; }
    .standort-address { font-size: 0.78rem; }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { padding: 100px 0; }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--border-accent); }

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: none;
    padding: 24px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.faq-question .icon {
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── FINAL CTA ─────────────────────────────────────────────── */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta .gradient-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,255,46,0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    pointer-events: none;
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 20px;
}

.final-cta h2 .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand { max-width: 280px; }

.footer-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 24px 0;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

.cookie-banner.visible { transform: translateY(0); }

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-out);
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--bg-primary);
}

.cookie-btn-accept:hover { box-shadow: 0 4px 20px var(--accent-glow); }

.cookie-btn-settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.cookie-btn-settings:hover { border-color: var(--text-secondary); color: var(--text-primary); }

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent;
}

.cookie-btn-reject:hover { color: var(--text-secondary); }

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-settings-modal.open { display: flex; }

.cookie-settings-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.cookie-settings-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 560px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
}

.cookie-settings-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.cookie-settings-card > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cookie-category {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cookie-category-header h4 {
    font-weight: 700;
    font-size: 0.92rem;
}

.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s var(--ease-out);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--accent-dim);
    border-color: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::after {
    background: var(--accent);
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-settings-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    justify-content: flex-end;
}

/* ═══════════════════════════════════════════════════════════════
   FUNNEL MODAL
   ═══════════════════════════════════════════════════════════════ */
.funnel-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.funnel-overlay.open { display: flex; }

.funnel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s var(--ease-out);
}

.funnel-card {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.4s var(--ease-out);
}

.funnel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.funnel-close:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Progress bar */
.funnel-progress {
    padding: 24px 40px 0;
}

.funnel-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
}

.funnel-progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px;
    transition: width 0.5s var(--ease-out);
}

.funnel-progress-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Funnel body */
.funnel-body {
    padding: 32px 40px 40px;
}

.funnel-step {
    display: none;
}

.funnel-step.active {
    display: block;
    animation: fadeUp 0.4s var(--ease-out);
}

.funnel-step h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.funnel-step > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Option cards */
.funnel-options {
    display: grid;
    gap: 12px;
}

.funnel-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.funnel-option:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
}

.funnel-option.selected {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.funnel-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.funnel-option-text h4 {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.funnel-option-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Funnel form */
.funnel-form { display: grid; gap: 16px; }

.funnel-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.funnel-field-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.phone-input-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color 0.3s;
}

.phone-input-wrap:focus-within { border-color: var(--accent); }

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: rgba(200,255,46,0.06);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    border-right: 1px solid var(--border);
    user-select: none;
    flex-shrink: 0;
}

.phone-input-wrap input {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.funnel-field input,
.funnel-field textarea,
.funnel-field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
}

.funnel-field input:focus,
.funnel-field textarea:focus,
.funnel-field select:focus {
    border-color: var(--accent);
}

.funnel-field input::placeholder,
.funnel-field textarea::placeholder {
    color: var(--text-muted);
}

.funnel-field textarea { resize: vertical; min-height: 80px; }

.funnel-field select option { background: var(--bg-secondary); }

/* Funnel navigation */
.funnel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    gap: 12px;
}

.funnel-btn-back {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 60px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s;
}

.funnel-btn-back:hover { border-color: var(--text-secondary); color: var(--text-primary); }

.funnel-btn-next {
    padding: 14px 32px;
    background: var(--accent);
    border: none;
    border-radius: 60px;
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    margin-left: auto;
}

.funnel-btn-next:hover { box-shadow: 0 6px 30px var(--accent-glow); transform: translateY(-1px); }

.funnel-btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Funnel success */
.funnel-success {
    text-align: center;
    padding: 40px 0;
}

.funnel-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s var(--ease-spring);
}

.funnel-success h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.funnel-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Checkbox for DSGVO consent */
.funnel-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.funnel-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.funnel-consent label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.funnel-consent a {
    color: var(--accent);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   FULL-PAGE FUNNEL (KI-Audit)
   ═══════════════════════════════════════════════════════════════ */
.page-funnel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    position: relative;
}

.page-funnel .gradient-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,255,46,0.08) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.page-funnel .gradient-orb:first-child { top: -100px; right: -100px; }
.page-funnel .gradient-orb:nth-child(2) { bottom: -100px; left: -100px; }

.page-funnel-card {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 680px;
    padding: 48px;
    animation: scaleIn 0.6s var(--ease-out);
}

.page-funnel-header {
    text-align: center;
    margin-bottom: 8px;
}

.page-funnel-header h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.page-funnel-header h1 .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-funnel-header p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG STYLES
   ═══════════════════════════════════════════════════════════════ */
.blog-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero .gradient-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,255,46,0.08) 0%, transparent 70%);
    top: -200px;
    right: 50%;
    transform: translateX(50%);
    filter: blur(100px);
    pointer-events: none;
}

.blog-hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 16px;
}

.blog-hero h1 .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    padding: 0 0 100px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: var(--bg-card-hover);
    position: relative;
    overflow: hidden;
}

.blog-card-image .blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-card-image .blog-img-pattern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 50%),
                repeating-linear-gradient(45deg, rgba(200,255,46,0.03) 0px, rgba(200,255,46,0.03) 1px, transparent 1px, transparent 12px);
}

.blog-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s;
}

.blog-card:hover .blog-card-link { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ═══════════════════════════════════════════════════════════════ */
.legal-page {
    padding: 140px 0 100px;
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.legal-content .legal-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type { border-top: none; padding-top: 0; }

.legal-content h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 14px;
    padding-left: 0;
}

.legal-content ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT / FOUNDERS
   ═══════════════════════════════════════════════════════════════ */
.about { padding: 100px 0; }

.founders-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.founders-text .section-label { margin-bottom: 20px; }

.founders-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 28px;
}

.founders-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.founders-desc:last-child { margin-bottom: 0; }

.founders-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.founders-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════════════════════════ */
.case-studies { padding: 100px 0; }

.case-studies-grid {
    display: grid;
    gap: 32px;
    margin-top: 64px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    transition: all 0.4s var(--ease-out);
}

.case-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.case-card-img {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.case-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.case-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.case-card-img-1::after { background: linear-gradient(135deg, rgba(200,255,46,0.15) 0%, rgba(10,10,15,0.4) 100%); }
.case-card-img-2::after { background: linear-gradient(135deg, rgba(94,232,255,0.15) 0%, rgba(10,10,15,0.4) 100%); }
.case-card-img-3::after { background: linear-gradient(135deg, rgba(255,94,170,0.15) 0%, rgba(10,10,15,0.4) 100%); }

.case-card-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-company {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.case-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.case-block {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.case-block:last-of-type { margin-bottom: 0; }

.case-block-before {
    background: var(--red-dim);
    border: 1px solid var(--red-border);
}

.case-block-after {
    background: var(--green-dim);
    border: 1px solid var(--green-border);
}

.case-block-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.case-block-before .case-block-label { color: var(--red); }
.case-block-after .case-block-label { color: var(--green); }

.case-block p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.case-block-after p { color: var(--text-primary); }

.case-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 14px;
    background: var(--green-dim);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
}

.case-result {
    margin-top: 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(200,255,46,0.06), rgba(200,255,46,0.02));
    border: 1px solid rgba(200,255,46,0.15);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
}

.case-result-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--accent);
}

.case-result-divider {
    color: rgba(255,255,255,0.2);
    margin: 0 4px;
}

/* ═══════════════════════════════════════════════════════════════
   FUNNEL LOADING SCREEN
   ═══════════════════════════════════════════════════════════════ */
.funnel-loading {
    text-align: center;
    padding: 32px 0;
}

.funnel-loading-spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    border-top-color: var(--accent);
    margin: 0 auto 28px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.funnel-loading h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 28px;
}

.loading-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
}

.loading-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.4s;
}

.loading-check.done { color: var(--text-primary); }

.loading-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-spring);
}

.loading-check.done .loading-check-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 700;
}

.loading-check.active .loading-check-icon {
    border-color: var(--accent);
    animation: spin 1s linear infinite;
    border-top-color: transparent;
}

/* Auto-advance funnel: hide nav on option steps */
.funnel-step-auto .funnel-nav { display: none; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .value-item { grid-template-columns: 1fr; gap: 32px; }
    .value-item:nth-child(even) .value-visual { order: 0; }
    .steps-wrapper { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .steps-wrapper::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .founders-split { grid-template-columns: 1fr; gap: 40px; }
    .case-card { grid-template-columns: 1fr; }
    .case-card-img { min-height: 160px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        gap: 16px;
    }
    .problems-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; gap: 16px; }
    .compare-card--hero { transform: scale(1); order: -1; }
    .founders-split { grid-template-columns: 1fr; gap: 40px; }
    .case-card { grid-template-columns: 1fr; }
    .case-card-img { min-height: 120px; }
    .steps-wrapper { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .testimonials-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .funnel-body { padding: 24px 24px 32px; }
    .funnel-progress { padding: 20px 24px 0; }
    .page-funnel-card { padding: 32px 24px; }
    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; }
}
