/* ============================================================
   apple-style.css — Premium scroll-driven design layer
   Loaded AFTER performance.css. Restyles the v2 shell.
   Modals + cookie banner + JS-driven UI keep their original look.
   ============================================================ */

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; width: 100%; }

:root {
    --v2-bg:        #000000;
    --v2-bg-soft:   #0a0a0a;
    --v2-bg-light:  #f5f5f7;
    --v2-text:      #f5f5f7;
    --v2-text-soft: #a1a1a6;
    --v2-text-dark: #1d1d1f;
    --v2-text-muted:#6e6e73;
    --v2-accent:    #9333ea;
    --v2-accent-2:  #4cd6ff;
    --v2-line:      rgba(255,255,255,0.08);
    --v2-line-dark: rgba(0,0,0,0.08);
    --v2-radius:    22px;
}

/* Mobile smoothness tweaks */
@media (max-width: 760px) {
    body { -webkit-overflow-scrolling: touch; }
    /* Disable expensive hero orb animations on mobile — save GPU */
    .hero-bg-orb { animation: none !important; }
    /* Reduce blur radius further on mobile for better scroll performance */
    .v2-header { backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px); }
    /* Smoother scroll-snap feel on touch */
    .v2-section { contain: layout paint; }
}

/* ----------------------------------------------------------
   Base reset for v2 page only
   ---------------------------------------------------------- */
body.v2 {
    background: var(--v2-bg) !important;
    color: var(--v2-text) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.v2 #particle-canvas { display: none !important; }
.light body.v2 { background: var(--v2-bg-light) !important; color: var(--v2-text-dark) !important; }

/* ----------------------------------------------------------
   Scroll progress line (top of viewport)
   ---------------------------------------------------------- */
.v2-scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    z-index: 60;
    background: linear-gradient(90deg, var(--v2-accent) 0%, var(--v2-accent-2) 100%);
    box-shadow: 0 0 14px rgba(147, 51, 234, 0.6);
    transition: width 0.08s linear;
    pointer-events: none;
}

/* ----------------------------------------------------------
   Header — minimal, becomes solid on scroll
   ---------------------------------------------------------- */
.v2-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 14px 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}
.v2-header.is-scrolled {
    background: rgba(0,0,0,0.85);
    border-bottom-color: var(--v2-line);
}
.light .v2-header {
    background: rgba(245,245,247,0.7);
}
.light .v2-header.is-scrolled {
    background: rgba(245,245,247,0.92);
    border-bottom-color: var(--v2-line-dark);
}
.v2-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.v2-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--v2-text);
    text-decoration: none;
    line-height: 1;
}
.v2-logo span.accent { color: var(--v2-accent); }
.light .v2-logo { color: var(--v2-text-dark); }
.v2-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
    line-height: 1;
}
.v2-brand-slogan {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--v2-text-soft);
    line-height: 1;
    white-space: nowrap;
}
.light .v2-brand-slogan {
    color: var(--v2-text-muted);
}
@media (max-width: 760px) {
    .v2-brand-slogan { font-size: 10px; }
}

.v2-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.v2-nav button {
    background: none;
    border: 0;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--v2-text-soft);
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.v2-nav button:hover { color: var(--v2-text); }
.light .v2-nav button { color: var(--v2-text-muted); }
.light .v2-nav button:hover { color: var(--v2-text-dark); }
.v2-nav-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px !important;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #4ade80 !important;
}
.v2-nav-live:hover { border-color: rgba(74,222,128,0.8); }
.v2-nav-live::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #22c55e;
}

.v2-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--v2-text);
    color: var(--v2-bg);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}
