/* ============================================================
   AS-NEWMEDIA.DE – PREMIUM WOW CSS
   €10.000 Design Level – Full Visual Overhaul
   ============================================================ */

/* ── System Font Stack – kein Google Fonts, DSGVO-konform ── */

/* ────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ──────────────────────────────────────────────────────────── */
:root {
    /* Color Palette */
    --c-black: #020609;
    --c-night: #02060d;
    --c-dark: #060f1a;
    --c-card: #0b1526;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-border-hi: rgba(45, 212, 191, 0.35);

    --c-teal-100: #ccfbf1;
    --c-teal-400: #2dd4bf;
    --c-teal-500: #14b8a6;
    --c-teal-600: #0d9488;
    --c-teal-700: #0f766e;
    --c-teal-glow: rgba(20, 184, 166, 0.45);

    --c-emerald: #10b981;
    --c-green-400: #4ade80;

    --c-text-100: #f1f5f9;
    --c-text-200: #e2e8f0;
    --c-text-300: #cbd5e1;
    --c-text-400: #94a3b8;
    --c-text-500: #64748b;

    /* Spacing */
    --s-section: clamp(4rem, 8vw, 8rem);

    /* Border Radius */
    --r-sm: 0.75rem;
    --r-md: 1.25rem;
    --r-lg: 2rem;
    --r-xl: 2.5rem;
    --r-2xl: 3.5rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    /* Glow sizes */
    --glow-sm: 0 0 20px -5px var(--c-teal-glow);
    --glow-md: 0 0 40px -10px var(--c-teal-glow);
    --glow-lg: 0 0 80px -15px var(--c-teal-glow);
}

/* ────────────────────────────────────────────────────────────
   2. TYPOGRAPHY – Inter + Plus Jakarta Sans
   ──────────────────────────────────────────────────────────── */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--c-black);
    overflow-x: hidden;
    font-size: 1rem;
    line-height: 1.72;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

p {
    letter-spacing: -0.009em;
}

/* ────────────────────────────────────────────────────────────
   2b. TYPOGRAPHY NORMALIZATION – Consistent Body Text
   All non-heading text = 1.125rem (18px) with unified spacing
   ──────────────────────────────────────────────────────────── */

/* Base text elements – AGGRESSIVE SIZING */
p, li, span, button, a, label, input, textarea, select {
    font-size: 1.375rem !important;
    line-height: 1.8 !important;
    letter-spacing: -0.011em !important;
}

/* Remove conflicting Tailwind size utilities */
.text-xs, .text-sm, .text-base, .text-lg, .text-xl, .text-2xl {
    font-size: inherit !important;
    line-height: inherit !important;
}

/* Except for specific semantic elements */
small { font-size: 0.875rem !important; }
strong, .font-bold { font-weight: 700 !important; }

.display-xl,
.display-lg,
.display-md,
.stat-counter {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ────────────────────────────────────────────────────────────
   3. GLOBAL SCROLLBAR
   ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--c-black);
}

::-webkit-scrollbar-thumb {
    background: var(--c-teal-600);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--c-teal-400);
}

/* ────────────────────────────────────────────────────────────
   4. CURSOR GLOW (Desktop only)
   ──────────────────────────────────────────────────────────── */
#cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
    transition: opacity 0.3s ease;
    will-change: transform;
}

/* ────────────────────────────────────────────────────────────
   5. ANIMATED BACKGROUND NOISE GRAIN
   ──────────────────────────────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    mix-blend-mode: overlay;
}

/* ────────────────────────────────────────────────────────────
   6. BLOB BACKGROUND AURORA
   ──────────────────────────────────────────────────────────── */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -10;
    will-change: transform;
    animation: aurora 18s ease-in-out infinite;
}

.blob-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.22) 0%, rgba(13, 148, 136, 0.08) 70%, transparent 100%);
}

.blob-2 {
    width: 600px;
    height: 600px;
    bottom: -180px;
    right: -180px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, rgba(52, 211, 153, 0.05) 70%, transparent 100%);
    animation-duration: 22s;
    animation-delay: -4s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 40%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation-duration: 26s;
    animation-delay: -9s;
}

@keyframes aurora {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(40px, -60px) rotate(8deg) scale(1.08);
    }

    66% {
        transform: translate(-25px, 30px) rotate(-8deg) scale(0.95);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* ────────────────────────────────────────────────────────────
   7. PARTICLE CANVAS
   ──────────────────────────────────────────────────────────── */
#particle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ────────────────────────────────────────────────────────────
   8. TOP PROGRESS BAR
   ──────────────────────────────────────────────────────────── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    z-index: 10000;
    background: linear-gradient(90deg, var(--c-teal-500), var(--c-emerald), var(--c-teal-400));
    transition: width 0.1s linear;
    box-shadow: 0 0 12px var(--c-teal-glow), 0 0 4px var(--c-teal-400);
}

