/* 
 * S&F Objektbetreuung — Professional Redesign
 * Design System: Premium Corporate Green
 * by ByKine
 */

@import url('fonts.css');

/* ─── DESIGN TOKENS ─── */
:root {
    /* Brand Palette */
    --color-green: #1E4935;
    --color-green-dark: #0f2b1e;
    --color-green-mid: #2a6449;
    --color-green-light: rgba(30, 73, 53, 0.06);
    --color-green-glow: rgba(30, 73, 53, 0.12);
    --color-blue: #2B5377;
    --color-blue-dark: #1a3a55;
    --color-blue-light: rgba(43, 83, 119, 0.06);

    /* Gradients */
    --gradient-green: linear-gradient(135deg, #1E4935, #0f2b1e);
    --gradient-blue: linear-gradient(135deg, #2B5377, #1a3a55);
    --gradient-mixed: linear-gradient(135deg, #2B5377, #1E4935);
    --gradient-hero-btn: linear-gradient(135deg, #1E4935 0%, #2B5377 100%);
    --gradient-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));

    /* Neutrals — refined slate scale */
    --color-slate-950: #020617;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-400: #94a3b8;
    --color-slate-300: #cbd5e1;
    --color-slate-200: #e2e8f0;
    --color-slate-100: #f1f5f9;
    --color-bg: #f8fafc;
    --color-white: #ffffff;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-title: 'Outfit', sans-serif;

    /* Elevation — refined shadows */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 6px 24px rgba(15, 23, 42, 0.04);
    --shadow-card-hover: 0 8px 30px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-premium: 0 20px 40px -8px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.03);

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition: all 0.25s var(--ease-out);
    --transition-slow: all 0.4s var(--ease-out);
    --transition-fast: all 0.15s var(--ease-out);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-green) var(--color-slate-100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #0f172a;
    background: linear-gradient(135deg, #f0fdf4 0%, #f1f5f9 50%, #eff6ff 100%);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 73, 53, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 73, 53, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: 0;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-slate-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-green-dark);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

/* ─── CONTAINER UTILITY ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ─── SECTION HEADERS (shared) ─── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.12);
    border: 1.5px solid rgba(16, 185, 129, 0.3);
    color: #047857;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.12);
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.75px;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
}

/* ─── SHARED BUTTON SYSTEM ─── */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.98rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    letter-spacing: 0.2px;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #047857 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-glow:active {
    transform: translateY(0);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    color: var(--color-slate-800);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--color-slate-200);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--color-slate-100);
    border-color: var(--color-slate-300);
    transform: translateY(-1px);
}


/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    height: 72px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    z-index: 1010;
}

.nav-logo img {
    height: 100%;
    max-height: 48px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 800;
    color: #1E4935;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-slate-600);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.1px;
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-green);
    border-radius: 1px;
    transition: width 0.25s var(--ease-out);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: all 0.25s var(--ease-out);
}

.nav-cta i {
    font-size: 0.72rem;
}

.nav-cta:hover {
    transform: translateY(-1.5px) scale(1.02);
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #047857 100%);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}


/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background: var(--color-bg);
    padding: 180px clamp(1.25rem, 4vw, 3rem) 5rem;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.96) opacity(0.38);
}

.hero-video-blur-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

/* Subtle grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 73, 53, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 73, 53, 0.012) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 1;
    pointer-events: none;
}

/* Ambient glows */
.glow-green {
    position: absolute;
    top: -12%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 1;
}

.glow-blue {
    position: absolute;
    top: 600px;
    left: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(30, 73, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(70px);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--color-slate-700);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    cursor: default;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(30, 73, 53, 0.12);
}

.hero-badge i {
    color: var(--color-green);
    font-size: 0.8rem;
}