.v2-cta:hover { transform: translateY(-1px); opacity: 0.9; }
.light .v2-cta { background: var(--v2-text-dark); color: #fff; }

.v2-burger {
    display: none;
    background: none;
    border: 0;
    color: var(--v2-text);
    cursor: pointer;
    padding: 6px;
}
.light .v2-burger { color: var(--v2-text-dark); }
@media (max-width: 860px) {
    .v2-nav { display: none; }
    .v2-burger { display: flex; }
}

/* ----------------------------------------------------------
   Section base
   ---------------------------------------------------------- */
.v2-section {
    position: relative;
    padding: 120px 0;
}
.v2-section.dark   { background: var(--v2-bg); color: var(--v2-text); }
.v2-section.darker { background: var(--v2-bg-soft); color: var(--v2-text); }
.v2-section.light  { background: var(--v2-bg-light); color: var(--v2-text-dark); }
.v2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
}
.v2-narrow {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ----------------------------------------------------------
   Hero — Apple-style towering headline
   ---------------------------------------------------------- */
.v2-hero {
    min-height: 100vh;
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v2-hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--v2-accent);
    margin-bottom: 24px;
}
.v2-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(46px, 8.5vw, 112px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 0 auto 28px;
    max-width: 14ch;
    color: var(--v2-text);
}
.light .v2-hero h1 { color: var(--v2-text-dark); }
.v2-hero h1 .grad {
    background: linear-gradient(120deg, var(--v2-accent) 0%, #d2bbff 50%, var(--v2-accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.v2-hero p {
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.45;
    color: var(--v2-text-soft);
    max-width: 36rem;
    margin: 0 auto 40px;
    font-weight: 400;
}
.light .v2-hero p { color: var(--v2-text-muted); }
.v2-hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.v2-link {
    color: var(--v2-accent-2);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 12px 0;
}
.v2-link:hover { opacity: 0.8; text-decoration: underline; text-underline-offset: 4px; }
.v2-link::after { content: '→'; transition: transform 0.2s; }
.v2-link:hover::after { transform: translateX(3px); }

.v2-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--v2-text);
    color: var(--v2-bg);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    will-change: transform;
}
.v2-pill:hover { transform: translateY(-2px); opacity: 0.92; }
.v2-pill.outline {
    background: transparent;
    color: var(--v2-text);
    border: 1px solid rgba(255,255,255,0.3);
}
.v2-pill.outline:hover { background: rgba(255,255,255,0.06); }
.light .v2-pill { background: var(--v2-text-dark); color: #fff; }
.light .v2-pill.outline {
    color: var(--v2-text-dark);
    border-color: rgba(0,0,0,0.25);
}
.light .v2-pill.outline:hover { background: rgba(0,0,0,0.04); }

/* Animated hero background — starfield + drifting glow orbs */
.v2-hero-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
#hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    pointer-events: none;
}
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    transform: translateZ(0);
}
.hero-bg-orb-1 {
    width: 620px; height: 620px;
    top: 15%; left: 5%;
    background: radial-gradient(circle, rgba(147,51,234,0.55) 0%, transparent 65%);
    animation: hero-orb-drift-1 32s ease-in-out infinite;
}
.hero-bg-orb-2 {
    width: 560px; height: 560px;
    top: 25%; right: 5%;
    background: radial-gradient(circle, rgba(124,58,237,0.45) 0%, transparent 65%);
    animation: hero-orb-drift-2 38s ease-in-out infinite;
}
.hero-bg-orb-3 {
    width: 500px; height: 500px;
    bottom: 10%; left: 35%;
    background: radial-gradient(circle, rgba(192,132,252,0.38) 0%, transparent 65%);
    animation: hero-orb-drift-3 44s ease-in-out infinite;
}
.light .hero-bg-orb-1 { background: radial-gradient(circle, rgba(147,51,234,0.25) 0%, transparent 65%); }
.light .hero-bg-orb-2 { background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%); }
.light .hero-bg-orb-3 { background: radial-gradient(circle, rgba(192,132,252,0.15) 0%, transparent 65%); }
@keyframes hero-orb-drift-1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(90px,70px) scale(1.08); }
    66%     { transform: translate(-60px,110px) scale(0.95); }
}
@keyframes hero-orb-drift-2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(-130px,-50px) scale(1.12); }
}
@keyframes hero-orb-drift-3 {
    0%,100% { transform: translate(0,0) scale(1); }
    40%     { transform: translate(100px,-80px) scale(1.05); }
    70%     { transform: translate(-70px,40px) scale(0.92); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg-orb { animation: none; }
}
@media (max-width: 760px) {
    .hero-bg-orb { filter: blur(40px); animation: none; }
    .hero-bg-orb-1 { width: 300px; height: 300px; }
    .hero-bg-orb-2 { width: 260px; height: 260px; }
    .hero-bg-orb-3 { width: 240px; height: 240px; }
    #hero-stars { display: none !important; }
    .v2-hero-glow { transform: none !important; }
}
.v2-hero > *:not(.v2-hero-glow) { position: relative; z-index: 1; }
.v2-hero-glow { position: absolute; inset: 0; z-index: 0; }

/* Hero scroll indicator — pushed to the very bottom via flex */
.v2-scroll-hint {
    margin-top: auto;
    padding-top: 60px;
    text-align: center;
    color: var(--v2-text-soft);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
    align-self: center;
    animation: hint-bounce 2.4s ease-in-out infinite;
}
@media (max-width: 760px) {
    .v2-hero { padding: 110px 0 50px; }
    .v2-scroll-hint { padding-top: 40px; }
}
@keyframes hint-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50%      { transform: translateY(6px); opacity: 1; }
}

/* ----------------------------------------------------------
   Generic section heading
   ---------------------------------------------------------- */