/* ────────────────────────────────────────────────────────────
   9. PREMIUM HEADER / NAV
   ──────────────────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(2, 6, 9, 0.85);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(2, 6, 9, 0.96);
    box-shadow: 0 12px 50px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(20, 184, 166, 0.15);
}

/* Nav link hover – animated underline */
nav a {
    position: relative;
    padding-bottom: 2px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--c-teal-400), var(--c-emerald));
    border-radius: 2px;
    transition: width 0.3s var(--ease-out-expo);
    box-shadow: 0 0 8px var(--c-teal-glow);
}

nav a:hover::after {
    width: 100%;
}

/* Mobile hamburger */
#mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--r-sm);
    border: 1px solid var(--c-border);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

#mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

#mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text-200);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
    transform-origin: center;
}

#mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

#mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown overlay */
#mobile-nav {
    display: none;
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--c-border);
    padding: 1.5rem 1.5rem 2rem;
    z-index: 499;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.35s var(--ease-out-expo);
}

#mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(0);
    opacity: 1;
}

#mobile-nav a {
    display: block;
    color: var(--c-text-300);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

#mobile-nav a:hover {
    background: rgba(20, 184, 166, 0.08);
    border-color: var(--c-border-hi);
    color: var(--c-teal-400);
    transform: translateX(6px);
}

@media (max-width: 1023px) {
    #mobile-menu-btn {
        display: flex;
    }
}

/* ────────────────────────────────────────────────────────────
   9.5. HEADER TEXT SIZING – MAKE NAVIGATION PROMINENT
   ──────────────────────────────────────────────────────────── */
header {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

header a {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
}

.nav-link {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
}

header .text-lg {
    font-size: 1.25rem !important;
}

/* Logo name styling */
header a:first-child {
    font-size: 1.125rem !important;
}

/* ────────────────────────────────────────────────────────────
   10. WOW BUTTONS
   ──────────────────────────────────────────────────────────── */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    font-family: 'Inter', system-ui, sans-serif;
    color: #000000 !important;
    background: linear-gradient(135deg,
        var(--c-teal-600) 0%,
        var(--c-teal-400) 40%,
        var(--c-emerald) 80%,
        var(--c-teal-500) 100%);
    background-size: 200% 200%;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s var(--ease-out-expo);
    box-shadow: 0 12px 40px -8px var(--c-teal-glow), 0 2px 8px -2px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
    text-transform: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary, .btn-primary * {
    color: #000000 !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-150%) skewX(-20deg);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 60px -8px var(--c-teal-glow), 0 4px 16px -4px rgba(0, 0, 0, 0.6);
    background-position: 100% 0;
    filter: brightness(1.12);
}

.btn-primary:hover::before {
    transform: translateX(150%) skewX(-20deg);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--c-text-100);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-sm);
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s var(--ease-out-expo);
    letter-spacing: 0.02em;
}

.btn-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08) 50%, transparent);
    transform: translateX(-150%) skewX(-20deg);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-glass:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--c-teal-400);
    box-shadow: 0 0 0 1px var(--c-teal-400), 0 12px 30px -10px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.btn-glass:hover::before {
    transform: translateX(150%) skewX(-20deg);
}

.btn-glass:active {
    transform: translateY(-1px) scale(0.98);
}

/* ────────────────────────────────────────────────────────────
   11. PREMIUM CARDS
   ──────────────────────────────────────────────────────────── */
.premium-card {
    position: relative;
    /* background controlled by Tailwind classes on element */
    border: 1px solid rgba(20, 184, 166, 0.12);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.08);
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0) 0%, rgba(20, 184, 166, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(20, 184, 166, 0.2);
}

.premium-card:hover::before {
    opacity: 1;
}

/* Dark cards (used with bg-night-900 etc.) */
.premium-card.dark-card {
    border-color: rgba(20, 184, 166, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.premium-card.dark-card:hover {
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.6), var(--glow-md);
}

/* Light version for white-bg sections */
.premium-card-light {
    position: relative;
    background: #fff;
    border: 1px solid rgba(20, 184, 166, 0.12);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.08);
}

.premium-card-light:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(20, 184, 166, 0.2);
}

/* ────────────────────────────────────────────────────────────
   12. GLASS CARDS (dark sections)
   ──────────────────────────────────────────────────────────── */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(20, 184, 166, 0.1), transparent 60%);
    animation: glass-spin 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 25px 70px -18px rgba(0, 0, 0, 0.6), var(--glow-md);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.glass-card:hover::after {
    opacity: 1;
}

