/* Physiobär — Japandi Design System, based on the site structure of BKS Berliner Kfz-Schadengutachten */
/* Schriften lokal eingebunden (kein externer Google-Fonts-Request → kein Datenschutzproblem) */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond.woff2') format('woff2-variations'), url('fonts/CormorantGaramond.woff2') format('woff2');
    font-weight: 300 700;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('fonts/DMSans.woff2') format('woff2-variations'), url('fonts/DMSans.woff2') format('woff2');
    font-weight: 300 700;
    font-display: swap;
}

/* ═══════════════════════════════════════════
           CSS RESET & BASE
           ═══════════════════════════════════════════ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #F1EFE7;
            --bg-primary-rgb: 241, 239, 231;
            --bg-secondary: #E4E5DB;
            --bg-card: #FAF9F4;
            --bg-card-rgb: 250, 249, 244;
            --bg-card-hover: #ECEAE0;
            --text-primary: #24241F;
            --text-secondary: #55544A;
            --text-muted: #6B6A5B;
            --accent: #5F6D51;
            --accent-strong: #4C5741;
            --on-accent: #FFFFFF;
            --accent-light: #9BAA85;
            --accent-glow: rgba(95, 109, 81, 0.25);
            --border: rgba(var(--shadow-rgb), 0.10);
            --border-hover: rgba(var(--shadow-rgb), 0.18);
            --glass: rgba(var(--shadow-rgb), 0.025);
            --glass-border: rgba(var(--shadow-rgb), 0.08);
            --sage: #A9B29C;
            --shadow-rgb: 36, 36, 31;
            --radius: 16px;
            --radius-sm: 10px;
            --radius-lg: 24px;
            --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --max-width: 1200px;
            --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ═══════════════════════════════════════════
           DARK MODE — warme, gedeckte Dunkel-Palette
           (keine reine Umkehrung, sondern eigenständig
           auf den Japandi-Stil abgestimmt)
           ═══════════════════════════════════════════ */
        html[data-theme="dark"] {
            --bg-primary: #201E1A;
            --bg-primary-rgb: 32, 30, 26;
            --bg-secondary: #29271F;
            --bg-card: #2C2A24;
            --bg-card-rgb: 44, 42, 36;
            --bg-card-hover: #36332B;
            --text-primary: #F1EFE7;
            --text-secondary: #B8B4A6;
            --text-muted: #9D9A8A;
            --accent: #96A582;
            --accent-strong: #A8B695;
            --on-accent: #201E1A;
            --accent-light: #B0BC9E;
            --accent-glow: rgba(150, 165, 130, 0.22);
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 255, 255, 0.16);
            --glass: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.07);
            --sage: #96A582;
            --shadow-rgb: 0, 0, 0;
        }

        html {
            transition: background-color 0.3s ease;
        }

        body {
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            max-width: 100vw;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

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

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

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

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

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

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
            50% { box-shadow: 0 0 30px 10px var(--accent-glow); }
        }

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

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes drawLine {
            from { width: 0; }
            to { width: 100%; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Stagger children */
        .stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
        .stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
        .stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
        .stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
        .stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
        .stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

        /* ═══════════════════════════════════════════
           NAVBAR
           ═══════════════════════════════════════════ */
#home, #features, #services, #process, #faq, #contact {
    scroll-margin-top: 88px;
}

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 40px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(var(--bg-primary-rgb), 0.78);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s var(--transition);
        }

        .navbar.scrolled {
            background: rgba(var(--bg-primary-rgb), 0.92);
            height: 64px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .nav-logo img {
            height: 44px;
            width: auto;
            transition: height 0.3s var(--transition);
        }

        .navbar.scrolled .nav-logo img {
            height: 38px;
        }

        .nav-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .nav-logo-title {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .nav-logo-title span {
            color: var(--text-primary);
        }

        .nav-logo-subtitle {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }

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

        .nav-links a {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--accent);
            transition: width 0.3s var(--transition);
        }

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

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

        .nav-cta {
            padding: 10px 22px;
            background: var(--accent);
            color: var(--on-accent) !important;
            border-radius: 980px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s var(--transition);
        }

        .nav-cta:hover {
            background: var(--accent-light);
            transform: scale(1.05);
        }

        .nav-cta::after {
            display: none !important;
        }

        /* Desktop Dropdown */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .dropdown-arrow {
            transition: transform 0.3s var(--transition);
        }

        .nav-dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            min-width: 260px;
            background: rgba(var(--bg-card-rgb), 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-hover);
            border-radius: var(--radius);
            padding: 8px;
            padding-top: 16px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s var(--transition) 0.1s, visibility 0.25s var(--transition) 0.1s, transform 0.25s var(--transition) 0.1s;
            z-index: 100;
            box-shadow: 0 20px 60px rgba(var(--shadow-rgb), 0.14);
        }

        /* Invisible hover bridge between trigger and dropdown */
        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            top: -12px;
            left: 0;
            right: 0;
            height: 12px;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            transition-delay: 0s;
        }

        /* Staggered cascade animation for dropdown items */
        .nav-dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 13px !important;
            font-weight: 500;
            color: var(--text-secondary) !important;
            transition: background 0.2s, color 0.2s, opacity 0.3s ease, transform 0.3s ease;
            white-space: nowrap;
            opacity: 0;
            transform: translateY(-8px);
        }

        .nav-dropdown:hover .nav-dropdown-menu a {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(1) { transition-delay: 0.03s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(2) { transition-delay: 0.06s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(3) { transition-delay: 0.09s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(4) { transition-delay: 0.12s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(5) { transition-delay: 0.15s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(6) { transition-delay: 0.18s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(7) { transition-delay: 0.21s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(8) { transition-delay: 0.24s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(9) { transition-delay: 0.27s; }
        .nav-dropdown:hover .nav-dropdown-menu a:nth-child(n+10) { transition-delay: 0.3s; }

        .nav-dropdown-menu a::after {
            display: none !important;
        }

        .nav-dropdown-menu a:hover {
            background: rgba(var(--shadow-rgb), 0.05);
            color: var(--text-primary) !important;
        }

        /* Focus-within for keyboard accessibility */
        .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            transition-delay: 0s;
        }

        .nav-dropdown:focus-within .nav-dropdown-menu a {
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: var(--accent-glow);
            border-radius: 8px;
            flex-shrink: 0;
        }

        .dropdown-icon svg {
            color: var(--accent);
        }

        .dropdown-badge {
            margin-left: auto;
            font-size: 10px;
            font-weight: 600;
            color: var(--accent);
            background: var(--accent-glow);
            padding: 2px 8px;
            border-radius: 980px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        /* Mobile Menu Toggle */
        .nav-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 10000;
            position: relative;
            background: none;
            border: none;
            appearance: none;
        }

        .nav-mobile-toggle span {
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s;
            border-radius: 2px;
        }

        .nav-mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ═══════════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 120px 24px 80px;
            background: url('images/photo-1605774337664-7a846e9cdf17.jpg') center 40% / cover no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(180deg, rgba(var(--bg-primary-rgb),0.85) 0%, rgba(var(--bg-primary-rgb),0.75) 45%, rgba(var(--bg-primary-rgb),0.92) 100%),
                radial-gradient(ellipse 70% 55% at 50% 0%, rgba(124, 138, 107, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 1;
        }

        .hero-logo-wrapper {
            margin: 0 auto 40px;
            animation: fadeIn 1s ease-out;
            position: relative;
            text-align: center;
        }

        .hero-logo-text-main {
            font-size: clamp(72px, 12vw, 120px);
            font-weight: 900;
            letter-spacing: -4px;
            line-height: 1;
            margin-bottom: 8px;
        }

        .hero-logo-text-main .logo-b,
        .hero-logo-text-main .logo-s {
            color: var(--text-primary);
        }

        .hero-logo-text-main .logo-k {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-logo-subtitle-text {
            font-size: clamp(11px, 1.8vw, 15px);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: clamp(4px, 1vw, 10px);
            color: var(--text-muted);
        }

        .hero-logo-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            margin: 16px auto 0;
        }

        .nav-logo img {
            filter: drop-shadow(0 1px 4px rgba(var(--shadow-rgb), 0.15));
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 980px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 28px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-badge-dot {
            width: 6px;
            height: 6px;
            background: #34c759;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero h1 {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 900;
            line-height: 1.0;
            letter-spacing: -3px;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero h1 .accent {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: clamp(18px, 2.5vw, 24px);
            color: var(--text-secondary);
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 48px;
            line-height: 1.5;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .btn-primary {
            padding: 16px 36px;
            background: var(--accent);
            color: var(--on-accent);
            border-radius: 980px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

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

        .btn-secondary {
            padding: 16px 36px;
            background: transparent;
            color: var(--text-primary);
            border-radius: 980px;
            font-size: 16px;
            font-weight: 600;
            border: 1.5px solid var(--border-hover);
            cursor: pointer;
            transition: all 0.3s var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            background: rgba(var(--shadow-rgb), 0.04);
            border-color: var(--text-muted);
            transform: translateY(-2px);
        }

        .hero-social {
            margin-top: 32px;
            animation: fadeInUp 0.8s ease-out 1s both;
        }

        .hero-social-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border: 1px solid var(--border-hover);
            border-radius: 980px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s var(--transition);
            background: var(--glass);
        }

        .hero-social-link:hover {
            color: var(--text-primary);
            border-color: #E1306C;
            background: rgba(225, 48, 108, 0.1);
        }

        .hero-social-link:hover svg {
            stroke: #E1306C;
        }

        .hero-social-link svg {
            transition: stroke 0.3s;
        }

        .hero-social-link span {
            letter-spacing: -0.2px;
        }

        /* ═══════════════════════════════════════════
           SECTION BASE
           ═══════════════════════════════════════════ */
        section {
            padding: 120px 24px;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .section-desc {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.6;
            font-weight: 300;
        }

        /* ═══════════════════════════════════════════
           FEATURES (Vorteile)
           ═══════════════════════════════════════════ */
        .features {
            background: var(--bg-secondary);
        }

        .features-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .features-header .section-desc {
            margin: 0 auto;
        }

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

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

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

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

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

        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            color: var(--on-accent);
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════
           SERVICES (Leistungen)
           ═══════════════════════════════════════════ */
        .services {
            background: var(--bg-primary);
        }

        .services-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .services-header .section-desc {
            margin: 0 auto;
        }

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

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 48px 36px;
            text-align: center;
            transition: all 0.5s var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: block;
            color: var(--text-primary);
        }

        .service-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, var(--accent-glow) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-glow);
            box-shadow: 0 24px 80px rgba(var(--shadow-rgb), 0.12);
        }

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

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 24px;
            display: block;
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .service-badge {
            display: inline-block;
            padding: 4px 14px;
            background: var(--accent-glow);
            color: var(--accent);
            border-radius: 980px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 16px;
        }

        /* ═══════════════════════════════════════════
           PROCESS (Ablauf)
           ═══════════════════════════════════════════ */
        .process {
            background: var(--bg-secondary);
        }

        .process-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .process-header .section-desc {
            margin: 0 auto;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--border), var(--accent), var(--accent), var(--border));
        }

        .process-step {
            text-align: center;
            padding: 0 20px;
            position: relative;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: var(--bg-card);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 800;
            color: var(--accent);
            margin: 0 auto 28px;
            position: relative;
            z-index: 1;
            transition: all 0.4s var(--transition);
        }

        .process-step:hover .process-number {
            background: var(--accent);
            color: var(--on-accent);
            transform: scale(1.1);
            box-shadow: 0 0 40px var(--accent-glow);
        }

        .process-step h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════════
           STATS
           ═══════════════════════════════════════════ */
        .stats {
            background: var(--bg-primary);
            padding: 80px 24px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

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

        .stat-item {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 130px;
        }

        .stat-number {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 900;
            letter-spacing: -3px;
            background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            min-height: 64px;
        }

        .stat-number .accent {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ═══════════════════════════════════════════
           CONTACT
           ═══════════════════════════════════════════ */
        .contact {
            background: var(--bg-secondary);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            padding-top: 20px;
        }

        .contact-info .section-title {
            margin-bottom: 20px;
        }

        .contact-info .section-desc {
            margin-bottom: 48px;
        }

        .contact-channels {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-channel {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all 0.3s var(--transition);
        }

        .contact-channel:hover {
            border-color: var(--border-hover);
            transform: translateX(8px);
        }

        .contact-channel-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-channel-icon svg {
            width: 22px;
            height: 22px;
            color: var(--on-accent);
        }

        .contact-channel-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .contact-channel-value {
            font-size: 16px;
            font-weight: 600;
            margin-top: 2px;
        }

        .contact-channel-value a {
            transition: color 0.3s;
        }

        .contact-channel-value a:hover {
            color: var(--accent-light);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 48px;
        }

        .contact-form-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 32px;
            letter-spacing: -0.5px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(var(--shadow-rgb), 0.035);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: var(--font);
            font-size: 15px;
            transition: all 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            background: var(--accent-glow);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

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

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236e6e73' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        .form-group select option {
            background: #1a1a1a;
            color: white;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            background: var(--accent);
            color: var(--on-accent);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 600;
            font-family: var(--font);
            cursor: pointer;
            transition: all 0.3s var(--transition);
        }

        .btn-submit:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px var(--accent-glow);
        }

        /* ═══════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════ */
        footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
            padding: 60px 24px 30px;
        }

        .footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 16px;
            max-width: 280px;
        }

        .footer-brand img {
            height: 40px;
            filter: drop-shadow(0 2px 8px rgba(var(--shadow-rgb), 0.12));
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 10px;
        }

        .footer-col a {
            font-size: 14px;
            color: var(--text-muted);
            transition: color 0.3s;
        }

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

        .footer-bottom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-top: 28px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 12px;
            color: var(--text-muted);
        }

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

        .footer-legal a {
            font-size: 12px;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--text-primary);
        }

        /* ═══════════════════════════════════════════
           STICKY MOBILE CTA
           ═══════════════════════════════════════════ */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
            padding: 10px 12px;
            padding-bottom: max(10px, env(safe-area-inset-bottom));
            background: rgba(var(--bg-card-rgb), 0.98);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid var(--border);
            gap: 8px;
            transform: translateY(100%);
            transition: transform 0.4s var(--transition);
        }

        .sticky-cta.visible {
            transform: translateY(0);
        }

        .sticky-cta-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 16px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            font-family: var(--font);
            text-decoration: none;
            transition: all 0.2s;
        }

        .sticky-cta-phone {
            background: var(--accent);
            color: white;
        }

        .sticky-cta-phone:hover {
            background: var(--accent-light);
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .features-grid,
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .process-timeline::before {
                display: none;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 16px;
                height: 64px;
            }

            .navbar.scrolled {
                height: 56px;
            }

            .nav-logo img {
                height: 36px;
            }

            .navbar.scrolled .nav-logo img {
                height: 32px;
            }

            .nav-logo-title {
                font-size: 14px;
            }

            .nav-links {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                height: 100dvh !important;
                background: var(--bg-primary) !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: flex-start !important;
                gap: 0 !important;
                z-index: 9999 !important;
                padding: 80px 24px 40px !important;
                overflow-y: auto !important;
                display: flex !important;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-20px);
                transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
                pointer-events: none;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }

            /* Stagger menu items on mobile */
            .nav-links > li {
                opacity: 0;
                transform: translateY(-12px);
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .nav-links.active > li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-links.active > li:nth-child(1) { transition-delay: 0.05s; }
            .nav-links.active > li:nth-child(2) { transition-delay: 0.1s; }
            .nav-links.active > li:nth-child(3) { transition-delay: 0.15s; }
            .nav-links.active > li:nth-child(4) { transition-delay: 0.2s; }
            .nav-links.active > li:nth-child(5) { transition-delay: 0.25s; }

            .nav-links > li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid var(--border);
            }

            .nav-links > li:last-child {
                border-bottom: none;
                margin-top: 8px;
            }

            .nav-links > li > a {
                font-size: 20px;
                display: block;
                padding: 16px 0;
                font-weight: 500;
            }

            .nav-links > li > a::after {
                display: none;
            }

            .nav-cta {
                margin-top: 8px;
                padding: 14px 28px !important;
                font-size: 16px !important;
            }

            /* Mobile dropdown: always visible, inline list */
            .nav-dropdown {
                border-bottom: none !important;
            }

            .nav-dropdown-trigger {
                justify-content: center;
            }

            .nav-dropdown-menu {
                position: static;
                transform: none !important;
                opacity: 1;
                visibility: visible;
                min-width: unset;
                background: rgba(var(--shadow-rgb), 0.03);
                border: 1px solid var(--border);
                border-radius: 14px;
                margin: 4px 0 16px;
                padding: 6px;
                box-shadow: none;
                backdrop-filter: none;
            }

            .nav-dropdown:hover .nav-dropdown-menu {
                transform: none;
            }

            .nav-dropdown-menu a {
                font-size: 15px !important;
                padding: 12px 14px;
                justify-content: flex-start;
                opacity: 1 !important;
                transform: none !important;
                transition-delay: 0s !important;
            }

            .dropdown-arrow {
                display: none;
            }

            .nav-mobile-toggle {
                display: flex;
            }

            .nav-logo-subtitle {
                display: none;
            }

            .nav-logo-text {
                display: none;
            }

            .nav-logo img {
                height: 48px;
            }

            section {
                padding: 64px 16px;
            }

            .hero {
                padding: 100px 16px 60px;
                min-height: 100svh;
                background-position: center 20%;
            }

            .hero-logo-wrapper {
                width: 180px;
                margin-bottom: 32px;
            }

            .hero-badge {
                font-size: 10px;
                padding: 5px 12px;
                margin-bottom: 20px;
            }

            .hero h1 {
                font-size: 40px;
                letter-spacing: -1.5px;
                margin-bottom: 16px;
            }

            .hero-sub {
                font-size: 16px;
                margin-bottom: 32px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 14px 24px;
                font-size: 15px;
            }

            .hero-social-link span {
                font-size: 13px;
            }

            .section-title {
                font-size: 30px;
                letter-spacing: -1px;
            }

            .section-desc {
                font-size: 15px;
            }

            .section-label {
                font-size: 11px;
            }

            .features-header,
            .services-header,
            .process-header {
                margin-bottom: 40px;
            }

            .features-grid,
            .services-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .feature-card {
                padding: 28px 24px;
            }

            .feature-card h3 {
                font-size: 17px;
            }

            .feature-card p {
                font-size: 13px;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                border-radius: 10px;
                margin-bottom: 16px;
            }

            .feature-icon svg {
                width: 20px;
                height: 20px;
            }

            .service-card {
                padding: 32px 24px;
                border-radius: var(--radius);
            }

            .service-icon svg {
                width: 36px;
                height: 36px;
            }

            .service-card h3 {
                font-size: 18px;
            }

            .service-card p {
                font-size: 13px;
            }

            .process-timeline {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .process-number {
                width: 60px;
                height: 60px;
                font-size: 22px;
                margin-bottom: 16px;
            }

            .process-step h3 {
                font-size: 16px;
            }

            .process-step p {
                font-size: 13px;
            }

            .stats {
                padding: 48px 16px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .stat-number {
                font-size: 36px;
                letter-spacing: -2px;
            }

            .stat-label {
                font-size: 12px;
            }

            .stat-item {
                padding: 12px 8px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .contact-info .section-title {
                font-size: 28px;
            }

            .contact-info .section-desc {
                font-size: 14px;
                margin-bottom: 28px;
            }

            .contact-channels {
                gap: 12px;
            }

            .contact-channel {
                padding: 16px;
            }

            .contact-channel-icon {
                width: 40px;
                height: 40px;
            }

            .contact-channel-icon svg {
                width: 18px;
                height: 18px;
            }

            .contact-channel-value {
                font-size: 14px;
            }

            .contact-form-wrapper {
                padding: 24px 20px;
                border-radius: var(--radius);
            }

            .contact-form-title {
                font-size: 20px;
                margin-bottom: 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 0;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 14px;
                font-size: 16px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .sticky-cta {
                display: flex;
            }

            /* Extra padding at bottom of page so content isn't hidden behind sticky bar */
            footer {
                padding-bottom: 80px;
            }
        }

        @media (max-width: 380px) {
            .hero h1 {
                font-size: 34px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .stat-number {
                font-size: 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
/* ═══════════════════════════════════════════
   JAPANDI TYPOGRAPHY OVERRIDES
   ═══════════════════════════════════════════ */
.nav-logo-title,
.hero h1,
.section-title,
.feature-card h3,
.service-card h3,
.process-step h3,
.stat-number,
.contact-form-title,
.footer-col h4,
.footer-brand-title,
.article-title,
.card-title,
.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero h1 {
    font-weight: 500;
}

.section-title {
    font-weight: 600;
}

.stat-number {
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-label,
.nav-logo-subtitle,
.hero-badge {
    font-family: var(--font);
    letter-spacing: 2.5px;
}

/* ═══════════════════════════════════════════
   SUBPAGE LAYOUT (shared across service &
   legal pages — Japandi content sections)
   ═══════════════════════════════════════════ */
.subpage-hero {
    padding: 160px 40px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.subpage-hero .section-label {
    justify-content: center;
    display: flex;
}

.subpage-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 48px;
    letter-spacing: -0.01em;
    margin: 16px 0 20px;
    color: var(--text-primary);
}

.subpage-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 40px 100px;
}

.content-section h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    margin: 48px 0 16px;
    color: var(--text-primary);
}

.content-section h2:first-child { margin-top: 0; }

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.content-section ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.content-section p a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--border-hover);
    text-underline-offset: 2px;
}

.content-section p a:hover {
    color: var(--accent-light);
}

.content-section ul li a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--border-hover);
    text-underline-offset: 2px;
}

.content-section ul li a:hover {
    color: var(--accent);
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin: 32px 0;
}

.cta-band {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 40px;
    text-align: center;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 16px;
}

.cta-band p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 160px 40px 100px;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    margin: 36px 0 12px;
}

.legal-content p, .legal-content li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

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

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s var(--transition);
    display: block;
}

.article-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.article-card h2,
.article-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.article-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.danke-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px;
}

.danke-section h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 16px;
}

