@font-face { font-family: 'TWK Lausanne'; font-weight: 300; font-style: normal; font-display: swap; src: url('/fonts/TWKLausanne-300.woff2') format('woff2'); }
        @font-face { font-family: 'TWK Lausanne'; font-weight: 300; font-style: italic; font-display: swap; src: url('/fonts/TWKLausanne-300Italic.woff2') format('woff2'); }
        @font-face { font-family: 'TWK Lausanne'; font-weight: 600; font-style: normal; font-display: swap; src: url('/fonts/TWKLausanne-600.woff2') format('woff2'); }
        @font-face { font-family: 'TWK Lausanne'; font-weight: 600; font-style: italic; font-display: swap; src: url('/fonts/TWKLausanne-600Italic.woff2') format('woff2'); }
        @font-face { font-family: 'TWK Lausanne'; font-weight: 800; font-style: normal; font-display: swap; src: url('/fonts/TWKLausanne-800.woff2') format('woff2'); }
        @font-face { font-family: 'TWK Lausanne'; font-weight: 800; font-style: italic; font-display: swap; src: url('/fonts/TWKLausanne-800Italic.woff2') format('woff2'); }

        :root {
            --navy: #eeeeee;
            --navy-light: #e6e6e6;
            --navy-card: #e8e8e8;
            --navy-border: #d4d4d4;
            --bg-muted: #e2e2e2;
            --orange: #8b2635;
            --orange-hover: #7a1f2a;
            --orange-light: rgba(139, 38, 53, 0.10);
            --orange-glow: rgba(139, 38, 53, 0.22);
            --bg: #f9f9f9;
            --bg-white: #ffffff;
            --text-dark: #2a2a2a;
            --text-body: #454545;
            --text-muted: #787878;
            --text-light: #a0a0a0;
            --border: #e4e4e4;
            --border-light: #f2f2f2;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'TWK Lausanne', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-body);
            background: var(--bg-white);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'TWK Lausanne', sans-serif;
            color: var(--text-dark);
            line-height: 1.25;
        }
        .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: transparent;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
        }
        .navbar.scrolled {
            background: rgba(255,255,255,0.97);
            border-bottom-color: var(--border-light);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
        }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
        .nav-logo {
            display: flex; align-items: center; gap: 10px;
            color: #111111; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem;
            transition: color 0.3s;
        }
        .navbar.scrolled .nav-logo { color: #111111; }
        .navbar.scrolled .nav-logo-img { content: url('/logo.png'); }
        .nav-logo-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--orange); }
        .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
        .nav-links a { color: rgba(0,0,0,0.6); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
        .nav-links a:hover { color: #111111; }
        .navbar.scrolled .nav-links a { color: var(--text-body); }
        .navbar.scrolled .nav-links a:hover { color: #111111; }
        .nav-cta {
            background: var(--orange); color: #ffffff !important; padding: 10px 22px; border-radius: 8px;
            font-weight: 600 !important; font-size: 0.82rem !important; text-transform: uppercase;
            letter-spacing: 0.5px; transition: background 0.2s, transform 0.2s;
        }
        .nav-cta:hover { background: var(--orange-hover) !important; transform: translateY(-1px); }
        .mobile-menu-btn { display: none; background: none; border: none; color: #111111; cursor: pointer; }
        .navbar.scrolled .mobile-menu-btn { color: #111111; }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            padding-top: 68px;
            padding-bottom: 120px;
            background: var(--navy);
            overflow: visible;
            z-index: 1;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 700px;
            align-items: center;
            position: relative;
        }

        .hero-left {
            padding: 120px 0 100px;
            position: relative;
            z-index: 5;
        }

        .hero h1 {
            font-size: 2.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            line-height: 1.15;
            color: #111111;
        }

        .hero h1 .hl {
            color: var(--orange);
            text-decoration: underline;
            text-decoration-color: var(--orange);
            text-underline-offset: 5px;
            text-decoration-thickness: 3px;
            font-style: normal;
        }

        .hero-sub {
            font-size: 0.98rem;
            color: #666666;
            margin-bottom: 28px;
            max-width: 440px;
            line-height: 1.7;
        }

        .hero-cta-btn {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--orange); color: #ffffff; padding: 14px 28px; border-radius: 8px;
            font-weight: 600; font-size: 0.9rem; transition: all 0.25s; border: none; cursor: pointer;
        }
        .hero-cta-btn:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px var(--orange-glow); }

        .hero-tags {
            display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap;
        }
        .hero-tag {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(0,0,0,0.06); color: #555555; padding: 7px 14px;
            border-radius: 6px; font-size: 0.78rem; font-weight: 500;
        }
        .hero-tag i { color: var(--orange); }

        /* Hero right: person + floating elements */
        .hero-right {
            position: relative;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            z-index: 3;
        }

        .hero-person-wrap {
            position: relative;
            width: 600px;
            margin-bottom: -60px;
            margin-top: -20px;
            z-index: 20;
        }

        /* Subtiler Hintergrund-Shape hinter der freigestellten Person */
        .hero-person-bg {
            display: none;
        }

        .hero-person-img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 12px 32px rgba(0,0,0,0.12));
        }

        /* "Top Rated" Badge links */
        .hero-rated {
            position: absolute;
            top: 30%;
            left: -10px;
            background: white;
            padding: 10px 16px;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.1);
            display: flex; align-items: center; gap: 10px;
            z-index: 25;
            font-size: 0.8rem; font-weight: 600; color: var(--text-dark);
        }
        .hero-rated-icon {
            width: 32px; height: 32px; border-radius: 50%;
            background: var(--orange); color: #ffffff;
            display: flex; align-items: center; justify-content: center;
        }

        /* Trust badges rechts schwebend */
        .hero-trust {
            position: absolute;
            right: 0;
            bottom: 12%;
            display: flex; flex-direction: column; gap: 10px;
            z-index: 25;
            align-items: flex-end;
        }
        .trust-badge {
            background: white; padding: 12px 18px; border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            display: flex; align-items: center; gap: 10px;
            font-size: 0.8rem; font-weight: 500; color: var(--text-dark);
            white-space: nowrap;
        }
        .trust-badge-icon {
            width: 32px; height: 32px; border-radius: 8px;
            background: var(--orange-light); color: var(--orange);
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }


        /* ===== SECTION SHARED ===== */
        .section { padding: 88px 0; }
        .section-navy { background: var(--navy); color: #111111; }
        .section-navy h2, .section-navy h3, .section-navy h4 { color: #111111; }
        .section-light { background: var(--bg); }
        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.72rem; font-weight: 600; letter-spacing: 1.8px;
            text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
        }
        .section-label::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
        .section-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.3px; }
        .section-desc { font-size: 0.95rem; color: var(--text-body); max-width: 580px; line-height: 1.7; }
        .section-navy .section-desc { color: var(--text-light); }
        .section-header { margin-bottom: 48px; }
        .section-header.center { text-align: center; }
        .section-header.center .section-desc { margin: 0 auto; }

        /* ===== INTRO (mit SVG-Welle oben, die in den Hero hineinragt) ===== */
        .section-intro {
            position: relative;
            z-index: 5;
        }
        .section-intro .wave-top {
            position: absolute;
            top: -119px;
            left: 0;
            right: 0;
            height: 120px;
            line-height: 0;
            overflow: hidden;
        }
        .section-intro .wave-top svg {
            display: block;
            width: 100%;
            height: 100%;
        }

        /* ===== INTRO ===== */
        .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .intro-content .section-title { font-size: 2rem; }
        .intro-stats { display: flex; gap: 40px; margin-top: 32px; }
        .intro-stat h3 { font-size: 2.2rem; font-weight: 800; color: var(--orange); }
        .intro-stat p { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
        .intro-img { border-radius: 16px; overflow: hidden; position: relative; }
        .intro-img img { width: 100%; height: 380px; object-fit: cover; }
        .intro-float {
            position: absolute; bottom: -16px; right: 24px;
            background: white; padding: 16px 22px; border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            display: flex; align-items: center; gap: 12px;
        }
        .intro-float-icon {
            width: 40px; height: 40px; background: var(--orange-light); border-radius: 10px;
            display: flex; align-items: center; justify-content: center; color: var(--orange);
        }
        .intro-float span { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }

        /* ===== WAVE DIVIDERS ===== */
        .wave-divider { position: relative; line-height: 0; height: 80px; margin-top: -1px; }
        .wave-divider svg { display: block; width: 100%; height: 100%; }

        /* ===== SERVICES ===== */
        .services-section {
            position: relative;
            background: white;
            padding-bottom: 140px;
        }
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .service-card {
            background: var(--bg-muted); border: 1px solid var(--border); border-radius: 14px;
            padding: 32px 24px; text-align: center; transition: all 0.3s;
        }
        /* Versetzte Karten: 2. Reihe leicht nach unten */
        .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--orange); }
        .service-icon {
            width: 64px; height: 64px; margin: 0 auto 18px;
            background: var(--orange-light); border-radius: 14px;
            display: flex; align-items: center; justify-content: center; color: var(--orange);
            transition: all 0.3s;
        }
        .service-card:hover .service-icon { background: var(--orange); color: #ffffff; transform: scale(1.1); }
        .service-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
        .service-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

        /* ===== ADDONS ===== */
        .addons-section {
            position: relative;
            overflow: hidden;
        }
        /* Dekoratives Bild rechts, große halbrunde Fläche */
        .addons-deco {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 38%;
            border-radius: 200px 0 0 200px;
            overflow: hidden;
            z-index: 0;
        }
        .addons-deco img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .addons-deco::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--bg) 5%, rgba(245,247,250,0.5) 45%, rgba(245,247,250,0.2) 100%);
        }
        .addons-grid { position: relative; z-index: 1; }
        .addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
        .addons-cards { display: flex; flex-direction: column; gap: 16px; padding-top: 20px; }
        .addon-card {
            background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px;
            padding: 22px 24px; display: flex; gap: 16px; transition: all 0.3s;
        }
        /* Karten folgen der Rundung des Bildes (außen weiter, Mitte enger) */
        .addon-card:nth-child(1) { transform: translateX(36px); }
        .addon-card:nth-child(2) { transform: translateX(24px); }
        .addon-card:nth-child(3) { transform: translateX(36px); }
        .addon-card:hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
        .addon-card:nth-child(1):hover { transform: translateX(44px); }
        .addon-card:nth-child(2):hover { transform: translateX(32px); }
        .addon-card:nth-child(3):hover { transform: translateX(44px); }
        .addon-icon {
            width: 44px; height: 44px; flex-shrink: 0;
            background: var(--orange-light); border-radius: 10px;
            display: flex; align-items: center; justify-content: center; color: var(--orange);
        }
        .addon-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
        .addon-card p { font-size: 0.82rem; color: var(--text-muted); }

        /* ===== PHILOSOPHY ===== */
        .philo-section {
            position: relative;
            overflow: visible;
            padding: 160px 0;
        }
        .philo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
        .philo-img-wrap {
            position: relative;
        }
        .philo-img {
            border-radius: 16px; width: 100%; height: 420px; object-fit: cover;
            /* Bild ragt leicht aus der Sektion heraus */
            margin-left: -40px;
            width: calc(100% + 40px);
        }
        /* Dekorativer Akzent hinter dem Bild */
        .philo-img-wrap::after {
            content: '';
            position: absolute;
            top: 24px; right: -16px; bottom: -24px; left: -24px;
            border: 2px solid var(--orange);
            border-radius: 16px;
            z-index: -1;
            opacity: 0.2;
        }
        .philo-content .section-title { font-size: 1.9rem; }
        .philo-content p { margin-bottom: 20px; line-height: 1.7; }
        .promise-label { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
        .check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
        .check-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }
        .check-icon {
            width: 24px; height: 24px; border-radius: 50%;
            background: var(--orange); color: #ffffff;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .btn-orange {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--orange); color: #ffffff; padding: 13px 26px; border-radius: 8px;
            font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px;
            transition: all 0.2s; border: none; cursor: pointer;
        }
        .btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }

        /* ===== EVENTS ===== */
        .events-section {
            position: relative;
        }
        .events-content { max-width: 680px; }
        .events-content .section-title { color: #111111; }
        .events-text { color: var(--text-light); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.75; }
        /* Galerie: erstes Bild größer */
        .events-gallery {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            grid-template-rows: auto;
            gap: 16px; margin-top: 40px;
        }
        .event-card { border-radius: 14px; overflow: hidden; position: relative; min-height: 220px; }
        .event-card:first-child { grid-row: 1 / 1; }
        .event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
        .event-card:hover img { transform: scale(1.06); }
        .event-overlay {
            position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
            background: linear-gradient(transparent, rgba(15,28,46,0.85)); color: white;
        }
        .event-overlay h4 { font-size: 0.95rem; font-weight: 600; }
        .event-overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-top: 2px; }
        .event-highlight {
            background: var(--navy-card); border: 1px solid var(--navy-border);
            border-radius: 14px; padding: 28px; margin-top: 28px;
        }
        .event-highlight p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
        .event-highlight .hl-title {
            display: flex; align-items: center; gap: 8px;
            font-weight: 600; color: white; margin-bottom: 10px; font-size: 0.95rem;
        }
        .event-highlight .hl-title i { color: var(--orange); }

        /* ===== TESTIMONIALS + COUNTER ===== */
        .testimonials-section {
            position: relative;
            background: white;
            padding-top: 200px;
        }
        .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
        .testimonial-card-light {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 28px 24px;
            transition: all 0.3s;
        }
        .testimonial-card-light:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.06);
        }
        .testimonial-quote-light {
            font-size: 0.88rem; color: var(--text-body); line-height: 1.7;
            font-style: italic; margin-bottom: 20px;
        }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .testimonial-avatar-placeholder {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--orange); color: #ffffff;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
        }
        .testimonial-name { font-weight: 600; font-size: 0.88rem; }
        .testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

        /* Counter: schwebt über dem Sektionsrand */
        .counter-overlap {
            position: absolute;
            top: -84px;
            left: 0;
            right: 0;
            z-index: 10;
        }
        .counter-inline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .counter-inline-item {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 16px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }
        .counter-inline-item h3 { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
        .counter-inline-item p { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }

        /* ===== STEPS ===== */
        .steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
        .steps-list { display: flex; flex-direction: column; gap: 28px; }
        .step { display: flex; gap: 18px; }
        .step-num {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--orange); color: #ffffff;
            display: flex; align-items: center; justify-content: center;
            font-family: 'TWK Lausanne', sans-serif; font-weight: 700; font-size: 1rem; flex-shrink: 0;
        }
        .step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
        .step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

        /* ===== KONFIGURATOR ===== */
        .form-section { background: var(--bg); padding: 96px 0; }
        .cfg-layout {
            display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
        }
        .cfg-intro .section-title { font-size: 2rem; }
        .cfg-intro .section-desc { margin-bottom: 32px; }
        .cfg-intro-features { display: flex; flex-direction: column; gap: 10px; }
        .cfg-intro-feat {
            display: flex; align-items: center; gap: 12px;
            font-size: 0.86rem; font-weight: 500; color: var(--text-dark);
            padding: 12px 16px; background: white; border-radius: 10px;
            border: 1px solid var(--border);
        }
        .cfg-intro-feat i { flex-shrink: 0; }

        /* Configurator Card */
        .configurator {
            background: white; border-radius: 24px; padding: 44px 48px;
            border: 1px solid var(--border);
            box-shadow: 0 16px 56px rgba(0,0,0,0.07);
        }

        /* Progress Stepper */
        .cfg-progress {
            display: flex; align-items: flex-start; justify-content: center;
            margin-bottom: 40px; gap: 0;
        }
        .cfg-step-indicator {
            display: flex; flex-direction: column; align-items: center; gap: 6px;
            font-size: 0.68rem; font-weight: 600; color: var(--text-light);
            letter-spacing: 0.6px; text-transform: uppercase;
            transition: color 0.3s; min-width: 64px; text-align: center;
        }
        .cfg-step-indicator .step-circle {
            width: 36px; height: 36px; border-radius: 50%;
            background: white; border: 2px solid var(--border); color: var(--text-light);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.78rem; font-weight: 700; transition: all 0.3s;
        }
        .cfg-step-indicator.active .step-circle {
            background: var(--orange); border-color: var(--orange); color: #ffffff;
            box-shadow: 0 0 0 5px var(--orange-light);
        }
        .cfg-step-indicator.active { color: var(--orange); }
        .cfg-step-indicator.done .step-circle { background: #16a34a; border-color: #16a34a; color: white; }
        .cfg-step-indicator.done { color: #16a34a; }
        .cfg-step-line {
            flex: 1; height: 2px; background: var(--border); margin: 17px 4px 0;
            transition: background 0.4s; max-width: 48px;
        }
        .cfg-step-line.done { background: #16a34a; }

        /* Panels */
        .cfg-panel { display: none; animation: cfgFadeUp 0.22s ease; }
        .cfg-panel.active { display: block; }
        @keyframes cfgFadeUp {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .cfg-title {
            font-size: 1.15rem; font-weight: 700; text-align: center;
            margin-bottom: 4px; color: var(--text-dark);
        }
        .cfg-subtitle {
            font-size: 0.82rem; color: var(--text-muted); text-align: center;
            margin-bottom: 24px;
        }

        /* Step 1: Event-Typ Icons */
        .cfg-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
        .cfg-type-card { cursor: pointer; }
        .cfg-type-card input { display: none; }
        .cfg-type-inner {
            display: flex; flex-direction: column; align-items: center; gap: 10px;
            padding: 20px 12px 16px; border: 2px solid var(--border); border-radius: 14px;
            color: var(--text-muted); transition: all 0.2s; text-align: center;
            background: var(--bg); position: relative; overflow: hidden;
        }
        .cfg-type-inner .type-icon {
            width: 52px; height: 52px; border-radius: 14px;
            background: white; border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.25s;
        }
        .cfg-type-inner .type-label { font-size: 0.82rem; font-weight: 600; line-height: 1.2; }
        .cfg-type-inner .type-check {
            position: absolute; top: 8px; right: 8px;
            width: 18px; height: 18px; border-radius: 50%;
            background: var(--border); border: none;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s; font-size: 0.6rem; color: transparent;
        }
        .cfg-type-card input:checked + .cfg-type-inner {
            border-color: var(--orange); background: white; color: var(--orange);
            box-shadow: 0 4px 20px var(--orange-glow);
        }
        .cfg-type-card input:checked + .cfg-type-inner .type-icon {
            background: var(--orange); border-color: var(--orange); color: #ffffff;
        }
        .cfg-type-card input:checked + .cfg-type-inner .type-check {
            background: var(--orange); color: #ffffff;
        }
        .cfg-type-inner:hover { border-color: var(--orange); background: white; }

        /* Step 2: Detail-Karten */
        .cfg-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .cfg-detail-card {
            background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px;
            padding: 14px 16px; transition: border-color 0.2s, background 0.2s;
        }
        .cfg-detail-card:focus-within { border-color: var(--orange); background: white; }
        .cfg-detail-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
        .cfg-detail-icon { color: var(--orange); flex-shrink: 0; display: flex; align-items: center; }
        .cfg-detail-card label {
            font-size: 0.68rem; font-weight: 700; color: var(--text-muted);
            margin: 0; text-transform: uppercase; letter-spacing: 0.7px; line-height: 1;
        }
        .cfg-detail-card input, .cfg-detail-card select {
            border: none; background: transparent; padding: 0;
            font-size: 0.95rem; font-weight: 600; color: var(--text-dark);
            width: 100%; outline: none; font-family: 'DM Sans', sans-serif;
        }
        .cfg-detail-card input:focus, .cfg-detail-card select:focus { box-shadow: none; }
        .cfg-detail-card input::placeholder { font-weight: 400; color: var(--text-light); font-size: 0.9rem; }
        .cfg-detail-card select { cursor: pointer; color: var(--text-dark); }
        .cfg-detail-card select option { font-weight: 400; }

        /* Location toggle pills */
        .cfg-location-toggle {
            display: flex; align-items: center; gap: 8px; margin-top: 14px; flex-wrap: wrap;
        }
        .cfg-toggle-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); margin-right: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
        .cfg-pill { cursor: pointer; }
        .cfg-pill input { display: none; }
        .cfg-pill span {
            display: inline-block; padding: 7px 16px; border-radius: 50px;
            border: 1.5px solid var(--border); font-size: 0.8rem; font-weight: 500;
            color: var(--text-muted); transition: all 0.2s; background: white;
        }
        .cfg-pill input:checked + span { background: var(--orange); color: #ffffff; border-color: var(--orange); }
        .cfg-pill span:hover { border-color: var(--orange); color: var(--text-dark); }
        .cfg-pill input:checked + span:hover { color: #ffffff; }

        /* Step 3: Menü Toggle-Karten */
        .cfg-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .cfg-toggle-card { cursor: pointer; }
        .cfg-toggle-card input { display: none; }
        .cfg-toggle-inner {
            display: flex; align-items: center; gap: 12px;
            padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 12px;
            transition: all 0.2s; background: var(--bg);
        }
        .cfg-toggle-inner .menu-icon {
            width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
            background: white; border: 1px solid var(--border); color: var(--text-muted);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
        }
        .cfg-toggle-inner strong { display: block; font-size: 0.84rem; color: var(--text-dark); font-weight: 600; line-height: 1.2; }
        .cfg-toggle-inner small { font-size: 0.7rem; color: var(--text-muted); line-height: 1.3; }
        .cfg-toggle-inner .cfg-check {
            margin-left: auto; width: 22px; height: 22px; border-radius: 6px;
            border: 1.5px solid var(--border); display: flex; align-items: center;
            justify-content: center; color: transparent; transition: all 0.2s; flex-shrink: 0;
            background: white;
        }
        .cfg-toggle-card input:checked + .cfg-toggle-inner { border-color: var(--orange); background: white; }
        .cfg-toggle-card input:checked + .cfg-toggle-inner .menu-icon { background: var(--orange); border-color: var(--orange); color: #ffffff; }
        .cfg-toggle-card input:checked + .cfg-toggle-inner .cfg-check { background: var(--orange); border-color: var(--orange); color: #ffffff; }
        .cfg-toggle-inner:hover { border-color: var(--orange); background: white; }

        /* Contact form */
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .form-group { margin-bottom: 12px; }
        .form-group label {
            display: block; font-size: 0.68rem; font-weight: 700; color: var(--text-muted);
            margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.7px;
        }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
            border-radius: 10px; font-size: 0.88rem; font-family: 'DM Sans', sans-serif;
            color: var(--text-dark); background: var(--bg); transition: all 0.2s; outline: none;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-light); background: white;
        }
        .form-group input::placeholder { color: var(--text-light); }
        .form-group textarea { resize: vertical; min-height: 72px; }

        /* Textarea im Step 4 */
        .cfg-notes-wrap { margin-top: 16px; }
        .cfg-notes-wrap label {
            display: block; font-size: 0.68rem; font-weight: 700; color: var(--text-muted);
            margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.7px;
        }
        .cfg-notes-wrap textarea {
            width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
            border-radius: 10px; font-size: 0.88rem; font-family: 'DM Sans', sans-serif;
            color: var(--text-dark); background: var(--bg); transition: all 0.2s; outline: none;
            resize: vertical; min-height: 68px;
        }
        .cfg-notes-wrap textarea:focus {
            border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-light); background: white;
        }
        .cfg-notes-wrap textarea::placeholder { color: var(--text-light); }

        /* Navigation */
        .cfg-nav {
            display: flex; justify-content: space-between; align-items: center;
            margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border-light);
        }
        .cfg-back {
            display: inline-flex; align-items: center; gap: 6px;
            background: none; border: 1.5px solid var(--border); color: var(--text-muted);
            font-size: 0.84rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
            padding: 10px 18px; border-radius: 8px; font-family: 'DM Sans', sans-serif;
        }
        .cfg-back:hover { border-color: var(--navy); color: var(--navy); background: var(--bg); }
        .cfg-next { padding: 12px 28px; font-size: 0.88rem; }
        .cfg-submit { padding: 12px 28px; font-size: 0.88rem; }
        .cfg-submit:disabled { opacity: 0.6; cursor: not-allowed; }

        /* Success */
        .form-success { display: none; text-align: center; padding: 52px 20px; }
        .form-success.visible { display: block; animation: cfgFadeUp 0.4s ease; }
        .form-success .success-icon {
            width: 72px; height: 72px; border-radius: 50%;
            background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #16a34a;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px; box-shadow: 0 0 0 10px rgba(22,163,74,0.08);
        }
        .form-success h3 { margin-bottom: 10px; font-size: 1.35rem; }
        .form-success p { color: var(--text-muted); font-size: 0.88rem; max-width: 300px; margin: 0 auto; line-height: 1.65; }

        /* ===== GUEST SLIDER ===== */
        .guest-slider-wrap { margin-bottom: 28px; }
        .guest-slider-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 18px;
        }
        .guest-slider-label { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.7px; display: flex; align-items: center; gap: 6px; }
        .guest-slider-label i { color: var(--orange); }
        .guest-category-badge {
            font-size: 0.75rem; font-weight: 600; color: var(--orange);
            background: var(--orange-light); padding: 3px 10px; border-radius: 20px;
        }
        .guest-track-wrap { position: relative; padding-top: 28px; }
        .guest-tooltip {
            position: absolute; top: 0; transform: translateX(-50%);
            background: #333333; color: white; font-size: 0.75rem; font-weight: 700;
            padding: 3px 8px; border-radius: 6px; white-space: nowrap; pointer-events: none;
            transition: left 0.05s;
        }
        .guest-tooltip::after {
            content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
            border: 4px solid transparent; border-top-color: #333333;
        }
        .guest-range {
            -webkit-appearance: none; appearance: none;
            width: 100%; height: 5px; border-radius: 3px;
            background: var(--border); outline: none; cursor: pointer;
        }
        .guest-range::-webkit-slider-thumb {
            -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
            background: white; border: 3px solid var(--orange);
            box-shadow: 0 2px 8px rgba(244,121,32,0.3); cursor: pointer;
            transition: transform 0.15s;
        }
        .guest-range::-webkit-slider-thumb:hover { transform: scale(1.1); }
        .guest-range::-moz-range-thumb {
            width: 22px; height: 22px; border-radius: 50%;
            background: white; border: 3px solid var(--orange); cursor: pointer;
        }
        .guest-ticks { display: flex; justify-content: space-between; margin-top: 8px; padding: 0 2px; }
        .guest-ticks span { font-size: 0.68rem; color: var(--text-light); font-weight: 500; }

        /* ===== CALENDAR ===== */
        .cal-wrap {
            user-select: none; background: var(--bg); border: 1.5px solid var(--border);
            border-radius: 14px; padding: 14px 16px;
            max-height: 280px; overflow: hidden;
        }
        .cal-header {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 12px;
        }
        .cal-month-label { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
        .cal-nav-btn {
            width: 28px; height: 28px; border-radius: 7px; border: 1.5px solid var(--border);
            background: white; cursor: pointer; display: flex; align-items: center;
            justify-content: center; color: var(--text-muted); transition: all 0.2s;
        }
        .cal-nav-btn:hover { border-color: var(--orange); color: var(--orange); }
        .cal-grid {
            display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
        }
        .cal-day-header {
            text-align: center; font-size: 0.62rem; font-weight: 700;
            color: var(--text-light); text-transform: uppercase; letter-spacing: 0.3px;
            padding: 2px 0 6px;
        }
        .cal-day {
            height: 28px; display: flex; align-items: center; justify-content: center;
            border-radius: 5px; font-size: 0.73rem; font-weight: 500; color: var(--text-dark);
            cursor: pointer; transition: all 0.15s;
        }
        .cal-day:hover:not(.past) { background: var(--orange-light); color: var(--orange); }
        .cal-day.past { color: var(--border); cursor: default; }
        .cal-day.today { font-weight: 700; color: var(--orange); }
        .cal-day.selected { background: var(--orange); color: #ffffff; font-weight: 700; }
        .cal-day.selected:hover { background: var(--orange-hover); }
        .cal-selected-display {
            margin-top: 12px; padding: 10px 14px; background: white;
            border: 1.5px solid var(--border); border-radius: 9px;
            display: flex; align-items: center; gap: 8px;
            font-size: 0.84rem; font-weight: 600; color: var(--text-dark);
        }
        .cal-selected-display i { color: var(--orange); flex-shrink: 0; }
        #selectedDateDisplay.placeholder { color: var(--text-light); font-weight: 400; }

        /* ===== DURATION PILLS ===== */
        .duration-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
        .dur-pill { cursor: pointer; }
        .dur-pill input { display: none; }
        .dur-pill-inner {
            display: flex; flex-direction: column; align-items: center; gap: 3px;
            padding: 14px 10px; border: 1.5px solid var(--border); border-radius: 12px;
            text-align: center; transition: all 0.2s; background: var(--bg);
            font-size: 0.85rem; font-weight: 600; color: var(--text-dark);
        }
        .dur-pill-inner small { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }
        .dur-pill input:checked + .dur-pill-inner {
            border-color: var(--orange); background: white; color: var(--orange);
            box-shadow: 0 3px 14px var(--orange-glow);
        }
        .dur-pill input:checked + .dur-pill-inner small { color: rgba(244,121,32,0.7); }
        .dur-pill-inner:hover { border-color: var(--orange); background: white; }

        /* ===== STEP 2 LAYOUT ===== */
        .cfg-field-block {
            background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px;
            padding: 14px 16px; transition: border-color 0.2s, background 0.2s;
        }
        .cfg-field-block:focus-within { border-color: var(--orange); background: white; }
        .cfg-field-label {
            font-size: 0.68rem; font-weight: 700; color: var(--text-muted);
            text-transform: uppercase; letter-spacing: 0.7px; display: flex;
            align-items: center; gap: 6px; margin-bottom: 6px;
        }
        .cfg-field-label i { color: var(--orange); }
        .cfg-field-block input, .cfg-field-block select {
            border: none; background: transparent; padding: 0;
            font-size: 0.95rem; font-weight: 600; color: var(--text-dark);
            width: 100%; outline: none; font-family: 'DM Sans', sans-serif;
        }
        .cfg-field-block input::placeholder { font-weight: 400; color: var(--text-light); }
        .cfg-field-block select { cursor: pointer; }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-muted); border-top: 1px solid var(--navy-border);
            color: var(--text-muted); padding: 56px 0 28px;
        }
        .footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
        .footer-brand .nav-logo { color: #111111; margin-bottom: 14px; }
        .footer-brand p { font-size: 0.85rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 18px; }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a {
            width: 36px; height: 36px; border-radius: 8px;
            background: rgba(0,0,0,0.06); color: var(--text-muted);
            display: flex; align-items: center; justify-content: center; transition: all 0.2s;
        }
        .footer-social a:hover { background: var(--orange); color: #ffffff; }
        .footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; color: #111111; margin-bottom: 16px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
        .footer-col a:hover { color: #111111; }
        .footer-col .contact-line {
            display: flex; align-items: center; gap: 8px;
            font-size: 0.85rem; margin-bottom: 10px; color: var(--text-muted);
        }
        .footer-col .contact-line i { color: var(--orange); flex-shrink: 0; }
        .footer-bottom {
            border-top: 1px solid var(--navy-border); padding-top: 20px;
            display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted);
        }
        .footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
        .footer-bottom a:hover { color: #333333; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 968px) {
            .hero-inner { grid-template-columns: 1fr; min-height: auto; }
            .hero-left { padding: 80px 0 40px; text-align: center; }
            .hero-left h1 { font-size: 2.4rem; }
            .hero-sub { margin: 0 auto 28px; }
            .hero-tags { justify-content: center; }
            .hero-right { justify-content: center; height: auto; }
            .hero-person-wrap { width: 500px; margin-bottom: -40px; }
            .hero-trust { display: none; }
            .hero-rated { left: 50%; transform: translateX(-50%); top: -10px; }

            .intro-grid, .philo-grid, .addons-grid, .steps-grid, .form-grid {
                grid-template-columns: 1fr; gap: 36px;
            }
            .philo-img { margin-left: 0; width: 100%; }
            .philo-img-wrap::after { display: none; }
            .addon-card:nth-child(2) { transform: none; }
            .wave-divider { height: 50px; }
            .section-title { font-size: 1.8rem; }
            .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
            .events-gallery { grid-template-columns: repeat(2, 1fr); }
            .counter-inline { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .intro-float { display: none; }
        }

        @media (max-width: 640px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .nav-links.open {
                display: flex; flex-direction: column; position: absolute;
                top: 68px; left: 0; right: 0; background: white; padding: 20px 24px;
                gap: 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-bottom: 1px solid var(--border);
            }
            .hero-left { padding: 60px 0 20px; }
            .hero h1 { font-size: 1.9rem; }
            .hero-person-wrap { width: 340px; margin-bottom: -20px; }
            .section { padding: 60px 0; }
            .services-grid, .events-gallery, .testimonials-grid { grid-template-columns: 1fr; }
            .counter-inline { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .cfg-layout { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .configurator { padding: 28px 20px; }
            .cfg-type-grid { grid-template-columns: repeat(2, 1fr); }
            .cfg-menu-grid { grid-template-columns: 1fr; }
            .cfg-details-grid { grid-template-columns: 1fr; }
            .cfg-step-indicator { font-size: 0; gap: 4px; min-width: 40px; }
            .cfg-step-indicator .step-circle { width: 28px; height: 28px; font-size: 0.72rem; }
            .cfg-step-line { max-width: 20px; }
            .footer-bottom { flex-direction: column; gap: 6px; }
            .intro-stats { gap: 24px; }
        }

/* Generated from legacy inline declarations to keep CSP strict. */
[data-fw-style="s1"] { height:40px !important; }
[data-fw-style="s2"] { width:24px !important; height:24px !important; }
[data-fw-style="s3"] { width:16px !important; height:16px !important; }
[data-fw-style="s4"] { width:14px !important; height:14px !important; }
[data-fw-style="s5"] { background:white !important; }
[data-fw-style="s6"] { width:18px !important; height:18px !important; }
[data-fw-style="s7"] { width:20px !important; height:20px !important; }
[data-fw-style="s8"] { background:#ffffff !important; }
[data-fw-style="s9"] { background:#eeeeee !important; }
[data-fw-style="s10"] { color:var(--text-dark) !important; }
[data-fw-style="s11"] { width:18px !important; height:18px !important; color:var(--orange) !important; }
[data-fw-style="s12"] { justify-content:flex-end !important; }
[data-fw-style="s13"] { width:13px !important; height:13px !important; }
[data-fw-style="s14"] { font-size:0.68rem !important; font-weight:700 !important; color:var(--text-muted) !important; text-transform:uppercase !important; letter-spacing:0.7px !important; margin-bottom:8px !important; }
[data-fw-style="s15"] { margin-top:16px !important; display:flex !important; align-items:center !important; gap:12px !important; padding:10px 16px !important; flex-wrap:wrap !important; }
[data-fw-style="s16"] { display:flex !important; align-items:center !important; gap:8px !important; flex-shrink:0 !important; }
[data-fw-style="s17"] { margin-bottom:0 !important; white-space:nowrap !important; }
[data-fw-style="s18"] { border:none !important; background:transparent !important; padding:0 !important; font-size:0.92rem !important; font-weight:600 !important; color:var(--text-dark) !important; outline:none !important; font-family:'DM Sans',sans-serif !important; width:90px !important; }
[data-fw-style="s19"] { width:1px !important; height:20px !important; background:var(--border) !important; flex-shrink:0 !important; }
[data-fw-style="s20"] { display:flex !important; align-items:center !important; gap:6px !important; flex-wrap:wrap !important; }
[data-fw-style="s21"] { margin-top:0 !important; margin-bottom:12px !important; }
[data-fw-style="s22"] { margin-top:6px !important; }
[data-fw-style="s23"] { width:36px !important; height:36px !important; }
[data-fw-style="s24"] { height:36px !important; }

[data-fw-style="inherit-color"] { color: inherit; }
.cfg-consent { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; align-items: start; margin: 20px 0 4px; color: var(--text-body); font-size: 0.8rem; line-height: 1.45; }
.cfg-consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--orange); }
@media (max-width: 640px) { .hero { min-height: 0; padding-left: 0; padding-right: 0; } .hero-inner, .hero-left, .hero-right { min-width: 0; } .hero-person-wrap { width: min(340px, 100%); } }