@keyframes glass-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ────────────────────────────────────────────────────────────
   13. GRADIENT TEXT
   ──────────────────────────────────────────────────────────── */
.gradient-text {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    background: linear-gradient(90deg,
        #2dd4bf 0%,
        #14b8a6 20%,
        #10b981 50%,
        #34d399 75%,
        #2dd4bf 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: text-shimmer 5s linear infinite;
}

@keyframes text-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.gradient-text-warm {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ────────────────────────────────────────────────────────────
   14. NEON GLOW BADGE
   ──────────────────────────────────────────────────────────── */
.neon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: var(--c-teal-400);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px -4px var(--c-teal-glow), inset 0 0 12px -4px rgba(20, 184, 166, 0.05);
    animation: badge-pulse 3s ease-in-out infinite;
}

.neon-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-teal-400);
    box-shadow: 0 0 6px var(--c-teal-400);
    animation: dot-blink 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 12px -4px var(--c-teal-glow), inset 0 0 12px -4px rgba(20, 184, 166, 0.05);
    }

    50% {
        box-shadow: 0 0 24px -4px var(--c-teal-glow), inset 0 0 18px -4px rgba(20, 184, 166, 0.1);
    }
}

@keyframes dot-blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px var(--c-teal-400);
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 2px var(--c-teal-400);
    }
}

/* ────────────────────────────────────────────────────────────
   15. SECTION REVEAL ANIMATIONS
   ──────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.45s;
}

.reveal-delay-5 {
    transition-delay: 0.6s;
}

/* ────────────────────────────────────────────────────────────
   16. HERO SECTION – WOW ELEMENTS
   ──────────────────────────────────────────────────────────── */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 184, 166, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 184, 166, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    pointer-events: none;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-1 {
    width: 900px;
    height: 900px;
    top: -350px;
    left: -200px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 65%);
    animation: float-slow 20s ease-in-out infinite;
}

.hero-glow-2 {
    width: 700px;
    height: 700px;
    bottom: -300px;
    right: -100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 65%);
    animation: float-slow 25s ease-in-out infinite reverse;
}

/* Floating stats/trust elements */
.hero-float-card {
    position: absolute;
    background: rgba(11, 21, 38, 0.85);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--r-md);
    padding: 0.9rem 1.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(20, 184, 166, 0.1);
    cursor: default;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.hero-float-card:hover {
    transform: scale(1.05) translateY(-4px) !important;
    box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.6), var(--glow-sm);
}

.hero-float-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-card .label {
    font-size: 0.75rem;
    color: var(--c-text-400);
    font-weight: 500;
}

.hero-float-card .value {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

/* ────────────────────────────────────────────────────────────
   17. ANIMATED COUNTER
   ──────────────────────────────────────────────────────────── */
.stat-counter {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--c-teal-300, #99f6e4), var(--c-teal-400), var(--c-teal-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ────────────────────────────────────────────────────────────
   18. GLOWING DIVIDER LINE
   ──────────────────────────────────────────────────────────── */
.glow-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-teal-500), transparent);
    box-shadow: 0 0 12px var(--c-teal-glow);
    opacity: 0.5;
}

/* ────────────────────────────────────────────────────────────
   19. SECTION HEADLINES
   ──────────────────────────────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-teal-400);
    margin-bottom: 1.25rem;
    font-family: 'Inter', system-ui, sans-serif;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 32px;
    background: linear-gradient(90deg, transparent, var(--c-teal-400), transparent);
    opacity: 0.8;
}

/* ────────────────────────────────────────────────────────────
   20. STEP NUMBERS (Ablauf)
   ──────────────────────────────────────────────────────────── */
.step-number {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
    cursor: default;
}

.step-number-active {
    background: linear-gradient(135deg, var(--c-teal-500), var(--c-teal-400));
    color: var(--c-black);
    box-shadow: 0 8px 24px -8px var(--c-teal-glow), 0 0 0 6px rgba(20, 184, 166, 0.1);
}

.step-number-outline {
    background: transparent;
    color: var(--c-teal-400);
    border: 2px solid var(--c-teal-500);
    box-shadow: 0 0 20px -8px var(--c-teal-glow), inset 0 0 20px -10px rgba(20, 184, 166, 0.05);
}

.step-group:hover .step-number {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 16px 40px -8px var(--c-teal-glow);
}

/* ────────────────────────────────────────────────────────────
   21. FAQ ACCORDION
   ──────────────────────────────────────────────────────────── */
.faq-item {
    border: none;
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all 0.35s ease;
    /* no background – inner button controls it */
}