.v2-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--v2-accent);
    margin-bottom: 14px;
}
.v2-h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 5.5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
    max-width: 22ch;
}
.v2-lead {
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.5;
    color: var(--v2-text-soft);
    max-width: 42rem;
    margin: 0;
}
.light .v2-lead { color: var(--v2-text-muted); }

/* ----------------------------------------------------------
   Leistungen — 4 service cards + featured SLA + Vorteile
   ---------------------------------------------------------- */
.v2-leistung-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 80px;
}
.v2-leistung-card {
    position: relative;
    border-radius: var(--v2-radius);
    padding: 32px 28px;
    background: #111114;
    border: 1px solid var(--v2-line);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.4s, border-color 0.4s, background 0.4s;
}
.v2-leistung-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147,51,234,0.35);
    background: #15151a;
}
.light .v2-leistung-card {
    background: #fff;
    border-color: var(--v2-line-dark);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.light .v2-leistung-card:hover {
    border-color: rgba(147,51,234,0.4);
    box-shadow: 0 14px 32px -18px rgba(147,51,234,0.3);
}
.v2-leistung-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(147,51,234,0.12);
    color: var(--v2-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-leistung-icon .material-symbols-outlined { font-size: 26px; }
.v2-leistung-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}
.v2-leistung-card p {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--v2-text-soft);
    margin: 0;
}
.light .v2-leistung-card p { color: var(--v2-text-muted); }

/* Featured (SLA) card */
.v2-leistung-card.featured {
    background: linear-gradient(160deg, #1a0d2e 0%, #0c0c11 100%);
    border-color: rgba(147,51,234,0.5);
    box-shadow: 0 18px 50px -25px rgba(147,51,234,0.55);
}
.light .v2-leistung-card.featured {
    background: linear-gradient(160deg, #f6efff 0%, #ffffff 100%);
    border-color: rgba(147,51,234,0.4);
    box-shadow: 0 18px 50px -30px rgba(147,51,234,0.3);
}
.v2-leistung-card.featured:hover {
    border-color: rgba(147,51,234,0.8);
}
.v2-leistung-icon.featured {
    background: linear-gradient(135deg, var(--v2-accent), #7c3aed);
    color: #fff;
}
.v2-leistung-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, var(--v2-accent), #7c3aed);
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 8px 20px -8px rgba(147,51,234,0.7);
}

@media (max-width: 980px) {
    .v2-leistung-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .v2-leistung-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* Vorteile block */
.v2-vorteile {
    border-top: 1px solid var(--v2-line);
    padding-top: 60px;
}
.light .v2-vorteile { border-top-color: var(--v2-line-dark); }
.v2-vorteile-header {
    text-align: center;
    margin-bottom: 44px;
}
.v2-vorteile-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 8px 0 0;
}
.v2-vorteile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.v2-vorteil {
    text-align: center;
    padding: 0 8px;
}
.v2-vorteil > .material-symbols-outlined {
    display: inline-flex;
    width: 56px; height: 56px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(76,214,255,0.12);
    color: var(--v2-accent-2);
    margin-bottom: 16px;
}
.v2-vorteil h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}
.v2-vorteil p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--v2-text-soft);
    margin: 0;
}
.light .v2-vorteil p { color: var(--v2-text-muted); }

@media (max-width: 980px) {
    .v2-vorteile-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 560px) {
    .v2-vorteile-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   Ampel — single centered card morphing through 3 states
   Section is tall (~3 viewports); card stays pinned in center.
   ---------------------------------------------------------- */
.v2-ampel { padding-bottom: 60px; }
.ampel-scroll {
    position: relative;
    height: 280vh;       /* total scroll length = 3 states */
}
.ampel-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
}
.ampel-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: 28px;
    background: linear-gradient(160deg, #16161a 0%, #0e0e10 100%);
    border: 1px solid var(--v2-line);
    padding: 48px 44px 64px;
    overflow: hidden;
    transition: border-color 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 30px 80px -40px rgba(0,0,0,0.7);
}
.light .ampel-card {
    background: linear-gradient(160deg, #ffffff 0%, #fafafa 100%);
    border-color: var(--v2-line-dark);
    box-shadow: 0 30px 80px -50px rgba(0,0,0,0.18);
}
/* Glow ring behind the card colored by state */
.ampel-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--stage-color, transparent);
    opacity: 0.4;
    transition: background 0.6s, opacity 0.6s;
    z-index: 0;
    pointer-events: none;
}
.ampel-card[data-state="red"]    { --stage-color: radial-gradient(circle at 50% 0%, rgba(239,68,68,0.35), transparent 60%); border-color: rgba(239,68,68,0.35); }
.ampel-card[data-state="yellow"] { --stage-color: radial-gradient(circle at 50% 0%, rgba(245,158,11,0.35), transparent 60%); border-color: rgba(245,158,11,0.35); }
.ampel-card[data-state="green"]  { --stage-color: radial-gradient(circle at 50% 0%, rgba(34,197,94,0.35), transparent 60%); border-color: rgba(34,197,94,0.35); }