.hero h1 {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--color-slate-900);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero h1 span.green {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.hero h1 span.blue {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.hero p {
    font-size: 1.05rem;
    color: var(--color-slate-500);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── HERO RIGHT — Before/After Dashboard ─── */
.hero-right {
    position: relative;
    z-index: 2;
}

.glow-green {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.2) 0%, rgba(43, 83, 119, 0.1) 45%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.glow-blue {
    position: absolute;
    top: 250px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(30, 73, 53, 0.1) 50%, transparent 75%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 30px 70px rgba(30, 73, 53, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-mockup:hover {
    border-color: rgba(16, 185, 129, 0.15);
    box-shadow: 0 35px 80px rgba(16, 185, 129, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 0.85rem;
    margin-bottom: 1.15rem;
}

.dash-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-slate-900);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.2px;
}

.dash-status {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

.dash-badge {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.dash-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dash-control-btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--color-white);
    color: var(--color-slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dash-control-btn:hover {
    background: var(--color-slate-50);
    color: var(--color-slate-900);
    border-color: rgba(15, 23, 42, 0.15);
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.dash-dots {
    display: flex;
    gap: 5px;
}

.dash-dot {
    width: 8px;
    height: 8px;
    background: var(--color-slate-200);
    border-radius: 50%;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Before/After Slider */
.before-after-slider {
    position: relative;
    width: 100%;
    height: 330px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    user-select: none;
    box-shadow: 0 15px 35px rgba(30, 73, 53, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.img-before {
    z-index: 10;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-label {
    position: absolute;
    top: 1rem;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--color-white);
    pointer-events: none;
    z-index: 25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.label-before {
    left: 1rem;
    background: rgba(239, 68, 68, 0.72);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.label-before .label-dot {
    background: #f87171;
    box-shadow: 0 0 8px #ef4444;
}

.label-after {
    right: 1rem;
    background: rgba(16, 185, 129, 0.76);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.label-after .label-dot {
    background: #34d399;
    box-shadow: 0 0 8px #10b981;
}

.slider-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: col-resize;
    z-index: 30;
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2.5px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.25) 0%, #10b981 50%, rgba(16, 185, 129, 0.25) 100%);
    left: 50%;
    z-index: 20;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.85rem;
    z-index: 21;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4), 0 4px 15px rgba(16, 185, 129, 0.35);
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}

.before-after-slider:hover .slider-button {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.15), 0 4px 15px rgba(16, 185, 129, 0.35);
}

/* Dashboard Action Footer */
.dash-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.dash-meta-tags {
    display: flex;
    gap: 0.5rem;
}

.meta-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-slate-500);
    background: rgba(15, 23, 42, 0.04);
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-tag i {
    color: #10b981;
    font-size: 0.75rem;
}

.btn-autoplay-toggle {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-slate-600);
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-autoplay-toggle:hover {
    color: var(--color-slate-900);
    border-color: rgba(15, 23, 42, 0.15);
    background: var(--color-slate-50);
}

.btn-autoplay-toggle.active {
    color: #047857;
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}: 2.5px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.85rem;
    z-index: 21;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(30, 73, 53, 0.25);
    transition: transform 0.2s var(--ease-spring);
}

.before-after-slider:hover .slider-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.val-green {
    color: var(--color-green);
}

.val-blue {
    color: var(--color-blue);
}

.dash-wide-card {
    grid-column: span 2;
    background: var(--color-bg);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.dash-wide-card:hover {
    transform: translateY(-1px);
    border-color: rgba(30, 73, 53, 0.12);
}

.dash-wide-title {
    font-size: 0.82rem;
    color: var(--color-slate-800);
    font-weight: 700;
    margin-bottom: 0.15rem;
    text-align: left;
}

.dash-wide-sub {
    font-size: 0.72rem;
    color: var(--color-slate-500);
    text-align: left;
}

/* ─── ByKine Badge ─── */
.bykine-badge-container {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 5;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.06);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

.bykine-poch {
    display: inline-block;
    animation: pulse 4s ease-in-out infinite;
}

.bykine-poch:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

.bykine-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: 0.75rem;
    color: var(--color-slate-500);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.bykine-badge a {
    color: #d428ff;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.bykine-badge a:hover {
    color: #bc00eb;
}


/* ═══════════════════════════════════════
   VORTEILE (BENTO GRID) SECTION
   ═══════════════════════════════════════ */

.vorteile {
    padding: 7rem 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Ambient background glows */
.glow-vorteile-green {
    position: absolute;
    top: 5%;
    left: -12%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 73, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
}

.glow-vorteile-blue {
    position: absolute;
    bottom: -5%;
    right: -12%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 83, 119, 0.05) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(70px);
    z-index: 0;
}

.vorteile-bg-grass {
    position: absolute;
    inset: 0;
    background: url('./images/grass.png') center/cover no-repeat;
    opacity: 0.04;
    filter: blur(4px);
    transform: scale(1.05);
    pointer-events: none;
    z-index: 0;
}

.grass-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 280px;
    transition: var(--transition-slow);
    box-shadow: 0 20px 50px rgba(30, 73, 53, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    z-index: 1;
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #10b981, #2b5377, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.15);
}

.bento-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
}

.bento-narrow {
    grid-column: span 1;
}

.bento-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 100%;
    z-index: 2;
}

.bento-wide .bento-content {
    max-width: 60%;
}

.bento-visual {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--color-green-light);
    border: 1px solid rgba(30, 73, 53, 0.06);
    flex-shrink: 0;
    z-index: 2;
    transition: var(--transition-slow);
}

/* Hover glow blobs */
.bento-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.card-mehrwert::before {
    background: radial-gradient(circle, rgba(30, 73, 53, 0.06) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.card-fachgerecht::before {
    background: radial-gradient(circle, rgba(43, 83, 119, 0.06) 0%, transparent 70%);
    bottom: -60px;
    right: -60px;
}

.card-netzwerk::before {
    background: radial-gradient(circle, rgba(30, 73, 53, 0.06) 0%, transparent 70%);
    bottom: -60px;
    right: -60px;
}

.card-kommunikation::before {
    background: radial-gradient(circle, rgba(43, 83, 119, 0.06) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 73, 53, 0.1);
    box-shadow: var(--shadow-card-hover);
}

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

.bento-card:hover .bento-visual {
    background: var(--gradient-hero-btn);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(30, 73, 53, 0.15);
}

.bento-bg-icon {
    font-size: 2.5rem;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-slow);
}

.bento-card:hover .bento-bg-icon {
    transform: scale(1.1);
    -webkit-text-fill-color: var(--color-white);
    background: none;
    color: var(--color-white);
}

.bento-card h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-slate-900);
    letter-spacing: -0.3px;
}

.bento-card p {
    font-size: 0.92rem;
    color: var(--color-slate-500);
    line-height: 1.6;
}

/* Category badges */
.bento-badge-inline {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.green-badge {
    background: var(--color-green-light);
    color: var(--color-green);
}

.blue-badge {
    background: var(--color-blue-light);
    color: var(--color-blue);
}

.mixed-badge {
    background: var(--color-blue-light);
    color: var(--color-blue);
}

.slate-badge {
    background: rgba(71, 85, 105, 0.06);
    color: var(--color-slate-500);
}


/* ═══════════════════════════════════════
   DIENSTLEISTUNGEN (SERVICES) SECTION
   ═══════════════════════════════════════ */

.leistungen {
    padding: 7rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.services-slider-wrapper {
    position: relative;
    width: 100%;
}

.services-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2.5rem 1rem;
    margin: -2.5rem -1rem;
    position: relative;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to right, black 93%, transparent 100%);
    mask-image: linear-gradient(to right, black 93%, transparent 100%);
    scroll-snap-type: x mandatory;
    scroll-padding: 0 1rem;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 calc((100% - 4rem) / 2.2);
    min-width: 300px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition-slow);
    box-shadow: 0 20px 50px rgba(30, 73, 53, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #10b981, #2b5377, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-6px);
    border-color: #10b981;
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.18);
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--gradient-hero-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(30, 73, 53, 0.15);
    transition: transform 0.3s var(--ease-spring);
    position: relative;
    z-index: 3;
    margin-top: -38px;
    margin-left: 1.25rem;
    margin-bottom: -2px;
}

.service-card:hover .service-icon-box {
    transform: scale(1.08) rotate(-3deg);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--color-slate-700);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

@media (hover: hover) {
    .slider-arrow:hover {
        background: var(--gradient-hero-btn);
        color: var(--color-white);
        border-color: transparent;
        box-shadow: 0 8px 20px rgba(30, 73, 53, 0.2);
        transform: translateY(-50%) scale(1.05);
    }
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
    background: var(--gradient-hero-btn);
    color: var(--color-white);
    border-color: transparent;
}

.slider-arrow.disabled {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.9);
}

.arrow-left {
    left: -24px;
}

.arrow-right {
    right: -24px;
}

@media (max-width: 1400px) {
    .arrow-left {
        left: -12px;
    }

    .arrow-right {
        right: -12px;
    }
}

/* Service Status Badges */
.service-status {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
}

.status-dot-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: relative;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(30, 73, 53, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(30, 73, 53, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(30, 73, 53, 0);
    }
}

@keyframes pulse-dot-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(43, 83, 119, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(43, 83, 119, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(43, 83, 119, 0);
    }
}

@keyframes pulse-dot-cyan {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(6, 182, 212, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
    }
}

.green-pulse {
    background: var(--color-green);
    animation: pulse-dot 2s infinite;
}

.blue-pulse {
    background: var(--color-blue);
    animation: pulse-dot-blue 2s infinite;
}

.cyan-pulse {
    background: #06b6d4;
    animation: pulse-dot-cyan 2s infinite;
}

.slate-pulse {
    background: var(--color-slate-500);
}

.font-green {
    color: var(--color-green);
}

.font-blue {
    color: var(--color-blue);
}

.font-cyan {
    color: #0891b2;
}

.font-slate {
    color: var(--color-slate-600);
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-slate-900);
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-slate-500);
    line-height: 1.6;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 1.25rem;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-slate-700);
}

.service-bullets li i {
    color: var(--color-green);
    font-size: 0.8rem;
}

