@font-face {
            font-family: 'Sao Torpes';
            src: url('schriften/SaoTorpes-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'DM Sans';
            src: url('assets/fonts/DMSans-VariableFont.ttf') format('truetype');
            font-weight: 100 900;
            font-style: normal;
        }
        @font-face {
            font-family: 'DM Sans';
            src: url('assets/fonts/DMSans-Italic-VariableFont.ttf') format('truetype');
            font-weight: 100 900;
            font-style: italic;
        }
        @font-face {
            font-family: 'Playfair Display';
            src: url('assets/fonts/PlayfairDisplay-VariableFont.ttf') format('truetype');
            font-weight: 400 900;
            font-style: normal;
        }
        @font-face {
            font-family: 'Playfair Display';
            src: url('assets/fonts/PlayfairDisplay-Italic-VariableFont.ttf') format('truetype');
            font-weight: 400 900;
            font-style: italic;
        }

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

        :root {
            --bg: #F5F4F0;
            --surface: #FFFFFF;
            --surface-2: #EDEAE3;
            --primary: #be5317;
            --primary-hover: #9e4412;
            --primary-light: #f1831f;
            --green: #283c21;
            --green-light: #657225;
            --text: #0d0d0d;
            --text-muted: #5e5e5a;
            --border: #D8D4CC;
            --shadow: 0 2px 12px rgba(0,0,0,0.08);
            --radius: 12px;
            --radius-lg: 20px;
        }

        html { scroll-behavior: smooth; }

        section { scroll-margin-top: 72px; }

        body {
            font-family: 'Playfair Display', serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        /* NAV */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            padding: 0 clamp(1rem, 5vw, 4rem);
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            font-family: 'DM Sans', sans-serif;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--text);
            text-decoration: none;
        }
        .logo span { color: var(--primary); }

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

        nav a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        nav a:hover { color: var(--text); }

        @media (max-width: 640px) {
            nav ul { display: none; }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.25rem;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            text-decoration: none;
        }
        .btn-primary { background: var(--primary); color: white; }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
        .btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
        .btn-outline:hover { border-color: var(--text); }
        .btn-green { background: var(--green); color: white; }
        .btn-green:hover { background: var(--green-light); }

        /* HERO */
        #hero {
            padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 5vw, 4rem);
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        @media (max-width: 768px) { #hero { grid-template-columns: 1fr; gap: 2.5rem; } }

        .testimonial-photo {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .hero-label {
            display: inline-block;
            background: var(--green);
            color: white;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.3rem 0.8rem;
            border-radius: 100px;
            margin-bottom: 1.25rem;
        }

        .hero-title {
            font-family: 'Sao Torpes', 'DM Sans', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 1.25rem;
        }
        .hero-title em { font-style: normal; color: var(--primary); }

        .hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 44ch;
        }

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

        .hero-visual {
            background: var(--surface);
            border-radius: var(--radius-lg);
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            overflow: hidden;
            position: relative;
        }

        .box-illustration {
            width: 75%;
            height: 75%;
            background: linear-gradient(135deg, #F5C842 0%, #E8501A 100%);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            box-shadow: 0 20px 60px rgba(232, 80, 26, 0.3);
        }

        /* HOW IT WORKS */
        #how-it-works {
            padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header { text-align: center; margin-bottom: 3rem; }

        .section-label {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .step-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.75rem;
            border: 1px solid var(--border);
        }

        .step-number {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .step-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
        .step-card p { font-family: 'Playfair Display', serif; font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

        /* CONFIGURATOR */
        #konfigurator {
            padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        .configurator-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2rem;
            align-items: start;
        }
        @media (max-width: 960px) { .configurator-layout { grid-template-columns: 1fr; } }

        .config-steps { display: flex; flex-direction: column; gap: 1.25rem; }

        .config-step {
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: border-color 0.2s;
        }
        .config-step.active { border-color: var(--primary); }

        .config-step-header {
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .config-step-num {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background: var(--surface-2);
            color: var(--text-muted);
            font-weight: 700;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s;
        }
        .config-step.active .config-step-num,
        .config-step.completed .config-step-num { background: var(--primary); color: white; }

        .config-step-title { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem; }
        .config-step-subtitle { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }
        .config-step-content { padding: 0 1.5rem 1.5rem; }

        /* Size selector */
        .size-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.875rem;
        }

        .size-option {
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 1.25rem;
            cursor: pointer;
            text-align: center;
            transition: all 0.2s;
        }
        .size-option:hover { border-color: var(--primary); }
        .size-option.selected { border-color: var(--primary); background: #FEF0EB; }


        .size-name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.15rem; }
        .size-desc { font-family: 'Playfair Display', serif; font-size: 0.72rem; color: var(--text-muted); margin-top: 0.25rem; line-height: 1.4; }
        .size-price { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-top: 0.5rem; }

        /* Ingredient grid */
        .ingredient-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 0.65rem;
        }

        .ingredient-option {
            border: 2px solid var(--border);
            border-radius: 10px;
            padding: 0.875rem 0.75rem;
            cursor: pointer;
            transition: all 0.15s;
            position: relative;
        }
        .ingredient-option:hover { border-color: var(--primary); }
        .ingredient-option.selected { border-color: var(--primary); background: #FEF0EB; }
        .ingredient-option.disabled { opacity: 0.38; cursor: not-allowed; }
        .ingredient-option.disabled:hover { border-color: var(--border); }

        /* Extra-Zutaten (über Gratis-Limit) */
        .ingredient-option.extra-available {
            border-color: var(--primary);
            border-style: dashed;
            opacity: 0.75;
        }
        .ingredient-option.extra-available:hover { opacity: 1; }

        .ingredient-option.extra-selected {
            border-color: var(--primary);
            border-style: solid;
            background: rgba(190,83,23,0.08);
        }

        .extra-price-tag {
            position: absolute;
            bottom: 0.3rem;
            right: 0.3rem;
            font-size: 0.6rem;
            font-weight: 700;
            color: var(--primary);
            background: rgba(190,83,23,0.12);
            border-radius: 4px;
            padding: 0.1rem 0.3rem;
            line-height: 1;
        }

        .extra-info {
            font-size: 0.75rem;
            color: var(--primary);
            margin-top: 0.6rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .summary-tag.extra {
            background: rgba(190,83,23,0.1);
            color: var(--primary);
            border: 1px dashed var(--primary);
        }

        .price-breakdown {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.3rem;
            line-height: 1.6;
        }

        .ingredient-name { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.82rem; line-height: 1.3; }

        .ingredient-check {
            position: absolute;
            top: 0.4rem;
            right: 0.4rem;
            width: 1.1rem;
            height: 1.1rem;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-size: 0.6rem;
            display: none;
            align-items: center;
            justify-content: center;
        }
        .ingredient-option.selected .ingredient-check { display: flex; }

        /* Sauce */
        .sauce-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            gap: 0.75rem;
        }

        .sauce-option {
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 1rem;
            cursor: pointer;
            transition: all 0.15s;
        }
        .sauce-option:hover { border-color: var(--primary); }
        .sauce-option.selected { border-color: var(--primary); background: #FEF0EB; }

        .sauce-name { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem; }
        .sauce-desc { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.73rem; color: var(--text-muted); margin-top: 0.2rem; }

        .heat-badge {
            display: inline-block;
            font-size: 0.68rem;
            padding: 0.15rem 0.5rem;
            border-radius: 100px;
            margin-top: 0.4rem;
            font-weight: 600;
        }
        .heat-mild { background: #E8F5E9; color: #2E7D32; }
        .heat-medium { background: #FFF3E0; color: #E65100; }

        /* Summary sidebar */
        .box-summary {
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 1.5rem;
            position: sticky;
            top: 80px;
        }

        .box-summary h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .summary-section { margin-bottom: 1rem; }

        .summary-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 0.35rem;
        }

        .summary-value { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500; }
        .summary-value.empty { color: var(--text-muted); font-style: italic; font-weight: 400; }

        .summary-divider { height: 1px; background: var(--border); margin: 1rem 0; }

        .summary-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

        .summary-tag {
            font-family: 'DM Sans', sans-serif;
            background: var(--surface-2);
            border-radius: 100px;
            padding: 0.2rem 0.6rem;
            font-size: 0.72rem;
            font-weight: 500;
        }

        /* Progress bar */
        .config-progress { display: flex; gap: 0.4rem; margin-bottom: 1.5rem; }

        .progress-dot {
            height: 4px;
            flex: 1;
            border-radius: 2px;
            background: var(--border);
            transition: background 0.3s;
        }
        .progress-dot.done { background: var(--primary); }

        /* Selection counter */
        .selection-counter { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.65rem; }
        .selection-counter span { color: var(--primary); font-weight: 600; }

        /* Name & order section */
        .name-field-label { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; display: block; }

        .name-field {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            outline: none;
            transition: border-color 0.2s;
            background: var(--bg);
        }
        .name-field:focus { border-color: var(--primary); }

        .order-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }

        .publish-note { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.73rem; color: var(--text-muted); text-align: center; line-height: 1.4; }

        /* COMMUNITY */
        #community {
            padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        .community-header {
            text-align: center;
            margin-bottom: 2rem;
        }

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

        .feed-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feed-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

        .feed-card-visual {
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            position: relative;
        }

        .feed-card-body { padding: 1.25rem; }
        .feed-card-author { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.2rem; }

        .feed-card-name {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .feed-card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }

        .feed-tag {
            font-family: 'DM Sans', sans-serif;
            background: var(--surface-2);
            border-radius: 100px;
            padding: 0.2rem 0.6rem;
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .feed-card-actions { display: flex; gap: 0.65rem; align-items: center; }

        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.4rem 0.875rem;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: 1.5px solid var(--border);
            background: transparent;
            color: var(--text);
        }
        .action-btn:hover { border-color: var(--text); }
        .action-btn.liked { background: #FEF0EB; border-color: var(--primary); color: var(--primary); }
        .action-btn.reorder-btn:hover { background: var(--green); border-color: var(--green); color: white; }

        .feed-card-stats { margin-left: auto; font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }

        .size-badge {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(4px);
            border-radius: 100px;
            padding: 0.2rem 0.6rem;
            font-size: 0.72rem;
            font-weight: 700;
            border: 1px solid var(--border);
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(120px);
            background: var(--text);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 500;
            z-index: 500;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            white-space: nowrap;
        }
        .toast.show { transform: translateX(-50%) translateY(0); }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(4px);
            z-index: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 2rem;
            max-width: 460px;
            width: 100%;
            animation: modalIn 0.25s ease;
        }

        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.95) translateY(10px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .modal h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
        .modal p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; }
        .modal-actions { display: flex; gap: 0.75rem; justify-content: flex-end; flex-wrap: wrap; }

        /* LOYALTY */
        #treue {
            padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        .loyalty-card {
            background: var(--green);
            border-radius: var(--radius-lg);
            padding: clamp(1.75rem, 4vw, 2.75rem);
            color: white;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }
        @media (max-width: 768px) { .loyalty-card { grid-template-columns: 1fr; gap: 2rem; } }

        .loyalty-card-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 0.4rem;
            letter-spacing: -0.02em;
        }

        .loyalty-card-desc {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 0.9rem;
            opacity: 0.75;
            margin-bottom: 1.75rem;
        }

        .stamps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.6rem;
            margin-bottom: 1.1rem;
        }

        .stamp {
            aspect-ratio: 1;
            border-radius: 10px;
            border: 2px solid rgba(255,255,255,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            background: rgba(255,255,255,0.07);
        }

        .stamp.filled {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .stamp.ready {
            background: #f1831f;
            border-color: #f1831f;
            animation: stampPulse 1.8s ease-in-out infinite;
        }

        @keyframes stampPulse {
            0%, 100% { transform: scale(1.05); box-shadow: 0 0 0 0 rgba(241,131,31,0.5); }
            50%       { transform: scale(1.1);  box-shadow: 0 0 0 8px rgba(241,131,31,0); }
        }

        .loyalty-progress {
            font-size: 0.82rem;
            opacity: 0.7;
            margin-bottom: 1.25rem;
        }
        .loyalty-progress strong { opacity: 1; color: white; font-size: 0.95rem; }

        .btn-redeem {
            width: 100%;
            justify-content: center;
            background: #f1831f;
            color: white;
            border: none;
            font-size: 1rem;
            padding: 0.875rem;
            animation: stampPulse 1.8s ease-in-out infinite;
        }
        .btn-redeem:hover { background: #d96d10; }

        .loyalty-info-box {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius);
            padding: 1.1rem 1.25rem;
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
            margin-bottom: 0.75rem;
        }
        .loyalty-info-box:last-child { margin-bottom: 0; }

        .loyalty-info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

        .loyalty-info-text strong {
            display: block;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }
        .loyalty-info-text p {
            font-family: 'Playfair Display', serif;
            font-size: 0.8rem;
            opacity: 0.75;
            line-height: 1.5;
            font-style: italic;
        }

        /* Nav stamp badge */
        .nav-stamp-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--green);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.3rem 0.75rem;
            border-radius: 100px;
            cursor: pointer;
            transition: background 0.2s;
            border: none;
            font-family: 'DM Sans', sans-serif;
        }
        .nav-stamp-badge:hover { background: var(--green-light); }
        .nav-stamp-badge.complete { background: #f1831f; animation: stampPulse 1.8s ease-in-out infinite; }

        /* Footer */
        footer {
            background: var(--green);
            padding: 2.5rem clamp(1rem, 5vw, 4rem);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        footer p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
        footer p strong { color: rgba(255,255,255,0.9); }

        .hidden { display: none !important; }

        /* HERO VISUAL */
        .hero-visual-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #2D4F2D 0%, #E8501A 60%, #F5C842 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 2rem;
        }

        .hero-box-stack {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            width: 80%;
        }

        .hero-box-row {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            padding: 0.6rem 1rem;
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-box-row span { opacity: 0.75; font-size: 0.7rem; }

        /* STEPS CTA */
        .steps-cta {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        .trust-text {
            margin-top: 0.75rem;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* SOCIAL PROOF */
        #social-proof {
            padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        @media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }

        .stat-number {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--primary);
        }

        .stat-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.2rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .testimonial {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid var(--border);
        }

        .stars { display: flex; gap: 0.25rem; align-items: center; margin-bottom: 0.75rem; }
        .star-icon { width: 20px; height: 20px; object-fit: contain; mix-blend-mode: multiply; display: inline-block; }
        .star-icon-sm { width: 15px; height: 15px; object-fit: contain; mix-blend-mode: multiply; display: inline-block; vertical-align: middle; }
        .stamp-star { width: 55%; height: 55%; object-fit: contain; mix-blend-mode: multiply; }
        .feed-card-illus { width: 72%; height: 72%; object-fit: contain; mix-blend-mode: multiply; }
        .heat-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; vertical-align: middle; flex-shrink: 0; }
        .heat-mild .heat-dot { background: #2E7D32; }
        .heat-medium .heat-dot { background: #E65100; }
        .loyalty-info-icon img { width: 32px; height: 32px; object-fit: contain; mix-blend-mode: multiply; }

        .testimonial p {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 0.9rem;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .social-proof-cta {
            text-align: center;
        }

        /* LAUFBAND */
        .deco-strip {
            overflow: hidden;
            background: var(--green);
            padding: 0.9rem 0;
        }

        .deco-strip-track {
            display: flex;
            width: max-content;
            animation: marquee 28s linear infinite;
        }

        .deco-strip-track:hover { animation-play-state: paused; }

        @keyframes marquee {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        .deco-strip-set {
            display: flex;
            align-items: center;
            gap: 0;
            flex-shrink: 0;
        }

        .strip-img {
            height: 52px;
            mix-blend-mode: screen;
            opacity: 0.85;
            padding: 0 0.5rem;
            filter: brightness(1.2);
        }

        .strip-word {
            font-family: 'DM Sans', sans-serif;
            font-weight: 800;
            font-size: 0.78rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.55);
            padding: 0 1.5rem;
            white-space: nowrap;
        }

        .strip-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.8;
            flex-shrink: 0;
        }

        /* DESIGN ELEMENTS */
        .deco {
            position: absolute;
            pointer-events: none;
            user-select: none;
            mix-blend-mode: multiply;
        }

        @keyframes floatDeco {
            0%, 100% { transform: translateY(0px)   rotate(var(--r, 0deg)); }
            50%       { transform: translateY(-10px) rotate(var(--r, 0deg)); }
        }

        #hero        { position: relative; overflow: hidden; }
        #how-it-works{ position: relative; overflow: hidden; }
        #social-proof{ position: relative; overflow: hidden; }
        #konfigurator{ position: relative; overflow: hidden; }
        #community   { position: relative; overflow: hidden; }

        /* LOYALTY MODAL */
        .loyalty-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(6px);
            z-index: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.22s ease;
        }
        .loyalty-modal-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .loyalty-modal {
            background: var(--green);
            border-radius: var(--radius-lg);
            padding: clamp(1.5rem, 4vw, 2.5rem);
            max-width: 780px;
            width: 100%;
            color: white;
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.88) translateY(28px);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .loyalty-modal-overlay.open .loyalty-modal {
            transform: scale(1) translateY(0);
        }

        @media (max-width: 640px) {
            .loyalty-modal { grid-template-columns: 1fr; }
        }

        .loyalty-modal-header {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.25rem;
        }

        .loyalty-modal-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .loyalty-modal-close {
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
            flex-shrink: 0;
        }
        .loyalty-modal-close:hover { background: rgba(255,255,255,0.28); transform: rotate(90deg); }

        /* HAMBURGER / MOBILE NAV */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            flex-shrink: 0;
        }
        .hamburger span {
            display: block;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.28s ease;
            transform-origin: center;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-nav {
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: var(--green);
            z-index: 99;
            padding: 0.5rem 0 1rem;
            transform: translateY(-8px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.22s ease, transform 0.22s ease;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        .mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }

        .mobile-nav a {
            display: block;
            padding: 0.85rem clamp(1rem, 5vw, 2rem);
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            transition: color 0.15s, background 0.15s;
        }
        .mobile-nav a:hover { color: white; background: rgba(255,255,255,0.06); }

        .mobile-nav-cta {
            margin: 0.75rem clamp(1rem, 5vw, 2rem) 0 !important;
            background: var(--primary) !important;
            border-radius: 100px !important;
            text-align: center;
            color: white !important;
            border-bottom: none !important;
        }

        @media (max-width: 820px) {
            nav ul { display: none; }
            nav > div > a.btn-primary { display: none; }
            .hamburger { display: flex; }
        }

        /* SCROLL REVEAL */
        .fade-in {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* STICKY MOBILE CTA */
        .mobile-cta-bar {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            padding: 0.875rem 1.25rem;
            background: white;
            border-top: 1px solid var(--border);
            z-index: 97;
            box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
        }
        @media (max-width: 820px) {
            .mobile-cta-bar { display: block; }
            body { padding-bottom: 74px; }
        }

        /* Konfigurator section header with boxes illustration */
        .konfig-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .konfig-header-text { text-align: center; }
        .konfig-header-boxes {
            width: 110px;
            opacity: 0.8;
            mix-blend-mode: multiply;
            flex-shrink: 0;
        }