/* Icon sits at the top, centered */
.ampel-card-icon {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--v2-line);
    transition: background 0.6s, border-color 0.6s;
}
.light .ampel-card-icon { background: #fff; border-color: var(--v2-line-dark); }
.ampel-card-icon .material-symbols-outlined {
    font-size: 52px;
    transition: color 0.6s;
}
.ampel-card[data-state="red"]    .ampel-card-icon { border-color: rgba(239,68,68,0.4); }
.ampel-card[data-state="yellow"] .ampel-card-icon { border-color: rgba(245,158,11,0.4); }
.ampel-card[data-state="green"]  .ampel-card-icon { border-color: rgba(34,197,94,0.4); }
.ampel-card[data-state="red"]    .ampel-card-icon .material-symbols-outlined { color: #f87171; }
.ampel-card[data-state="yellow"] .ampel-card-icon .material-symbols-outlined { color: #fbbf24; }
.ampel-card[data-state="green"]  .ampel-card-icon .material-symbols-outlined { color: #4ade80; }

/* Content stack: only one visible at a time, smooth crossfade */
.ampel-card-stack {
    position: relative;
    z-index: 1;
    text-align: center;
    min-height: 280px;
}
.ampel-card-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.ampel-card-content.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ampel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.ampel-tag::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}
.ampel-card-content.red    .ampel-tag { background: rgba(239,68,68,0.15);  color: #f87171; }
.ampel-card-content.yellow .ampel-tag { background: rgba(245,158,11,0.15); color: #fbbf24; }
.ampel-card-content.green  .ampel-tag { background: rgba(34,197,94,0.15);  color: #4ade80; }

.ampel-card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 14px;
}
.ampel-card-content p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--v2-text-soft);
    margin: 0 auto 22px;
    max-width: 38ch;
}
.light .ampel-card-content p { color: var(--v2-text-muted); }
.ampel-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.ampel-card-content li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--v2-text-soft);
}
.light .ampel-card-content li { color: var(--v2-text-muted); }
.ampel-card-content li .material-symbols-outlined { font-size: 16px; }
.ampel-card-content.red    li .material-symbols-outlined { color: #f87171; }
.ampel-card-content.yellow li .material-symbols-outlined { color: #fbbf24; }
.ampel-card-content.green  li .material-symbols-outlined { color: #4ade80; }

/* Progress dots at bottom of card */
.ampel-progress {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.ampel-progress span {
    width: 24px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.18);
    transition: background 0.4s;
}
.light .ampel-progress span { background: rgba(0,0,0,0.15); }
.ampel-progress span.is-active { background: var(--v2-text); }
.light .ampel-progress span.is-active { background: var(--v2-text-dark); }

/* Mobile: drop sticky; show all 3 stacked — tap to glow in the state color */
@media (max-width: 760px) {
    .ampel-scroll { height: auto; }
    .ampel-pin {
        position: static;
        height: auto;
        padding: 20px;
    }
    .ampel-card { padding: 24px 18px; }
    .ampel-card > .ampel-card-icon { display: none; }
    .ampel-card::before { display: none; }
    .ampel-card[data-state="red"],
    .ampel-card[data-state="yellow"],
    .ampel-card[data-state="green"] { border-color: var(--v2-line); }
    .light .ampel-card[data-state="red"],
    .light .ampel-card[data-state="yellow"],
    .light .ampel-card[data-state="green"] { border-color: var(--v2-line-dark); }
    .ampel-card-stack {
        position: static;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .ampel-card-content {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 78px 20px 24px;
        border-radius: 18px;
        border: 1px solid var(--v2-line);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease, transform 0.2s ease;
    }
    .light .ampel-card-content { border-color: var(--v2-line-dark); }
    .ampel-card-content.red    { border-color: rgba(239,68,68,0.35); background: rgba(239,68,68,0.05); }
    .ampel-card-content.yellow { border-color: rgba(245,158,11,0.35); background: rgba(245,158,11,0.05); }
    .ampel-card-content.green  { border-color: rgba(34,197,94,0.35);  background: rgba(34,197,94,0.05); }

    /* Tap-to-glow: strong colored halo */
    .ampel-card-content.is-lit { transform: scale(1.01); }
    .ampel-card-content.red.is-lit {
        border-color: rgba(239,68,68,0.9);
        background: rgba(239,68,68,0.14);
        box-shadow: 0 0 0 1px rgba(239,68,68,0.55), 0 0 34px rgba(239,68,68,0.55), 0 14px 46px -10px rgba(239,68,68,0.45);
    }
    .ampel-card-content.yellow.is-lit {
        border-color: rgba(245,158,11,0.9);
        background: rgba(245,158,11,0.14);
        box-shadow: 0 0 0 1px rgba(245,158,11,0.55), 0 0 34px rgba(245,158,11,0.55), 0 14px 46px -10px rgba(245,158,11,0.45);
    }
    .ampel-card-content.green.is-lit {
        border-color: rgba(34,197,94,0.9);
        background: rgba(34,197,94,0.14);
        box-shadow: 0 0 0 1px rgba(34,197,94,0.55), 0 0 34px rgba(34,197,94,0.55), 0 14px 46px -10px rgba(34,197,94,0.45);
    }
    .ampel-card-content.is-lit::before {
        box-shadow: 0 0 18px currentColor;
    }

    /* Per-state icon at the top of each mobile card */
    .ampel-card-content::before {
        font-family: 'Material Symbols Outlined';
        font-weight: normal;
        font-size: 26px;
        line-height: 1;
        position: absolute;
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--v2-line);
        transition: box-shadow 0.4s ease;
    }
    .light .ampel-card-content::before { background: #fff; border-color: var(--v2-line-dark); }
    .ampel-card-content.red::before    { content: 'report_problem'; color: #f87171; border-color: rgba(239,68,68,0.4); }
    .ampel-card-content.yellow::before { content: 'trending_up';    color: #fbbf24; border-color: rgba(245,158,11,0.4); }
    .ampel-card-content.green::before  { content: 'verified';       color: #4ade80; border-color: rgba(34,197,94,0.4); }

    .ampel-progress { display: none; }
}

/* ----------------------------------------------------------
   Industries — large fading image cards
   ---------------------------------------------------------- */
.v2-industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.v2-industry-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    background: #111;
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
    will-change: transform;
}
.v2-industry-card:hover { transform: translateY(-6px); }
.v2-industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1), filter 0.5s;
    filter: brightness(0.78) saturate(1.05);
}
.v2-industry-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.9) saturate(1.1);
}
.v2-industry-card-body {
    position: absolute;
    inset: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
    color: #fff;
}
.v2-industry-card-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.7);
}
.v2-industry-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}
.v2-industry-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}
.v2-industry-card:hover .v2-industry-card-cta {
    opacity: 1;
    transform: translateX(3px);
}
@media (max-width: 900px) {
    .v2-industries { grid-template-columns: 1fr; }
    .v2-industry-card { aspect-ratio: 16 / 11; }
}