/* Service Image Loops */
.service-winter-loop,
.service-garden-loop {
    position: relative;
}

.service-winter-loop img,
.service-garden-loop img {
    position: absolute;
    top: 0;
    left: 0;
}

.service-winter-loop .img-a,
.service-garden-loop .img-a {
    z-index: 2;
    animation: image-fade 3s infinite;
}

.service-winter-loop .img-b,
.service-garden-loop .img-b {
    z-index: 1;
}

@keyframes image-fade {

    0%,
    40% {
        opacity: 1;
    }

    50%,
    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* ═══════════════════════════════════════
   ÜBER UNS (ABOUT) SECTION
   ═══════════════════════════════════════ */

.ueber-uns {
    padding: 8rem 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.glow-about-green {
    position: absolute;
    top: -10%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 73, 53, 0.04) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.glow-about-blue {
    position: absolute;
    bottom: -10%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43, 83, 119, 0.04) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    margin-bottom: 22rem;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.5s var(--ease-out);
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.brand-panel {
    position: absolute;
    bottom: -300px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-premium);
    transition: transform 0.4s var(--ease-out);
    z-index: 10;
}

.brand-panel:hover {
    transform: translateY(-3px);
}

.brand-panel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.brand-panel-header .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

.brand-panel-header .panel-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-green);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.brand-panel h3.founders-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-slate-900);
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.brand-panel h3.founders-title .ampersand {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.6;
    margin: 0 0.2rem;
    transition: transform 0.3s var(--ease-spring), opacity 0.3s ease;
    vertical-align: middle;
}

.brand-panel:hover h3.founders-title .ampersand {
    transform: scale(1.1) rotate(6deg);
    opacity: 1;
}

.panel-desc {
    font-size: 0.95rem;
    color: var(--color-slate-500);
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 1.5rem;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.about-stat-item .stat-number {
    font-family: var(--font-title);
    font-size: 1.85rem;
    font-weight: 800;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat-item .stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(15, 23, 42, 0.06);
}

/* Right side: Story & Pillars */
.about-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-right h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-slate-900);
    letter-spacing: -0.75px;
    margin-bottom: 1.25rem;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--color-slate-600);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 2rem;
}

.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
}

.pillar-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--color-green-light);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.pillar-item:hover .pillar-icon {
    background: var(--gradient-hero-btn);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 73, 53, 0.15);
}

.pillar-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pillar-text h4 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-slate-900);
    letter-spacing: -0.2px;
}

.pillar-text p {
    font-size: 0.9rem;
    color: var(--color-slate-500);
    line-height: 1.6;
}


/* ═══════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════ */

.faq {
    position: relative;
    padding: 7rem 0;
    background: var(--color-white);
}

.faq-accordion {
    max-width: 720px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--color-bg);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(30, 73, 53, 0.08);
    box-shadow: var(--shadow-sm);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-toggle span {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-slate-800);
    transition: var(--transition-fast);
}

.faq-toggle i {
    font-size: 0.85rem;
    color: var(--color-slate-400);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle[aria-expanded="true"] span {
    color: var(--color-green);
}

.faq-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--color-green);
}

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

.faq-content p {
    padding: 0 1.75rem 1.25rem;
    font-size: 0.92rem;
    color: var(--color-slate-500);
    line-height: 1.65;
}


/* ═══════════════════════════════════════
   KONTAKT SECTION & PLZ CHECKER
   ═══════════════════════════════════════ */

.kontakt {
    position: relative;
    padding: 7rem 0;
    background: var(--color-bg);
    overflow: hidden;
}

/* Sleek Centered Kontakt Card */
.kontakt-card-sleek {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    position: relative;
}

.kontakt-card-sleek::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #10b981, #1E4935, #10b981);
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
}

.sleek-contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sleek-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sleek-detail-item i {
    font-size: 1.1rem;
    color: #10b981;
    width: 38px;
    height: 38px;
    background: rgba(240, 253, 244, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sleek-detail-item span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.1rem;
}

.sleek-detail-item p,
.sleek-detail-item a {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-slate-800);
    text-decoration: none;
    margin: 0;
    transition: var(--transition-fast);
}

.sleek-detail-item a:hover {
    color: #10b981;
}

.sleek-divider {
    height: 1px;
    background: rgba(16, 185, 129, 0.1);
    margin: 1.75rem 0;
}

.sleek-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sleek-plz-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 1;
}

.sleek-plz-wrapper > span {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-slate-700);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.sleek-plz-wrapper > span i {
    color: #10b981;
}

.plz-input-wrapper {
    display: flex;
    gap: 0.6rem;
}

.plz-input-wrapper input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--color-slate-200);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-slate-800);
    outline: none;
    transition: var(--transition-fast);
    background: #f8fafc;
}

.plz-input-wrapper input:focus {
    border-color: #10b981;
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}

.btn-plz {
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-plz:hover {
    background: var(--color-green-dark);
    box-shadow: 0 2px 10px rgba(30, 73, 53, 0.15);
}

.plz-result {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.5;
    display: none;
    align-items: flex-start;
    gap: 0.6rem;
}

.plz-result i {
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.plz-result.success {
    display: flex;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: #065f46;
}

.plz-result.success i {
    color: #10b981;
}

.plz-result.warning {
    display: flex;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: #78350f;
}

.plz-result.warning i {
    color: #f59e0b;
}

.plz-result.error {
    display: flex;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #7f1d1d;
}

.plz-result.error i {
    color: #ef4444;
}

.sleek-cta-wrapper {
    display: flex;
    justify-content: flex-end;
}

.sleek-cta-wrapper .btn-glow {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
}

/* Responsive Sleek Card */
@media (max-width: 992px) {
    .sleek-action-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sleek-cta-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sleek-contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .kontakt-card-sleek {
        padding: 1.5rem;
    }
}


/* ─── Multi-Step Form ─── */
.kontakt-form-wrapper {
    position: relative;
}

.form-card {
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    min-height: 460px;
    display: flex;
    flex-direction: column;
}

.form-progress {
    position: relative;
    margin-bottom: 2rem;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-slate-200);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-green);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.4s var(--ease-out);
    border-radius: 2px;
}

.progress-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-slate-200);
    color: var(--color-slate-400);
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-indicator.active {
    border-color: var(--color-green);
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(30, 73, 53, 0.12);
}

.form-step {
    display: none;
    flex-direction: column;
    flex: 1;
}

.form-step.active {
    display: flex;
    animation: fadeInStep 0.35s var(--ease-out) forwards;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.form-step h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--color-slate-500);
    margin-bottom: 1.75rem;
}

/* Service checkbox cards */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-checkbox-card {
    cursor: pointer;
    position: relative;
}

.service-checkbox-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-card-content {
    background: var(--color-bg);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    transition: var(--transition);
}

.checkbox-card-content i {
    font-size: 1.5rem;
    color: var(--color-slate-400);
    transition: var(--transition);
}