.faq-item:hover {}

.faq-item.faq-open {}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.faq-open .faq-content {
    max-height: 600px;
}

.faq-icon {
    transition: transform 0.4s var(--ease-out-expo);
}

.faq-item.faq-open .faq-icon {
    transform: rotate(180deg);
    color: var(--c-teal-400);
}

/* ────────────────────────────────────────────────────────────
   22. CONTACT FORM
   ──────────────────────────────────────────────────────────── */
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-sm);
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: 1.0625rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
    border-color: var(--c-teal-400);
    background: rgba(20, 184, 166, 0.1);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2), 0 0 20px -6px var(--c-teal-glow);
}

/* ────────────────────────────────────────────────────────────
   23. MOBILE STICKY CTA
   ──────────────────────────────────────────────────────────── */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 9, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.25rem;
    z-index: 50;
    border-top: 1px solid var(--c-border);
    box-shadow: 0 -12px 30px -8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ────────────────────────────────────────────────────────────
   24. FLOATING ANIMATION
   ──────────────────────────────────────────────────────────── */
@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(3deg);
    }

    66% {
        transform: translateY(15px) rotate(-3deg);
    }
}

@keyframes float-medium {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-slow {
    animation: float-slow 20s ease-in-out infinite;
}

.float-medium {
    animation: float-medium 14s ease-in-out infinite;
}

.float-fast {
    animation: float-medium 8s ease-in-out infinite;
}

/* ────────────────────────────────────────────────────────────
   25. BOUNCE-X ARROW
   ──────────────────────────────────────────────────────────── */
@keyframes bounce-x {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }
}

.animate-bounce-x {
    animation: bounce-x 1.2s ease-in-out infinite;
}

/* ────────────────────────────────────────────────────────────
   26. HIGHLIGHT CHIP (Tags inside cards)
   ──────────────────────────────────────────────────────────── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.25);
    color: var(--c-teal-400);
}

.chip-white {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ────────────────────────────────────────────────────────────
   27. RESPONSIVE TYPOGRAPHY CLAMP
   ──────────────────────────────────────────────────────────── */
.display-xl {
    font-size: clamp(2.75rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.048em;
    line-height: 0.96;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

.display-lg {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

.display-md {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.12;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

.body-lg {
    font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
    line-height: 1.8;
    letter-spacing: -0.012em;
}

.body-md {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    letter-spacing: -0.01em;
}

/* ────────────────────────────────────────────────────────────
   28. ICON CONTAINER WOW
   ──────────────────────────────────────────────────────────── */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: all 0.35s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.icon-box::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent, rgba(20, 184, 166, 0.3), transparent);
    animation: icon-spin 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.group:hover .icon-box::after {
    opacity: 1;
}

.group:hover .icon-box {
    transform: scale(1.1) rotate(-6deg);
}

@keyframes icon-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ────────────────────────────────────────────────────────────
   29. SCROLL INDICATOR (Hero)
   ──────────────────────────────────────────────────────────── */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--c-teal-400);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(14px);
        opacity: 0;
    }
}

.scroll-indicator .label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

/* ────────────────────────────────────────────────────────────
   30. TILT CARD EFFECT (via JS class)
   ──────────────────────────────────────────────────────────── */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

/* ────────────────────────────────────────────────────────────
   31. SECTION BACKGROUNDS
   ──────────────────────────────────────────────────────────── */
.bg-section-dark {
    background: linear-gradient(180deg, var(--c-dark) 0%, var(--c-night) 100%);
}

.bg-section-darker {
    background: var(--c-black);
}

.bg-section-card {
    background: var(--c-card);
}

/* ────────────────────────────────────────────────────────────
   32. GLOW HORIZONTAL LINE (section border)
   ──────────────────────────────────────────────────────────── */
.border-glow-top {
    position: relative;
}

.border-glow-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-teal-500), transparent);
    box-shadow: 0 0 10px var(--c-teal-glow);
}

/* ────────────────────────────────────────────────────────────
   33. LIST ITEMS WOW (check icon rows)
   ──────────────────────────────────────────────────────────── */
.wow-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--c-border);
    transition: background 0.2s ease;
}

.wow-list-item:last-child {
    border-bottom: none;
}

.wow-list-item:hover {
    background: rgba(20, 184, 166, 0.03);
    border-radius: 0.5rem;
}

.wow-list-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--c-teal-400);
    transition: all 0.3s ease;
}

.wow-list-item:hover .wow-list-check {
    background: rgba(20, 184, 166, 0.25);
    box-shadow: 0 0 10px -3px var(--c-teal-glow);
}