/* ----------------------------------------------------------
   Services — pinned heading + scrolling cards
   ---------------------------------------------------------- */
.v2-services {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.v2-services-pinned {
    position: sticky;
    top: 16vh;
}
.v2-services-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.v2-service-card {
    --mouse-x: 50%;
    --mouse-y: 50%;
    border-radius: var(--v2-radius);
    padding: 36px;
    background: #111114;
    border: 1px solid var(--v2-line);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.5s ease,
                background 0.5s ease,
                box-shadow 0.55s ease;
    isolation: isolate;
}
/* Spotlight glow that follows the cursor */
.v2-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        420px circle at var(--mouse-x) var(--mouse-y),
        rgba(147, 51, 234, 0.28),
        rgba(147, 51, 234, 0.08) 25%,
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
/* Thin gradient inner line that reveals on hover */
.v2-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(147, 51, 234, 0) 0%,
        rgba(147, 51, 234, 0.55) 40%,
        rgba(192, 132, 252, 0.4) 60%,
        rgba(147, 51, 234, 0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}
.v2-service-card > * { position: relative; z-index: 1; }
.v2-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.3);
    background: #15151b;
    box-shadow:
        0 30px 60px -28px rgba(147, 51, 234, 0.45),
        0 12px 24px -16px rgba(0, 0, 0, 0.55);
}
.v2-service-card:hover::before { opacity: 1; }
.v2-service-card:hover::after { opacity: 1; }