.checkbox-card-content span {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--color-slate-600);
    transition: var(--transition);
}

.service-checkbox-card input:checked+.checkbox-card-content {
    background: var(--color-green-light);
    border-color: var(--color-green);
    box-shadow: 0 4px 14px rgba(30, 73, 53, 0.06);
}

.service-checkbox-card input:checked+.checkbox-card-content i {
    color: var(--color-green);
    transform: scale(1.05);
}

.service-checkbox-card input:checked+.checkbox-card-content span {
    color: var(--color-green-dark);
}

/* Form fields */
.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-slate-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-slate-200);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-slate-800);
    outline: none;
    transition: var(--transition-fast);
    background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-green);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(30, 73, 53, 0.06);
}

.form-group textarea {
    resize: none;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.25rem;
}

.btn-next,
.btn-prev,
.btn-submit {
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    transition: var(--transition);
}

.btn-submit {
    background: var(--gradient-hero-btn);
    box-shadow: 0 4px 14px rgba(30, 73, 53, 0.2);
    color: var(--color-white);
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 73, 53, 0.3);
}

/* Success panel */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    animation: fadeInStep 0.35s var(--ease-out) forwards;
}

.form-success.active {
    display: flex;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--color-green);
    margin-bottom: 1.25rem;
    animation: bounceIn 0.5s var(--ease-spring);
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.4);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-success h3 {
    font-family: var(--font-title);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 0.4rem;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--color-slate-500);
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 1.75rem;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
    background: var(--color-slate-950);
    color: var(--color-slate-400);
    padding: 5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.footer-logo {
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--color-slate-400);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links-col h4 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.1px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col a {
    text-decoration: none;
    color: var(--color-slate-400);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links-col a:hover {
    color: var(--color-green-mid);
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.75rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-slate-500);
}


/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE FIRST OVERRIDES
   ═══════════════════════════════════════ */

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    nav {
        padding: 0 5%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .dashboard-mockup {
        max-width: 480px;
        margin: 0 auto;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .bento-card {
        grid-column: span 1 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 2rem 1.75rem;
        min-height: auto;
        gap: 1.25rem;
    }

    .bento-wide .bento-content {
        max-width: 100%;
    }

    .bento-visual {
        width: 64px !important;
        height: 64px !important;
        align-self: flex-start !important;
        border-radius: var(--radius-md) !important;
    }

    .bento-bg-icon {
        font-size: 2rem !important;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .vorteile,
    .leistungen {
        padding: 5rem 0;
    }

    /* Services responsive */
    html,
    body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }

    .services-grid {
        gap: 1.25rem;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .service-card {
        flex: 0 0 calc(100% - 3rem);
        padding: 2rem 1.75rem;
    }

    .service-card h3 {
        font-size: 1.45rem;
    }

    .slider-arrow {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .arrow-left {
        left: 8px;
    }

    .arrow-right {
        right: 8px;
    }

    /* About responsive */
    .ueber-uns {
        padding: 5rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .brand-panel {
        padding: 1.75rem 1.5rem;
        bottom: -240px;
        left: 12px;
        right: 12px;
    }

    .about-image-wrapper {
        height: 420px;
        margin-bottom: 17rem;
    }

    .about-right h2 {
        font-size: 2rem;
    }

    /* FAQ & Kontakt responsive */
    .faq,
    .kontakt {
        padding: 5rem 0;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: -0.75px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-glow,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .dash-grid {
        grid-template-columns: 1fr;
    }

    .dash-wide-card {
        grid-column: span 1;
    }

    .bykine-badge-container {
        bottom: 0.75rem;
    }

    .form-card {
        padding: 1.75rem;
    }

    .services-checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .faq-toggle {
        padding: 1rem 1.25rem;
    }

    .faq-content p {
        padding: 0 1.25rem 1rem;
    }
}

/* Homepage Kontakt CTA Card */
.kontakt-cta-wrapper {
    position: relative;
}

.kontakt-cta-card {
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.kontakt-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 73, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-green-light);
    color: var(--color-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.kontakt-cta-card h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-slate-900);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.cta-desc {
    font-size: 0.95rem;
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.cta-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.cta-feature-item i {
    color: var(--color-green);
    font-size: 1.05rem;
}

.cta-action-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.btn-hero-action {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

.cta-subnote {
    font-size: 0.78rem;
    color: var(--color-slate-500);
    text-align: center;
    display: block;
}

.cta-subnote i {
    color: var(--color-green);
}

/* ═══════════════════════════════════════
   STANDALONE PROJEKTANFRAGE PAGE (ANFRAGE.HTML) - ULTRA MODERN
   ═══════════════════════════════════════ */

body.anfrage-page {
    background: #f8fafc;
    position: relative;
}

.anfrage-glow-top {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(30, 73, 53, 0.08) 0%, rgba(43, 83, 119, 0.05) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.anfrage-glow-bottom {
    position: absolute;
    bottom: 50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 83, 119, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.anfrage-nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-back-link {
    text-decoration: none;
    color: var(--color-slate-600);
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.nav-back-link:hover {
    color: var(--color-green);
    transform: translateX(-2px);
}

.nav-phone-badge {
    text-decoration: none;
    background: var(--color-green-light);
    color: var(--color-green);
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(30, 73, 53, 0.1);
    transition: var(--transition);
}

.nav-phone-badge:hover {
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(30, 73, 53, 0.2);
}

.anfrage-main {
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 2;
}

.hero-express-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 73, 53, 0.15);
    color: var(--color-green-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    margin-bottom: 1.25rem;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

.anfrage-header h1 {
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--color-slate-900);
    letter-spacing: -1px;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.anfrage-subtitle {
    font-size: 1.1rem;
    color: var(--color-slate-600);
    line-height: 1.65;
    max-width: 650px;
    margin: 0 auto;
}

/* Metrics bar */
.anfrage-metrics-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-xl);
    padding: 0.85rem 2.25rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metric-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--color-green-light);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.metric-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.metric-text strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-slate-900);
    line-height: 1.2;
}

.metric-text span {
    font-size: 0.72rem;
    color: var(--color-slate-500);
}

.metric-divider {
    width: 1px;
    height: 28px;
    background: rgba(15, 23, 42, 0.08);
}

/* Stepper Head */
.wizard-stepper-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.stepper-track-bg {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--color-slate-200);
    z-index: 1;
    border-radius: 2px;
}

.stepper-track-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-hero-btn);
    transition: width 0.4s var(--ease-out);
    border-radius: 2px;
}

.stepper-node {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
}

.node-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-slate-200);
    color: var(--color-slate-400);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.node-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--color-slate-400);
    transition: var(--transition);
}

.stepper-node.active .node-circle {
    border-color: var(--color-green);
    background: var(--gradient-hero-btn);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(30, 73, 53, 0.25);
}

.stepper-node.active .node-title {
    color: var(--color-slate-900);
}

/* Service Card Highlighting */
.card-inner.highlight-border {
    border-color: rgba(30, 73, 53, 0.3);
    background: rgba(30, 73, 53, 0.02);
}