.danke-section p {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 32px;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    border: 1px dashed var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    margin: 24px 0;
}

.placeholder-image.has-photo {
    position: relative;
    border: none;
    overflow: hidden;
    background: var(--bg-secondary);
}

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

.placeholder-image.has-photo .placeholder-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(var(--bg-card-rgb), 0.92);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(var(--shadow-rgb), 0.15);
}

@media (max-width: 768px) {
    .subpage-hero { padding: 120px 20px 56px; }
    .subpage-hero h1 { font-size: 32px; }
    .content-section { padding: 10px 20px 64px; }
    .legal-content { padding: 120px 20px 64px; }
    .cta-band { padding: 48px 20px; }
}

/* ═══════════════════════════════════════════
   TEAM PAGE
   ═══════════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s var(--transition);
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-avatar svg {
    width: 72px;
    height: 72px;
    color: var(--text-muted);
}

.team-avatar-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--bg-card-rgb), 0.92);
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 0;
}

.team-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.team-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.team-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.faq-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: transform 0.3s var(--transition);
}

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

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

.faq-answer p {
    padding: 0 4px 22px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq { padding: 64px 20px; }
    .faq-question { font-size: 15px; }
}

/* ═══════════════════════════════════════════
   ARTICLE BYLINE
   ═══════════════════════════════════════════ */