.light .v2-service-card {
    background: #fff;
    border-color: var(--v2-line-dark);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.light .v2-service-card::before {
    background: radial-gradient(
        420px circle at var(--mouse-x) var(--mouse-y),
        rgba(147, 51, 234, 0.14),
        rgba(147, 51, 234, 0.04) 25%,
        transparent 55%
    );
}
.light .v2-service-card:hover {
    border-color: rgba(147, 51, 234, 0.25);
    background: #fff;
    box-shadow:
        0 28px 56px -24px rgba(147, 51, 234, 0.35),
        0 10px 20px -16px rgba(0, 0, 0, 0.1);
}

.v2-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147,51,234,0.12);
    color: var(--v2-accent);
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
                background 0.5s ease,
                box-shadow 0.5s ease;
}
.v2-service-card:hover .v2-service-icon {
    transform: scale(1.08) rotate(-4deg);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.28), rgba(124, 58, 237, 0.16));
    box-shadow: 0 10px 24px -10px rgba(147, 51, 234, 0.55);
}
.v2-service-icon .material-symbols-outlined {
    font-size: 28px;
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.v2-service-card:hover .v2-service-icon .material-symbols-outlined {
    transform: scale(1.1);
}
.v2-service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}
.v2-service-card p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--v2-text-soft);
    margin: 0;
}
.light .v2-service-card p { color: var(--v2-text-muted); }
.v2-service-card.feature {
    background: linear-gradient(135deg, #1a1124 0%, #0c0c11 100%);
    border-color: rgba(147,51,234,0.35);
}
.light .v2-service-card.feature {
    background: linear-gradient(135deg, #f6f0ff 0%, #ffffff 100%);
    border-color: rgba(147,51,234,0.22);
}
@media (max-width: 900px) {
    .v2-services { grid-template-columns: 1fr; gap: 40px; }
    .v2-services-pinned { position: static; }
}

/* ----------------------------------------------------------
   Stats line — Apple "By the numbers"
   ---------------------------------------------------------- */
.v2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.v2-stat .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, var(--v2-accent), var(--v2-accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.v2-stat .label {
    margin-top: 8px;
    font-size: 14px;
    color: var(--v2-text-soft);
}
.light .v2-stat .label { color: var(--v2-text-muted); }
@media (max-width: 700px) {
    .v2-stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ----------------------------------------------------------
   Contact section restyle
   ---------------------------------------------------------- */
.v2-contact {
    padding: 120px 0 100px;
    background: var(--v2-bg-soft);
}
.light .v2-contact { background: #ffffff; }
.v2-contact .v2-h2 { text-align: center; margin: 0 auto 18px; }
.v2-contact .v2-lead { text-align: center; margin: 0 auto 52px; }

/* =========================================================
   Contact form — clean rewrite (overrides performance.css)
   ========================================================= */
body.v2 .contact-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
body.v2 .contact-grid > * { min-width: 0; }
body.v2 .contact-sidebar { height: 100%; }
body.v2 .contact-process { flex: 1; display: flex; flex-direction: column; }

/* --- Form card --- */
body.v2 .contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 36px !important;
    background: #111114 !important;
    border: 1px solid rgba(147, 51, 234, 0.18) !important;
    border-radius: 22px !important;
    box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.7) !important;
}

body.v2 .form-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 16px !important;
}
body.v2 .form-row > * { min-width: 0; }

body.v2 .form-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

body.v2 .form-label {
    font-size: 12px;
    font-weight: 600;
    color: #c9c5d6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
body.v2 .form-required { color: #c084fc; margin-left: 2px; }
body.v2 .form-optional { color: #8a8598; font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 4px; }

/* --- Inputs --- */
body.v2 .contact-form input,
body.v2 .contact-form select,
body.v2 .contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    font: inherit;
    font-size: 15px;
    color: #f1efff;
    background: #0a0a0f;
    border: 1px solid rgba(147, 51, 234, 0.22);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}
body.v2 .contact-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.5;
    font-family: inherit;
}
body.v2 .contact-form input:focus,
body.v2 .contact-form select:focus,
body.v2 .contact-form textarea:focus {
    border-color: rgba(147, 51, 234, 0.6);
    background: #0c0c14;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.18);
}
body.v2 .contact-form input::placeholder,
body.v2 .contact-form textarea::placeholder {
    color: #6d6882;
}
body.v2 .contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c084fc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* --- Form footer --- */
body.v2 .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}
body.v2 .form-privacy {
    font-size: 13px;
    color: #8a8598;
    margin: 0;
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
}
body.v2 .form-privacy .cookie-link {
    color: #c084fc;
    text-decoration: underline;
    text-underline-offset: 2px;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
}
body.v2 .form-privacy .cookie-link:hover { color: #d8b4fe; }

body.v2 .form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px -10px rgba(147, 51, 234, 0.7);
    white-space: nowrap;
}
body.v2 .form-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px -10px rgba(147, 51, 234, 0.85);
}
body.v2 .form-submit-btn:active { transform: translateY(0); }
body.v2 .form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
body.v2 .form-submit-btn .material-symbols-outlined { font-size: 18px; }

body.v2 .form-status {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 4px;
    display: none;
}
body.v2 .form-status:not(:empty) { display: block; }

/* --- Sidebar --- */
body.v2 .contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
body.v2 .contact-direct,
body.v2 .contact-process {
    padding: 24px !important;
    background: #111114 !important;
    border: 1px solid rgba(147, 51, 234, 0.18) !important;
    border-radius: 22px !important;
}
body.v2 .contact-direct-label,
body.v2 .contact-process-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c084fc;
    margin-bottom: 16px;
}
body.v2 .contact-direct {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
}
body.v2 .contact-direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(147, 51, 234, 0.06);
    border: 1px solid rgba(147, 51, 234, 0.15);
    text-decoration: none;
    color: #f1efff;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