/* ────────────────────────────────────────────────────────────
   34. RESPONSIVE FIXES – TABLET & MOBILE
   ──────────────────────────────────────────────────────────── */

/* ── Tablet: 768px – 1023px ── */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Ablauf: 2 columns instead of 4 on tablet */
    #ablauf .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }

    /* Hide connecting line (makes no sense in 2-col layout) */
    #ablauf .grid > .hidden {
        display: none !important;
    }
}

/* ── Mobile: max 768px ── */
@media (max-width: 768px) {
    .display-xl { font-size: clamp(2.4rem, 11vw, 3.5rem); }
    .display-lg { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .display-md { font-size: clamp(1.35rem, 5vw, 2rem); }

    .hero-float-card { display: none; }

    .premium-card {
        padding: 1.5rem !important;
        border-radius: 1.5rem;
    }

    .glass-card {
        padding: 1.5rem !important;
        border-radius: 1.5rem;
    }

    /* Override Tailwind py-* / pt-* / pb-* on sections and footer */
    section,
    footer {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    /* Hero: specific overrides for pt-24 pb-32 and h1 */
    #hero {
        padding-top: 5rem !important;
        padding-bottom: 3rem !important;
        min-height: auto !important;
        align-items: flex-start;
    }

    /* Hero badge */
    #hero .inline-flex.items-center.rounded-full {
        margin-bottom: 1.25rem !important;
        font-size: 0.72rem !important;
        padding: 0.45rem 1rem !important;
    }

    #hero h1 {
        font-size: clamp(2.1rem, 10.5vw, 3.2rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.025em !important;
        margin-bottom: 1rem !important;
    }

    #hero p.text-xl,
    #hero p.text-2xl {
        font-size: 1rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.75rem !important;
    }

    /* Hero buttons: full-width on mobile */
    #hero .flex.flex-col {
        gap: 0.875rem !important;
    }
    #hero .btn-primary,
    #hero .btn-glass {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }

    /* FAQ: tighter padding on mobile */
    .faq-trigger {
        padding: 1.25rem 1rem !important;
    }

    /* Reduce Tailwind p-12 (contact, expertise, FAQ CTA cards) */
    .p-12 { padding: 1.5rem !important; }

    /* Mobile: Boost card text sizes for readability */
    .premium-card h3 {
        font-size: 1.5rem !important;
    }

    .premium-card p,
    .glass-card p {
        font-size: 1.0rem !important;
    }

    section h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
    }
}

/* ── Small Mobile: max 480px ── */
@media (max-width: 480px) {
    .btn-primary,
    .btn-glass {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Even smaller H1 on very small screens */
    #hero h1 {
        font-size: clamp(2.8rem, 13vw, 3.8rem) !important;
    }
}

/* ────────────────────────────────────────────────────────────
   35. SELECTION COLOR
   ──────────────────────────────────────────────────────────── */
::selection {
    background: rgba(20, 184, 166, 0.3);
    color: #fff;
}

/* ────────────────────────────────────────────────────────────
   36. KINETIC BORDER CARD (special "hero" card)
   ──────────────────────────────────────────────────────────── */
.kinetic-border {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.kinetic-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle, 0deg),
            transparent 0deg,
            var(--c-teal-400) 60deg,
            var(--c-emerald) 120deg,
            transparent 180deg);
    animation: rotate-border 4s linear infinite;
    z-index: -1;
}

.kinetic-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: calc(var(--r-xl) - 2px);
    background: var(--c-card);
    z-index: -1;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

/* ────────────────────────────────────────────────────────────
   37. STATS ROW
   ──────────────────────────────────────────────────────────── */
.stats-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--c-border), transparent);
    align-self: center;
}

/* ────────────────────────────────────────────────────────────
   38. FOOTER NAV LINKS
   ──────────────────────────────────────────────────────────── */
footer a {
    color: var(--c-text-400);
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--c-teal-400);
}

/* ────────────────────────────────────────────────────────────
   39. IMPRESSUM / DATENSCHUTZ PAGES
   ──────────────────────────────────────────────────────────── */
.legal-page {
    background: var(--c-black);
    color: var(--c-text-300);
    min-height: 100vh;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
    color: #fff;
}

.legal-page a {
    color: var(--c-teal-400);
    transition: color 0.2s ease;
}

.legal-page a:hover {
    color: var(--c-teal-300, #99f6e4);
}

/* ────────────────────────────────────────────────────────────
   40. SHINE HOVER (for image / card)
   ──────────────────────────────────────────────────────────── */
.shine-on-hover {
    position: relative;
    overflow: hidden;
}

.shine-on-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.shine-on-hover:hover::after {
    left: 150%;
}


/* ────────────────────────────────────────────────────────────
   SPLASH SCREEN (minimal – remains from old)
   ──────────────────────────────────────────────────────────── */
#splash-screen {
    display: none;
    /* disabled */
}