.service-icon.green-bg {
    background: var(--color-green-light);
    color: var(--color-green);
}

/* Preview Header */
.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.quality-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-green);
    background: var(--color-green-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.btn-wizard-next {
    padding: 0.95rem 2.25rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

/* Layout Grid */
.anfrage-wizard-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

.anfrage-card {
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

/* Step content */
.wizard-step-content {
    display: none;
    flex-direction: column;
    flex: 1;
}

.wizard-step-content.active {
    display: flex;
    animation: fadeInStep 0.35s var(--ease-out) forwards;
}

.step-title-box {
    margin-bottom: 2rem;
}

.step-title-box h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 0.3rem;
}

.step-title-box p {
    font-size: 0.92rem;
    color: var(--color-slate-500);
}

/* Service Cards in Step 1 */
.service-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.selectable-service-card {
    cursor: pointer;
    position: relative;
}

.selectable-service-card.full-width {
    grid-column: span 2;
}

.selectable-service-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-inner {
    background: var(--color-bg);
    border: 1.5px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 84px;
    transition: var(--transition);
    position: relative;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-slate-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin: 0;
    line-height: 1.3;
}

.service-info p {
    font-size: 0.82rem;
    color: var(--color-slate-500);
    line-height: 1.4;
}

.checkbox-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--color-slate-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.75rem;
    transition: var(--transition);
}

.selectable-service-card input:checked+.card-inner {
    background: var(--color-green-light);
    border-color: var(--color-green);
    box-shadow: 0 4px 18px rgba(30, 73, 53, 0.08);
}

.selectable-service-card input:checked+.card-inner .service-icon {
    background: var(--gradient-hero-btn);
    color: var(--color-white);
}

.selectable-service-card input:checked+.card-inner .checkbox-indicator {
    background: var(--color-green);
    border-color: var(--color-green);
}

/* Step 2 Section Cards & Grids */
.step2-section-card {
    background: var(--color-bg);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.step2-section-card:hover {
    border-color: rgba(30, 73, 53, 0.15);
}

.step2-section-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-slate-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step2-section-title i {
    color: var(--color-green);
    font-size: 1rem;
}

/* Object Grid Select */
.object-grid-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.object-select-card {
    cursor: pointer;
}

.object-select-card input {
    display: none;
}

.object-card-inner {
    background: var(--color-white);
    border: 1.5px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition);
}

.object-card-inner i {
    font-size: 1.2rem;
    color: var(--color-slate-400);
    transition: var(--transition);
}

.object-card-inner span {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.object-select-card input:checked+.object-card-inner {
    background: var(--color-green-light);
    border-color: var(--color-green);
    box-shadow: 0 4px 14px rgba(30, 73, 53, 0.08);
}

.object-select-card input:checked+.object-card-inner i {
    color: var(--color-green);
    transform: scale(1.1);
}

.object-select-card input:checked+.object-card-inner span {
    color: var(--color-green-dark);
}

/* Clean Size Pills */
.size-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.clean-size-pill {
    cursor: pointer;
}

.clean-size-pill input {
    display: none;
}

.pill-inner {
    background: var(--color-white);
    border: 1.5px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 0.85rem 0.5rem;
    text-align: center;
    transition: var(--transition);
}

.pill-main {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-slate-800);
    display: block;
}

.clean-size-pill input:checked+.pill-inner {
    background: var(--color-green-light);
    border-color: var(--color-green);
    box-shadow: 0 4px 14px rgba(30, 73, 53, 0.08);
}

.clean-size-pill input:checked+.pill-inner .pill-main {
    color: var(--color-green);
}

/* ═══════════════════════════════════════
   STANDALONE PROJEKTANFRAGE PAGE (ANFRAGE.HTML) - VIBRANT LIGHT GLASS THEME
   ═══════════════════════════════════════ */

body.anfrage-page {
    background: linear-gradient(135deg, #f0fdf4 0%, #f1f5f9 50%, #eff6ff 100%);
    color: #0f172a;
    position: relative;
}

/* Vibrant glowing background mesh blobs */
.anfrage-glow-top {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.22) 0%, rgba(43, 83, 119, 0.12) 45%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.anfrage-glow-bottom {
    position: absolute;
    top: 450px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(30, 73, 53, 0.12) 50%, transparent 75%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

/* Tech grid line pattern */
body.anfrage-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 73, 53, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 73, 53, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: 0;
}

/* Nav Bar in Vibrant Light Mode */
body.anfrage-page nav.anfrage-nav {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(30, 73, 53, 0.1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

body.anfrage-page .nav-logo img {
    filter: none;
}

body.anfrage-page .nav-back-link {
    color: var(--color-slate-600);
    font-weight: 700;
}

body.anfrage-page .nav-back-link:hover {
    color: #10b981;
}

body.anfrage-page .nav-phone-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border: 1.5px solid rgba(16, 185, 129, 0.3);
    font-weight: 800;
}

body.anfrage-page .nav-phone-badge:hover {
    background: linear-gradient(135deg, #10b981, #047857);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

/* Header Typography inside Anfrage Hero (Dark themed) */
.anfrage-hero {
    width: 100%;
    background: linear-gradient(135deg, #1E4935 0%, #0f2b1e 100%);
    position: relative;
    padding: 9.5rem 0 6rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    overflow: hidden;
}

/* Subtle pattern overlay inside dark hero (Math notebook design) */
.anfrage-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.anfrage-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 43, 30, 0.65); /* Dark green video filter overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

body.anfrage-page .anfrage-header {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0;
    text-align: left;
}

body.anfrage-page .hero-express-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #34d399;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    margin-bottom: 1.5rem;
}

body.anfrage-page .anfrage-header h1 {
    font-family: var(--font-title);
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

body.anfrage-page .anfrage-header h1 span.green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.anfrage-page .anfrage-subtitle {
    color: var(--color-slate-300);
    font-weight: 500;
    line-height: 1.6;
}

/* Dark themed Metrics Bar for the Hero area */
body.anfrage-page .anfrage-metrics-bar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    margin-top: 2.25rem;
}

body.anfrage-page .metric-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

body.anfrage-page .metric-text strong {
    color: #ffffff;
}

body.anfrage-page .metric-text span {
    color: var(--color-slate-300);
}

body.anfrage-page .metric-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* Main Cards in Vibrant Light Glassmorphism */
body.anfrage-page .anfrage-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 60px rgba(30, 73, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
}

/* Glowing top accent gradient bar */
body.anfrage-page .anfrage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #2b5377, #10b981);
    z-index: 5;
}

/* Stepper Track in Light Mode */
body.anfrage-page .stepper-track-bg {
    background: #e2e8f0;
}

body.anfrage-page .node-circle {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #64748b;
}

body.anfrage-page .node-title {
    color: #64748b;
    font-weight: 700;
}

body.anfrage-page .stepper-node.active .node-circle {
    background: linear-gradient(135deg, #10b981, #047857);
    border-color: #059669;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

body.anfrage-page .stepper-node.active .node-title {
    color: #0f172a;
    font-weight: 800;
}

/* Step Title Headings */
body.anfrage-page .step-title-box h2 {
    color: #0f172a;
}

body.anfrage-page .step-title-box p {
    color: #475569;
}

/* Service Cards (Step 1) in Vibrant Light Mode */
body.anfrage-page .card-inner {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

body.anfrage-page .card-inner:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.12);
}

body.anfrage-page .service-icon {
    background: #f1f5f9;
    color: #047857;
    box-shadow: none;
}

body.anfrage-page .service-info h3 {
    color: #0f172a;
}

body.anfrage-page .checkbox-indicator {
    border-color: #cbd5e1;
}

/* ACTIVE SELECTED SERVICE CARD - VIBRANT GREEN GRADIENT */
body.anfrage-page .selectable-service-card input:checked+.card-inner {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border: 2px solid #059669;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

body.anfrage-page .selectable-service-card input:checked+.card-inner .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

body.anfrage-page .selectable-service-card input:checked+.card-inner .service-info h3 {
    color: #ffffff;
}

body.anfrage-page .selectable-service-card input:checked+.card-inner .checkbox-indicator {
    background: #ffffff;
    border-color: #ffffff;
    color: #047857;
}

/* Step 2 Section Cards in Light Mode */
body.anfrage-page .step2-section-card {
    background: rgba(248, 250, 252, 0.8);
    border: 1.5px solid #e2e8f0;
}

body.anfrage-page .step2-section-title {
    color: #0f172a;
    font-weight: 800;
}

body.anfrage-page .step2-section-title i {
    color: #10b981;
}

/* Object Select Cards */
body.anfrage-page .object-card-inner {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
}

body.anfrage-page .object-card-inner i {
    color: #64748b;
}

body.anfrage-page .object-card-inner span {
    color: #1e293b;
    font-weight: 700;
}

body.anfrage-page .object-select-card input:checked+.object-card-inner {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border: 2px solid #059669;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

body.anfrage-page .object-select-card input:checked+.object-card-inner i,
body.anfrage-page .object-select-card input:checked+.object-card-inner span {
    color: #ffffff;
}

/* Clean Size Pills in Light Mode */
body.anfrage-page .pill-inner {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
}

body.anfrage-page .pill-main {
    color: #0f172a;
}

body.anfrage-page .clean-size-pill input:checked+.pill-inner {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border: 2px solid #059669;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

body.anfrage-page .clean-size-pill input:checked+.pill-inner .pill-main {
    color: #ffffff;
}

/* Turnus Cards in Light Mode */
body.anfrage-page .turnus-inner {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
}

body.anfrage-page .turnus-inner i {
    color: #64748b;
}

body.anfrage-page .turnus-inner span {
    color: #1e293b;
    font-weight: 700;
}

body.anfrage-page .turnus-card input:checked+.turnus-inner {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border: 2px solid #059669;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

body.anfrage-page .turnus-card input:checked+.turnus-inner i,
body.anfrage-page .turnus-card input:checked+.turnus-inner span {
    color: #ffffff;
}

/* PLZ Inline Input in Light Mode */
body.anfrage-page .plz-inline-input input {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
}

body.anfrage-page .plz-inline-input input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

body.anfrage-page .btn-plz-check {
    background: linear-gradient(135deg, #10b981, #047857);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

body.anfrage-page .btn-plz-check:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Upload Dropzone in Light Mode */
body.anfrage-page .upload-advantage-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid rgba(16, 185, 129, 0.25);
}

body.anfrage-page .advantage-icon {
    color: #047857;
}

body.anfrage-page .advantage-text strong {
    color: #047857;
}

body.anfrage-page .advantage-text p {
    color: #334155;
}

body.anfrage-page .upload-dropzone {
    background: #ffffff;
    border: 2px dashed #10b981;
}

body.anfrage-page .upload-dropzone:hover,
body.anfrage-page .upload-dropzone.dragover {
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

body.anfrage-page .dropzone-icon {
    color: #10b981;
}

body.anfrage-page .dropzone-content h3 {
    color: #0f172a;
}

body.anfrage-page .dropzone-content p {
    color: #64748b;
}

body.anfrage-page .btn-upload-trigger {
    background: linear-gradient(135deg, #10b981, #047857);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Form Inputs (Step 4) in Light Mode - Styled 1to1 like the Kontakt form */
body.anfrage-page .form-input-group label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-500);
    margin-bottom: 0.6rem;
    display: block;
}

body.anfrage-page .form-input-group input,
body.anfrage-page .form-select-custom,
body.anfrage-page textarea#anfrageDetails {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
    color: var(--color-slate-900);
    outline: none;
    transition: all 0.3s ease;
}

body.anfrage-page .form-input-group input:focus,
body.anfrage-page .form-select-custom:focus,
body.anfrage-page textarea#anfrageDetails:focus {
    border-color: var(--color-green-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

body.anfrage-page .dsgvo-label {
    color: var(--color-slate-600);
}

body.anfrage-page .dsgvo-label a {
    color: var(--color-green);
}

/* Buttons in Light Mode */
body.anfrage-page .btn-outline {
    background: var(--color-white);
    border-color: var(--color-slate-200);
    color: var(--color-slate-800);
}

body.anfrage-page .btn-outline:hover {
    background: var(--color-slate-100);
    border-color: var(--color-slate-300);
}

/* Buttons in Light Mode inherit global .btn-glow styles */

/* Sidebar Summary Card in Light Glassmorphism */
body.anfrage-page .summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-lg);
}

body.anfrage-page .summary-header {
    border-bottom-color: var(--color-slate-100);
}

body.anfrage-page .summary-header i {
    color: var(--color-green);
}

body.anfrage-page .summary-header h3 {
    color: var(--color-slate-900);
}

body.anfrage-page .summary-label {
    color: var(--color-slate-400);
}

body.anfrage-page .summary-value {
    color: var(--color-slate-800);
}

body.anfrage-page .summary-value.highlight {
    color: var(--color-green);
}

body.anfrage-page .sum-tag {
    background: var(--color-green-light);
    color: var(--color-green-dark);
    border: 1px solid rgba(30, 73, 53, 0.1);
}

body.anfrage-page .summary-direct-contact {
    border-top-color: var(--color-slate-100);
}

body.anfrage-page .summary-direct-contact h4 {
    color: var(--color-slate-400);
}

body.anfrage-page .mini-info strong {
    color: var(--color-slate-900);
}

body.anfrage-page .mini-info span {
    color: var(--color-slate-500);
}

body.anfrage-page .mini-phone {
    color: var(--color-slate-800);
}

body.anfrage-page .mini-phone a {
    color: var(--color-green);
}

/* Success Screen in Light Mode */
body.anfrage-page .wizard-success-screen h2 {
    color: var(--color-slate-900);
}

body.anfrage-page .success-ref-code {
    color: var(--color-slate-600);
}

body.anfrage-page .success-ref-code strong {
    background: var(--color-green-light);
    color: var(--color-green);
    border: 1px solid rgba(30, 73, 53, 0.15);
}

body.anfrage-page .success-desc {
    color: var(--color-slate-600);
}

body.anfrage-page .timeline-content strong {
    color: var(--color-slate-800);
}

body.anfrage-page .timeline-content span {
    color: var(--color-slate-500);
}

body.anfrage-page .timeline-dot {
    background: var(--color-slate-200);
    color: var(--color-slate-600);
}

body.anfrage-page .timeline-step.done .timeline-dot {
    background: var(--color-green);
    color: var(--color-white);
}

body.anfrage-page .timeline-step.active .timeline-dot {
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 0 15px rgba(43, 83, 119, 0.3);
}

/* Turnus Pill Grid */
.turnus-pill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.turnus-card {
    cursor: pointer;
}

.turnus-card input {
    display: none;
}

.turnus-inner {
    background: var(--color-white);
    border: 1.5px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.turnus-inner i {
    font-size: 1rem;
    color: var(--color-slate-400);
    transition: var(--transition);
}

.turnus-inner span {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.turnus-card input:checked+.turnus-inner {
    background: var(--color-green-light);
    border-color: var(--color-green);
    box-shadow: 0 4px 14px rgba(30, 73, 53, 0.08);
}

.turnus-card input:checked+.turnus-inner i {
    color: var(--color-green);
    transform: scale(1.1);
}

.turnus-card input:checked+.turnus-inner span {
    color: var(--color-green-dark);
}

/* Radio Pill Group in Step 2 */
.form-group-block {
    margin-bottom: 2rem;
}

.form-label-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-slate-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.radio-pill-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.radio-pill {
    cursor: pointer;
}

.radio-pill input {
    display: none;
}

.radio-pill span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-slate-200);
    background: var(--color-bg);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-slate-700);
    transition: var(--transition);
}

.radio-pill input:checked+span {
    background: var(--color-green-light);
    border-color: var(--color-green);
    color: var(--color-green-dark);
}

/* Size select grid */
.size-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.size-card {
    cursor: pointer;
}

.size-card input {
    display: none;
}

.size-card-inner {
    background: var(--color-bg);
    border: 1.5px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    padding: 1rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: var(--transition);
}

.size-val {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-slate-900);
}

.size-desc {
    font-size: 0.72rem;
    color: var(--color-slate-500);
}

.size-card input:checked+.size-card-inner {
    background: var(--color-green-light);
    border-color: var(--color-green);
    box-shadow: 0 4px 15px rgba(30, 73, 53, 0.08);
}

.size-card input:checked+.size-card-inner .size-val {
    color: var(--color-green);
}

/* Inline PLZ Check Block */
.plz-check-block {
    background: var(--color-slate-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.plz-inline-input {
    display: flex;
    gap: 0.75rem;
}

.plz-inline-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-slate-200);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-slate-800);
    outline: none;
    background: var(--color-white);
}

.btn-plz-check {
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-plz-check:hover {
    background: var(--color-green-dark);
}

.plz-inline-result {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.plz-inline-result.success {
    display: flex;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.plz-inline-result.warning {
    display: flex;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #78350f;
}

.plz-inline-result.error {
    display: flex;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #7f1d1d;
}

.form-select-custom {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-slate-200);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-slate-800);
    background: var(--color-bg);
    outline: none;
}

/* Upload Advantage Box in Step 3 */
.upload-advantage-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(30, 73, 53, 0.06);
    border: 1px solid rgba(30, 73, 53, 0.15);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.advantage-icon {
    font-size: 1.4rem;
    color: var(--color-green);
    margin-top: 0.1rem;
}

.advantage-text strong {
    display: block;
    color: var(--color-green-dark);
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.advantage-text p {
    font-size: 0.88rem;
    color: var(--color-slate-600);
    margin: 0;
    line-height: 1.5;
}

/* Upload Dropzone */
.upload-dropzone {
    border: 2px dashed var(--color-slate-300);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    background: var(--color-bg);
    cursor: pointer;
    transition: var(--transition);
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
    border-color: var(--color-green);
    background: var(--color-green-light);
}

.file-input-hidden {
    display: none;
}

.dropzone-icon {
    font-size: 3rem;
    color: var(--color-green);
    margin-bottom: 0.75rem;
}

.dropzone-content h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-slate-800);
    margin-bottom: 0.25rem;
}

.dropzone-content p {
    font-size: 0.85rem;
    color: var(--color-slate-500);
    margin-bottom: 1.25rem;
}

.btn-upload-trigger {
    background: var(--gradient-hero-btn);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(30, 73, 53, 0.15);
    transition: var(--transition);
}

.btn-upload-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30, 73, 53, 0.25);
}

/* Upload Previews */
.upload-preview-container {
    margin-top: 1.5rem;
    display: none;
}

.upload-preview-container h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-slate-800);
    margin-bottom: 1rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.preview-image-card {
    background: var(--color-bg);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.preview-image-card .img-wrapper {
    height: 100px;
    width: 100%;
    position: relative;
}

.preview-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-remove-img {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.btn-remove-img:hover {
    transform: scale(1.15);
}

.img-meta {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
}

.img-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-slate-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-size {
    font-size: 0.68rem;
    color: var(--color-slate-400);
}

/* Step 4 Form Grid */
.form-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

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

.form-input-group label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--color-slate-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input-group input {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-slate-200);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-slate-800);
    background: var(--color-bg);
    outline: none;
    transition: var(--transition-fast);
}

.form-input-group input:focus {
    border-color: var(--color-green);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(30, 73, 53, 0.08);
}

.dsgvo-checkbox-group {
    margin: 1.5rem 0;
}

.dsgvo-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-slate-600);
    line-height: 1.5;
}