.article-byline {
    max-width: 720px;
    margin: -12px auto 32px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-byline svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.article-byline strong {
    color: var(--text-secondary);
    font-weight: 600;
}


/* ═══════════════════════════════════════════
   ACCESSIBILITY: SKIP LINK
   ═══════════════════════════════════════════ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--accent);
    color: var(--on-accent);
    padding: 12px 20px;
    border-radius: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    z-index: 10000;
    transition: top 0.2s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
}

/* ═══════════════════════════════════════════
   ARTICLE CARD THUMBNAILS (Ratgeber-Übersicht)
   ═══════════════════════════════════════════ */
.article-card {
    display: flex !important;
    gap: 20px;
    align-items: center;
    padding: 20px !important;
}

.article-card-thumb {
    width: 110px;
    height: 84px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-secondary);
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-card-text {
    flex: 1;
    min-width: 0;
}

@media (max-width: 600px) {
    .article-card-thumb {
        width: 72px;
        height: 72px;
    }
    .article-card {
        padding: 14px !important;
        gap: 14px;
    }
}

/* ═══════════════════════════════════════════
   THEME TOGGLE (Light/Dark Mode)
   ═══════════════════════════════════════════ */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s var(--transition);
    flex-shrink: 0;
    margin-left: 8px;
}