/* ============================================================
   41. PREMIUM WOW ADDITIONS – Ultra-High-End Refinements
   ============================================================ */

/* ── Nav Link Font Refinement ── */
nav a {
    font-family: 'Inter', system-ui, sans-serif;
    letter-spacing: 0.01em;
}

/* ── Form Input Font ── */
.form-input {
    font-family: 'Inter', system-ui, sans-serif;
}

/* ── Gold Gradient Text ── */
.gradient-text-gold {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 40%, #d97706 80%, #fbbf24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── Glow Text (numbers, stats) ── */
.glow-text {
    text-shadow: 0 0 24px var(--c-teal-glow), 0 0 48px rgba(20, 184, 166, 0.15);
}

/* ── Premium Heading Accent Underline ── */
.heading-accent {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.heading-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-teal-400), var(--c-emerald));
    border-radius: 2px;
    box-shadow: 0 0 14px var(--c-teal-glow);
}

/* ── Glass Card – inner top highlight (premium depth) ── */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}

/* ── Premium Card Light – inner top highlight ── */
.premium-card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20,184,166,0.25), transparent);
    pointer-events: none;
}

/* ── Better Focus Ring ── */
:focus-visible {
    outline: 2px solid var(--c-teal-400);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Stat Counter – enhanced glow ── */
.stat-counter {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ── Text Balance for Headlines ── */
h1, h2, h3 {
    text-wrap: balance;
}

/* ── Smooth font rendering boost ── */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Inter numeric figure style ── */
.stat-counter,
[data-count] {
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum';
}

/* ── Premium scroll-progress gradient ── */
#scroll-progress {
    background: linear-gradient(90deg,
        var(--c-teal-600),
        var(--c-teal-400),
        var(--c-emerald),
        var(--c-teal-400));
    background-size: 200% 100%;
    animation: progress-gradient 3s ease-in-out infinite;
}

@keyframes progress-gradient {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

/* ── Cursor glow – more visible ── */
#cursor-glow {
    background: radial-gradient(circle,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(16, 185, 129, 0.05) 40%,
        transparent 70%);
    width: 480px;
    height: 480px;
}

/* ── Particle canvas opacity boost ── */
#particle-canvas {
    opacity: 0.55;
}

/* ── Premium body text in light sections ── */
.bg-slate-50 p,
.bg-white p {
    color: #374151;
    line-height: 1.78;
}

/* ── Letter perfect blockquote / highlight ── */
.highlight-quote {
    border-left: 3px solid var(--c-teal-400);
    padding: 1.25rem 1.5rem;
    background: rgba(20, 184, 166, 0.04);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-size: 1.0625rem;
    line-height: 1.78;
    letter-spacing: -0.01em;
    color: #1e293b;
}

/* ── Mobile: tighter letter-spacing for h1 ── */
@media (max-width: 768px) {
    h1, h2, h3 {
        letter-spacing: -0.025em;
    }
    .btn-primary {
        letter-spacing: 0.03em;
        font-size: 0.9rem;
        color: #000000 !important;
    }
}

/* ════════════════════════════════════════════════════════════
   42. DARK SECTION TEXT CONTRAST FIXES
   Text im Dunklen muss leuchten – kein grauer Brei
   ════════════════════════════════════════════════════════════ */

/* Slate-300 in dunklen Sections → fast weiß */
.bg-night-950 .text-slate-300,
.bg-night-900 .text-slate-300,
[class*="bg-night"] .text-slate-300 {
    color: #e8edf5 !important;
}

/* Slate-400 → slate-200 Helligkeit */
.bg-night-950 .text-slate-400,
.bg-night-900 .text-slate-400,
[class*="bg-night"] .text-slate-400 {
    color: #c8d3e8 !important;
}