.dsgvo-label input {
    margin-top: 0.2rem;
}

/* Wizard Navigation Buttons */
.wizard-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

/* Success Screen */
.wizard-success-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeInStep 0.4s var(--ease-out) forwards;
}

.success-icon-animated {
    font-size: 4.5rem;
    color: var(--color-green);
    margin-bottom: 1rem;
    animation: bounceIn 0.6s var(--ease-spring);
}

.wizard-success-screen h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 0.4rem;
}

.success-ref-code {
    font-size: 0.95rem;
    color: var(--color-slate-600);
    margin-bottom: 1rem;
}

.success-ref-code strong {
    background: var(--color-green-light);
    color: var(--color-green);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 1.05rem;
}

.success-desc {
    font-size: 0.98rem;
    color: var(--color-slate-600);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Timeline */
.success-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.4;
}

.timeline-step.done,
.timeline-step.active {
    opacity: 1;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-slate-200);
    color: var(--color-slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.timeline-step.done .timeline-dot {
    background: var(--color-green);
    color: var(--color-white);
}

.timeline-step.active .timeline-dot {
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(43, 83, 119, 0.15);
}

.timeline-content {
    display: flex;
    flex-direction: column;
}

.timeline-content strong {
    font-size: 0.92rem;
    color: var(--color-slate-800);
}

.timeline-content span {
    font-size: 0.78rem;
    color: var(--color-slate-500);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar Summary Card */
.anfrage-sidebar {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--color-slate-100);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.summary-header i {
    font-size: 1.1rem;
    color: var(--color-green);
}

.summary-header h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-slate-900);
}