.nav-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--accent-glow);
    border-color: var(--border-hover);
    transform: rotate(15deg);
}

.theme-icon-moon {
    display: none;
}

html[data-theme="dark"] .theme-icon-sun {
    display: none;
}

html[data-theme="dark"] .theme-icon-moon {
    display: block;
}

@media (max-width: 900px) {
    .theme-toggle {
        width: 36px;
        height: 36px;
        margin-left: 4px;
    }
}

/* ═══════════════════════════════════════════
   PRICE DISPLAY (Abrechnung-Info-Cards)
   ═══════════════════════════════════════════ */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 18px 0 22px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-separator {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-muted);
    font-weight: 300;
}

.price-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

@media (max-width: 480px) {
    .price-value {
        font-size: 34px;
    }
    .price-separator {
        font-size: 22px;
    }
}


/* ═══════════════════════════════════════════
   OPTIMIERUNGS-PAKET 07/2026
   Fokus-Sichtbarkeit, Reduced Motion, Eröffnungs-
   Sektion, 2-Button-Sticky-CTA, Formular-Einwilligung
   ═══════════════════════════════════════════ */

html { scroll-padding-top: 92px; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Gefüllte Buttons: Hover dunkelt ab statt aufzuhellen (Kontrast bleibt AA) */
.nav-cta:hover,
.btn-primary:hover,
.btn-submit:hover { background: var(--accent-strong); }

/* ── Hero-Badge (Neueröffnung) ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 980px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 26px;
    background: rgba(var(--bg-card-rgb), 0.65);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

/* ── Eröffnungs-Sektion ── */
.opening {
    padding: 84px 24px;
    background: linear-gradient(180deg, var(--accent-glow), rgba(0,0,0,0) 90%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.opening-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.opening-desc {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 30px;
}
.opening-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 30px;
    margin-bottom: 34px;
    color: var(--text-secondary);
    font-size: 15px;
}
.opening-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.opening-point svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ── Sticky-CTA: zwei Aktionen ── */
.sticky-cta-phone {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}
.sticky-cta-phone:hover { background: var(--bg-card-hover); }
.sticky-cta-book {
    background: var(--accent);
    color: var(--on-accent);
}
.sticky-cta-book:hover { background: var(--accent-strong); }

/* ── "Alle Leistungen"-Link im Dropdown ── */
.nav-dropdown-menu .dropdown-all {
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 12px;
    color: var(--accent);
    font-weight: 600;
}

/* ── Formular: Einwilligung + Hinweis + Honeypot ── */
.form-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 2px 0 20px;
}
.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}
.form-consent label {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary);
}
.form-consent a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-note {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--text-secondary);
    text-align: center;
}
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Reduzierte Bewegung respektieren (WCAG 2.3.3) ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ═══════════════════════════════════════════
   BREADCRUMBS + KONTEXTUELLE VERLINKUNG 07/2026
   ═══════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    font-size: 13.5px;
    color: var(--text-muted);
}
.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s var(--transition);
}
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb [aria-current="page"] { color: var(--text-primary); font-weight: 500; }
.breadcrumb-sep { color: var(--text-muted); }