/* Glass-cards: Text soll klar sichtbar sein */
.glass-card .text-slate-300 { color: #e8edf5 !important; }
.glass-card .text-slate-400 { color: #c8d3e8 !important; }
.glass-card p             { color: #d1d9ec !important; }

/* Paragraphen direkt in dark sections */
.bg-night-950 > * p,
.bg-night-900 > * p,
[class*="bg-night"] p {
    color: #c8d3e8 !important;
}

/* stat/counter subtexts */
.bg-night-950 .text-teal-300 { color: #5eead4 !important; }
.bg-night-900 .text-teal-300 { color: #5eead4 !important; }


/* ════════════════════════════════════════════════════════════
   43. KINETIC BORDER – Quote Card & Hero CTA
   Laufendes Teal-Gradient als animierter Border
   ════════════════════════════════════════════════════════════ */

@property --kinetic-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes kinetic-rotate {
    to { --kinetic-angle: 360deg; }
}

.kinetic-border {
    position: relative;
    isolation: isolate;
}

.kinetic-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--kinetic-angle),
        #2dd4bf 0%,
        #0ea5e9 25%,
        #14b8a6 50%,
        #10b981 75%,
        #2dd4bf 100%
    );
    animation: kinetic-rotate 6s linear infinite;
    z-index: -1;
    opacity: 0.85;
}

.kinetic-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 2.3rem;
    background: #020617;
    z-index: -1;
}

/* ── Premium Card Depth – stärkere Shadows ── */
.premium-card {
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.06),
        0 16px 40px rgba(0,0,0,0.08),
        0 48px 80px rgba(0,0,0,0.05);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.premium-card:hover {
    box-shadow:
        0 2px 4px rgba(0,0,0,0.05),
        0 8px 24px rgba(0,0,0,0.09),
        0 24px 56px rgba(14,165,233,0.07),
        0 64px 120px rgba(20,184,166,0.06);
    transform: translateY(-4px);
}

/* ── Stat Cards: teal glow on hover ── */
.stat-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stat-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 0 0 1px rgba(45,212,191,0.25),
        0 20px 60px rgba(20,184,166,0.15);
}

/* ── Section headings: subtle underline glow ── */
.section-heading-accent {
    position: relative;
    display: inline-block;
}
.section-heading-accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #2dd4bf, #10b981, transparent);
    opacity: 0.7;
}