.summary-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.summary-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--color-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.summary-value.highlight {
    color: var(--color-green);
}

.sum-tag {
    display: inline-block;
    background: var(--color-green-light);
    color: var(--color-green-dark);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin-top: 0.2rem;
    margin-right: 0.2rem;
}

.summary-direct-contact {
    border-top: 1px solid var(--color-slate-100);
    padding-top: 1.25rem;
}

.summary-direct-contact h4 {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.contact-founder-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.mini-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--color-green);
}

.mini-info {
    display: flex;
    flex-direction: column;
}

.mini-info strong {
    font-size: 0.82rem;
    color: var(--color-slate-900);
    line-height: 1.2;
}

.mini-info span {
    font-size: 0.72rem;
    color: var(--color-slate-500);
}

.mini-phone {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.mini-phone a {
    color: var(--color-green);
    text-decoration: none;
}

/* Responsive Overrides for anfrage.html */
@media (max-width: 992px) {
    .anfrage-wizard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .anfrage-sidebar {
        position: static;
    }

    .service-selection-grid {
        grid-template-columns: 1fr;
    }

    .selectable-service-card.full-width {
        grid-column: span 1;
    }

    .size-select-grid {
        grid-template-columns: 1fr 1fr;
    }

    .anfrage-card {
        padding: 2rem 1.5rem;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }

    .step-label {
        font-size: 0.68rem;
    }
}

@media (max-width: 576px) {
    .form-input-grid {
        grid-template-columns: 1fr;
    }

    .plz-inline-input {
        flex-direction: column;
    }

    .size-select-grid {
        grid-template-columns: 1fr;
    }

    .wizard-nav-buttons {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .wizard-nav-buttons button {
        width: 100%;
        justify-content: center;
    }

    .anfrage-nav-actions .nav-back-link span {
        display: none;
    }
}

.nav-logo,
.nav-logo:hover,
.nav-logo:focus,
.nav-logo:active {
    text-decoration: none !important;
}

/* --- Premium Inquiry Notes Textarea --- */
.notes-premium-card {
    background: var(--color-white) !important;
    border: 1.5px solid var(--color-slate-200) !important;
    border-radius: var(--radius-lg) !important;
    padding: 1.75rem !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02) !important;
    transition: var(--transition) !important;
}

.notes-premium-card:hover {
    border-color: rgba(16, 185, 129, 0.25) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.04) !important;
}