.related-link {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px 8px;
    text-align: center;
}
.related-link p {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 22px;
}
.related-link a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.related-link a:hover { color: var(--accent-strong); }

@media (max-width: 768px) {
    .related-link { padding: 0 20px 8px; }
}


/* Byline-Erweiterung: Autor-Link + Aktualisierungsdatum (EEAT) */
.article-byline { flex-wrap: wrap; }
.article-byline a { color: var(--text-secondary); text-decoration: underline; text-underline-offset: 2px; }
.article-byline a:hover { color: var(--accent); }
.article-byline-sep,
.article-byline-date { color: var(--text-muted); }


/* ═══════════ ÖFFNUNGSZEITEN 07/2026 ═══════════ */
.contact-hours { margin-top: 30px; }
.contact-hours-title {
    font-family: var(--font-serif);
    font-size: 22px;
    margin: 0 0 14px;
    color: var(--text-primary);
}
.hours-list { margin: 0; }
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}
.hours-row dt { color: var(--text-secondary); font-weight: 500; margin: 0; }
.hours-row dd { color: var(--text-primary); margin: 0; text-align: right; }
.hours-row.hours-closed dd { color: var(--text-muted); }
.hours-note { margin: 14px 0 0; font-size: 13.5px; color: var(--text-muted); }