/* ── List items in dark sections – clear markers ── */
[class*="bg-night"] li::marker { color: #2dd4bf; }
.glass-card li::marker         { color: #2dd4bf; }

/* ═══════════════════════════════════════════════════════
   Section 44 – Global Typography Boost (Aggressive)
   Headings & body text scale-up for readability & mobile
═══════════════════════════════════════════════════════ */

/* Section h2 — bigger, more presence */
section h2 {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 1.5rem !important;
}

/* Card headings h3 */
.premium-card h3,
.glass-card h3,
section .grid h3 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
}

/* Body text in cards & sections — much more readable */
.premium-card p,
.glass-card p,
section .grid p,
.premium-card p.text-lg,
.premium-card p.text-slate-600,
.premium-card p.text-slate-300 {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
}

/* Italic quote text in cards — bigger */
.premium-card p.italic,
.premium-card p.font-semibold.italic {
    font-size: 1.1rem !important;
    line-height: 1.75 !important;
}

/* Section intro paragraphs (after h2) */
section > div > div > p.text-xl,
section > div > div > div > p.text-xl {
    font-size: clamp(1.15rem, 2.2vw, 1.375rem) !important;
    line-height: 1.75 !important;
}

/* Feature lists, bullet points */
section ul li,
.premium-card ul li,
.glass-card ul li {
    font-size: 1.0625rem !important;
    line-height: 1.75 !important;
}

/* Section labels */
.section-label span {
    font-size: 0.8rem !important;
    letter-spacing: 0.12em !important;
    font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════════════
   Section 45 – Premium Spacing & Visual Hierarchy
═══════════════════════════════════════════════════════ */

/* Larger section padding for breathing room */
section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

@media (min-width: 768px) {
    section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

@media (min-width: 1024px) {
    section {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

/* Better card spacing & shadows */
.premium-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.premium-card:hover {
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.12) !important;
    transform: translateY(-4px) !important;
}

.glass-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
}

/* Better button styling */
.btn-primary {
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    color: #000000 !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.4) !important;
}

.btn-glass {
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

/* Better max-width containers */
.max-w-7xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

@media (min-width: 768px) {
    .max-w-7xl {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Premium heading spacing */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.25rem !important;
    letter-spacing: -0.5px !important;
}

/* Better grid gaps */
.grid {
    gap: 2rem !important;
}

@media (min-width: 768px) {
    .grid {
        gap: 2.5rem !important;
    }
}

@media (min-width: 1024px) {
    .grid {
        gap: 3rem !important;
    }
}

/* ═══════════════════════════════════════════════════════
   Section 46 – FAQ Enhanced Readability & Global Font Audit
═══════════════════════════════════════════════════════ */

/* FAQ concern label — properly balanced with questions */
#faq .faq-trigger span.uppercase {
    font-size: 1rem !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    line-height: 1.5 !important;
}

/* FAQ question text — text-xl mobile, text-2xl desktop */
#faq .faq-trigger span.text-xl {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

@media (min-width: 768px) {
    #faq .faq-trigger span.md\:text-2xl {
        font-size: 1.5rem !important;
    }
}

/* FAQ answer text — well readable */
#faq .faq-content p {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
}

/* ─── Global Font Hierarchy Audit ─── */
/* EXTREME SIZING FOR IMPACT */
h1 { font-size: clamp(3rem, 13vw, 6.5rem) !important; font-weight: 800 !important; line-height: 1 !important; }
h2 { font-size: clamp(2.2rem, 7vw, 4.75rem) !important; font-weight: 800 !important; }
h3 { font-size: clamp(1.6rem, 4vw, 3rem) !important; font-weight: 700 !important; }
h4 { font-size: clamp(1.3rem, 3vw, 2.2rem) !important; font-weight: 700 !important; }

p, li { line-height: 1.75 !important; }
strong, .font-bold { font-weight: 700 !important; }

/* Button text — readable across all sizes */
.btn-primary, .btn-glass {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}

/* ═══════════════════════════════════════════════════════
   Section 47 – Design Refinements for $20k-Level Professionalism
   Premium polish: shadows, spacing, micro-interactions, mobile
═══════════════════════════════════════════════════════ */

/* ── Form Input Refinement ── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    font-size: 1.125rem !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 1rem !important;
    padding: 1.125rem !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1) !important;
    outline: none !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(148, 163, 184, 0.6) !important;
}

/* ── Label Typography Refinement ── */
label {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    color: rgba(226, 232, 240, 0.85) !important;
}

/* ── Enhanced Shadow & Depth System ── */
.premium-card {
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.06) !important;
}

.premium-card:hover {
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 24px 48px rgba(20, 184, 166, 0.08) !important;
}

.glass-card {
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 8px 20px rgba(0, 0, 0, 0.04) !important;
}

/* ── Button Refinements — Professional Polish ── */
.btn-primary {
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    min-height: 3.125rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0.875rem !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
}

.btn-primary:active {
    transform: translateY(0) !important;
}

.btn-glass {
    letter-spacing: 0.01em !important;
    min-height: 3.125rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0.875rem !important;
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(45, 212, 191, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* ── Section Dividers & Accent Lines ── */
section + section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.border-b {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* ── Mobile Optimization for Premium Feel – AGGRESSIVE SIZING ── */
@media (max-width: 640px) {
    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .max-w-7xl {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Hero H1 — much larger on mobile */
    h1 {
        font-size: clamp(2.6rem, 14vw, 4rem) !important;
        margin-bottom: 1.75rem !important;
        line-height: 1.1 !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-weight: 800 !important;
    }

    h2 {
        font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
        margin-bottom: 1.5rem !important;
    }

    h3 {
        font-size: clamp(1.35rem, 5vw, 2rem) !important;
        margin-bottom: 1.125rem !important;
    }

    h4 {
        font-size: clamp(1.15rem, 4vw, 1.5rem) !important;
    }

    /* Body text MUCH larger on mobile */
    p, li {
        font-size: 1.25rem !important;
        line-height: 1.85 !important;
    }

    /* Button text prominent on mobile */
    .btn-primary, .btn-glass {
        font-size: 1.25rem !important;
        padding: 1rem 1.5rem !important;
        min-height: 3.5rem !important;
    }

    .premium-card {
        padding: 2rem !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 1.25rem !important;
        font-size: 1.25rem !important;
    }

    label {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 768px) {
    .grid {
        gap: 1.5rem !important;
    }

    .premium-card h3 {
        font-size: clamp(1.35rem, 5.5vw, 2.125rem) !important;
    }
}

/* ── Icon Button Refinement ── */
svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ── Improved List Styling ── */
ul, ol {
    list-style-position: inside;
}

li {
    font-size: 1.125rem !important;
    margin-bottom: 0.5rem;
}

/* ── Enhanced Text Contrast in Dark Sections ── */
.bg-night-900 p,
.bg-night-950 p {
    color: rgba(226, 232, 240, 0.95) !important;
}

.bg-night-900 a,
.bg-night-950 a {
    color: #2dd4bf !important;
}

.bg-night-900 a:hover,
.bg-night-950 a:hover {
    color: #0d9488 !important;
    text-decoration: underline;
}

/* ── Refined Spacing Between Content ── */
section > .max-w-7xl > div > *:not(:last-child) {
    margin-bottom: 2.5rem;
}

/* ── Link Hover States ── */
a {
    transition: all 0.25s ease !important;
}

/* ── Checkbox Refinement ── */
input[type="checkbox"] {
    width: 1.25rem !important;
    height: 1.25rem !important;
    border-radius: 0.375rem !important;
    accent-color: #14b8a6 !important;
}