.notes-premium-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-slate-900) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.notes-premium-label i {
    color: #1E4935;
    font-size: 1rem;
}

.notes-premium-label .optional-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-slate-400);
    text-transform: none;
    letter-spacing: 0;
    margin-left: auto;
}

body.anfrage-page textarea#anfrageDetails {
    width: 100%;
    min-height: 110px;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--color-slate-200);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-slate-800);
    background: var(--color-bg);
    outline: none;
    resize: vertical;
    transition: var(--transition-fast);
}

body.anfrage-page textarea#anfrageDetails:focus {
    border-color: #10b981 !important;
    background: var(--color-white) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
}

/* --- Hero Trust Badge Row --- */
.hero-trust-row {
    grid-column: span 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1.5px solid rgba(15, 23, 42, 0.05);
}

.trust-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 20px rgba(30, 73, 53, 0.04);
    transition: all 0.25s var(--ease-out);
}

.trust-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.06);
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-green);
    flex-shrink: 0;
    transition: all 0.25s var(--ease-out);
}

.trust-card:hover .trust-icon {
    transform: scale(1.08);
}

.trust-icon.google-icon {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.trust-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-slate-900);
}

.rating-stars {
    display: flex;
    gap: 0.1rem;
    color: #f59e0b;
    font-size: 0.75rem;
}

.trust-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-slate-500);
    line-height: 1.3;
}

.trust-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-slate-900);
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

@media (max-width: 992px) {
    .hero-trust-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }
}

@media (max-width: 576px) {
    .trust-card {
        padding: 1rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .trust-content {
        align-items: center;
        text-align: center;
    }
    .trust-rating {
        justify-content: center;
    }
}

/* ==========================================================================
   KONTAKT PAGE STYLES (kontakt.html)
   ========================================================================== */
.kontakt-page {
    background-color: var(--color-slate-50);
    position: relative;
    overflow-x: hidden;
}

.kontakt-main {
    padding: 5rem 0 8rem 0;
    position: relative;
    z-index: 2;
}

.kontakt-hero {
    width: 100%;
    background: linear-gradient(135deg, #1E4935 0%, #0f2b1e 100%);
    position: relative;
    padding: 9.5rem 0 6rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    overflow: hidden;
}

.kontakt-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 43, 30, 0.65); /* Dark corporate green overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

/* Subtle pattern overlay inside dark hero */
.kontakt-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.kontakt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.kontakt-hero-content h1 {
    font-family: var(--font-title);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.kontakt-hero-content h1 span.green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.kontakt-hero-content .kontakt-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--color-slate-300);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.kontakt-cta-box {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.kontakt-cta-box .cta-question {
    font-size: 0.95rem;
    color: var(--color-slate-300);
    font-weight: 600;
}

.kontakt-cta-box .inline-cta-btn {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kontakt-info-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(30, 73, 53, 0.04);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.08);
}

.kontakt-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.kontakt-card-content h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
}

.kontakt-card-content p {
    font-size: 0.9rem;
    color: var(--color-slate-500);
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.kontakt-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-green-700);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.kontakt-link:hover {
    color: var(--color-green-500);
}

.kontakt-form-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 30px 70px rgba(30, 73, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.kontakt-form-card h2 {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.kontakt-form-card .form-desc {
    color: var(--color-slate-500);
    margin-bottom: 2.25rem;
    font-size: 0.95rem;
}

.kontakt-form-card .form-input-group label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-500);
    margin-bottom: 0.6rem;
    display: block;
}

.kontakt-form-card .form-input-group input,
.kontakt-form-card .form-input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
    color: var(--color-slate-900);
    outline: none;
    transition: all 0.3s ease;
}

.kontakt-form-card .form-input-group input:focus,
.kontakt-form-card .form-input-group textarea:focus {
    border-color: var(--color-green-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.kontakt-form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
}

.kontakt-form-success .success-icon {
    font-size: 4rem;
    color: var(--color-green-500);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kontakt-form-success h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 1rem;
}

.kontakt-form-success p {
    color: var(--color-slate-600);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .kontakt-form-card {
        padding: 2.25rem;
    }
}