body.v2 .contact-direct-item:hover {
    background: rgba(147, 51, 234, 0.12);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateX(2px);
}
body.v2 .contact-direct-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}
body.v2 .contact-direct-icon .material-symbols-outlined { font-size: 18px; }
body.v2 .contact-direct-icon-primary { background: linear-gradient(135deg, #9333ea, #7c3aed); }
body.v2 .contact-direct-icon-tertiary { background: linear-gradient(135deg, #06b6d4, #0891b2); }
body.v2 .contact-direct-value { font-size: 14px; font-weight: 600; color: #f1efff; }

/* Process timeline */
body.v2 .contact-process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
body.v2 .contact-process-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}
body.v2 .contact-process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 34px;
    bottom: -18px;
    width: 2px;
    background: linear-gradient(180deg, rgba(147,51,234,0.4), rgba(147,51,234,0.08));
}
body.v2 .contact-process-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px -4px rgba(147,51,234,0.5);
}
body.v2 .contact-process-body { padding-top: 4px; min-width: 0; flex: 1; }
body.v2 .contact-process-title {
    font-size: 14px;
    font-weight: 700;
    color: #f1efff;
    margin-bottom: 2px;
    line-height: 1.3;
}
body.v2 .contact-process-desc {
    font-size: 13px;
    color: #a8a3bc;
    line-height: 1.45;
}

/* --- Light mode --- */
.light body.v2 .contact-form,
.light body.v2 .contact-direct,
.light body.v2 .contact-process {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
}
.light body.v2 .contact-form input,
.light body.v2 .contact-form select,
.light body.v2 .contact-form textarea {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #0f172a;
}
.light body.v2 .form-label { color: #475569; }
.light body.v2 .form-privacy { color: #64748b; }
.light body.v2 .contact-direct-value,
.light body.v2 .contact-process-title { color: #0f172a; }
.light body.v2 .contact-process-desc { color: #64748b; }
.light body.v2 .contact-direct-item {
    background: rgba(147,51,234,0.04);
    border-color: rgba(147,51,234,0.18);
    color: #0f172a;
}
.light body.v2 .contact-direct-item:hover { background: rgba(147,51,234,0.1); }

/* --- Responsive --- */
@media (max-width: 900px) {
    body.v2 .contact-grid {
        grid-template-columns: 1fr !important;
        max-width: 560px;
        gap: 20px;
    }
}
@media (max-width: 560px) {
    body.v2 .contact-form {
        padding: 24px 20px !important;
        gap: 18px !important;
    }
    body.v2 .form-row {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    body.v2 .form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    body.v2 .form-submit-btn { justify-content: center; }
    body.v2 .form-privacy { text-align: center; }
    body.v2 .contact-direct,
    body.v2 .contact-process {
        padding: 20px !important;
    }
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.v2-footer {
    background: #000;
    color: var(--v2-text-soft);
    padding: 60px 0 40px;
    border-top: 1px solid var(--v2-line);
    font-size: 13px;
}
.light .v2-footer {
    background: #f5f5f7;
    color: var(--v2-text-muted);
    border-top-color: var(--v2-line-dark);
}
.v2-footer a, .v2-footer button {
    color: var(--v2-text-soft);
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    transition: color 0.2s;
}
.v2-footer a:hover, .v2-footer button:hover { color: var(--v2-text); }
.light .v2-footer a, .light .v2-footer button { color: var(--v2-text-muted); }
.light .v2-footer a:hover, .light .v2-footer button:hover { color: var(--v2-text-dark); }
.v2-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--v2-line);
}
.light .v2-footer-grid { border-bottom-color: var(--v2-line-dark); }
.v2-footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--v2-text);
    margin: 0 0 16px;
    font-weight: 600;
}
.light .v2-footer-col h4 { color: var(--v2-text-dark); }
.v2-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v2-footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
@media (max-width: 760px) {
    .v2-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------------------------------------
   Reveal-on-scroll
   ---------------------------------------------------------- */
.v2-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.v2-reveal.is-visible { opacity: 1; transform: none; }

/* Staggered reveal for Leistungen cards — slide in one after another */
.v2-leistung-card.v2-reveal { transform: translateY(36px); }
.v2-leistung-grid .v2-leistung-card.v2-reveal:nth-child(1) { transition-delay: 0ms; }
.v2-leistung-grid .v2-leistung-card.v2-reveal:nth-child(2) { transition-delay: 120ms; }
.v2-leistung-grid .v2-leistung-card.v2-reveal:nth-child(3) { transition-delay: 240ms; }
.v2-leistung-grid .v2-leistung-card.v2-reveal:nth-child(4) { transition-delay: 360ms; }

/* Ampel card itself should always be visible — only its children animate */
.ampel-card.v2-reveal {
    opacity: 1;
    transform: none;
    transition: border-color 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
}

/* =========================================================
   Mobile-specific slide-in animations
   More pronounced motion + stagger for a premium feel
   ========================================================= */
@media (max-width: 760px) {
    /* Stronger slide distance + smoother easing on mobile */
    .v2-reveal {
        transform: translateY(44px);
        transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* --- Industry cards: stagger on mobile --- */
    .v2-industries .v2-industry-card.v2-reveal:nth-child(1) { transition-delay: 0ms; }
    .v2-industries .v2-industry-card.v2-reveal:nth-child(2) { transition-delay: 140ms; }
    .v2-industries .v2-industry-card.v2-reveal:nth-child(3) { transition-delay: 280ms; }
    .v2-industries .v2-industry-card.v2-reveal:nth-child(4) { transition-delay: 420ms; }

    /* --- Service cards: stagger on mobile --- */
    .v2-services-cards .v2-service-card.v2-reveal:nth-child(1) { transition-delay: 0ms; }
    .v2-services-cards .v2-service-card.v2-reveal:nth-child(2) { transition-delay: 140ms; }
    .v2-services-cards .v2-service-card.v2-reveal:nth-child(3) { transition-delay: 280ms; }
    .v2-services-cards .v2-service-card.v2-reveal:nth-child(4) { transition-delay: 420ms; }

    /* --- Hero content: fade + slide on page load --- */
    .v2-hero-eyebrow,
    .v2-hero h1,
    .v2-hero p,
    .v2-hero-actions {
        opacity: 0;
        transform: translateY(24px);
        animation: hero-mobile-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .v2-hero-eyebrow { animation-delay: 100ms; }
    .v2-hero h1     { animation-delay: 220ms; }
    .v2-hero p      { animation-delay: 360ms; }
    .v2-hero-actions{ animation-delay: 500ms; }

    @keyframes hero-mobile-in {
        to { opacity: 1; transform: translateY(0); }
    }

    /* --- Vorteile grid: stagger --- */
    .v2-vorteile-grid > .v2-vorteil.v2-reveal:nth-child(1) { transition-delay: 0ms; }
    .v2-vorteile-grid > .v2-vorteil.v2-reveal:nth-child(2) { transition-delay: 100ms; }
    .v2-vorteile-grid > .v2-vorteil.v2-reveal:nth-child(3) { transition-delay: 200ms; }
}

/* ----------------------------------------------------------
   Reduced motion
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .v2-reveal, .v2-scroll-hint, .ampel-stage, .ampel-step, .v2-industry-card, .v2-industry-card img {
        transition: none !important;
        animation: none !important;
    }
    .v2-reveal { opacity: 1; transform: none; }
    .ampel-step { opacity: 1; }
}

/* ----------------------------------------------------------
   Mobile menu (v2)
   ---------------------------------------------------------- */
.v2-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(20px);
    z-index: 49;
    padding: 80px 22px 30px;
    flex-direction: column;
    gap: 4px;
}
.v2-mobile-menu.open { display: flex; }
.light .v2-mobile-menu { background: rgba(245,245,247,0.98); }
.v2-mobile-menu button {
    text-align: left;
    background: none;
    border: 0;
    color: var(--v2-text);
    font-size: 22px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--v2-line);
    cursor: pointer;
    font-family: inherit;
}
.light .v2-mobile-menu button {
    color: var(--v2-text-dark);
    border-bottom-color: var(--v2-line-dark);
}
.v2-mobile-menu .v2-mobile-remote {
    color: #4ade80 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.v2-mobile-menu .v2-mobile-remote .v2-mobile-remote-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.8);
    flex-shrink: 0;
    animation: v2-remote-pulse 1.6s ease-in-out infinite;
}
@keyframes v2-remote-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(0.85); }
}

/* ----------------------------------------------------------
   FAB hide on v2 (we have header CTA + scroll hint already)
   ---------------------------------------------------------- */
body.v2 > button.fixed { display: none !important; }