.footer-hours { margin-top: 18px; }
.footer-hours-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 7px;
}
.footer-hours div:not(.footer-hours-title) {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}


/* ═══════════════════════════════════════════
   RATGEBER — RICH-ELEMENTE 07/2026
   Wiederverwendbar: h3, Checkliste, Warnbox, Tabelle, FAQ
   ═══════════════════════════════════════════ */
.content-section h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    margin: 34px 0 12px;
    color: var(--text-primary);
}

/* Checkliste */
.content-section ul.checklist { list-style: none; margin: 22px 0; padding: 0; }
.content-section .checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 13px;
    padding: 0;
    color: var(--text-secondary);
    line-height: 1.65;
}
.content-section .checklist li::before { display: none; }
.checklist .check-icon {
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    color: var(--accent);
    margin-top: 2px;
}

/* Warnhinweis-Box (rote Flaggen) */
.warning-box {
    display: flex;
    gap: 14px;
    background: rgba(180, 83, 60, 0.08);
    border: 1px solid rgba(180, 83, 60, 0.35);
    border-left: 4px solid #B4533C;
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 30px 0;
}
.warning-box svg { flex-shrink: 0; width: 24px; height: 24px; color: #B4533C; margin-top: 2px; }
.warning-box .warning-title { font-weight: 600; color: var(--text-primary); margin: 0 0 5px; }
.warning-box p:last-child { margin: 0; color: var(--text-secondary); line-height: 1.65; }

/* Tabelle */
.table-wrap { overflow-x: auto; margin: 26px 0; -webkit-overflow-scrolling: touch; }
.article-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 460px; }
.article-table th, .article-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.article-table thead th { background: var(--bg-secondary); font-weight: 600; color: var(--text-primary); }
.article-table tbody td { color: var(--text-secondary); line-height: 1.55; }
.article-table tbody tr:last-child td { border-bottom: none; }

/* FAQ (native, ohne JS) */
.article-faq { margin: 30px 0; }
.article-faq details {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    background: var(--bg-card);
    overflow: hidden;
}
.article-faq summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after { content: '+'; font-size: 22px; color: var(--accent); line-height: 1; }
.article-faq details[open] summary::after { content: '\2212'; }
.article-faq details > p { padding: 0 20px 18px; margin: 0; color: var(--text-secondary); line-height: 1.7; }


/* Medizinischer Hinweis (Ratgeber) */
.article-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}
