  <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --karamell-gold: #B68D5D;
            --sand-beige: #D4B895;
            --reines-weiss: #FFFFFF;
            --licht-gold: #E6D0A9;
            --zartes-creme: #FCFAFA;
            --dunkles-warmgrau: #594A3C;
            
            --primary: var(--karamell-gold);
            --primary-dark: #9a7549;
            --primary-light: var(--licht-gold);
            --accent: var(--sand-beige);
            --accent-hover: #c6a57f;
            --text: var(--dunkles-warmgrau);
            --text-light: #7a6b5d;
            --bg: var(--reines-weiss);
            --bg-alt: var(--zartes-creme);
            --bg-warm: var(--licht-gold);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            font-size: 17px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            overflow-x: hidden;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
            outline: 2px solid var(--primary-dark);
            outline-offset: 2px;
        }

        /* Header */
        #main {
            padding-top: 80px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(182, 141, 93, 0.08);
        }

        header.scrolled {
            box-shadow: 0 8px 32px rgba(182, 141, 93, 0.12);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            width: 100%;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.2s;
            white-space: nowrap;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:focus {
            outline: 2px solid var(--primary);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-phone {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
        }

        .header-phone:focus {
            outline: 2px solid var(--primary);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 24px rgba(212, 184, 149, 0.3);
            min-width: 44px;
            min-height: 38px;
            justify-content: center;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(212, 184, 149, 0.4);
        }

        .btn-primary:focus {
            outline: 2px solid var(--primary);
            outline-offset: 4px;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
            align-items: center;
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid var(--primary);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s;
        }

        #mobile-menu-checkbox {
            display: none;
        }

        .mobile-nav {
            display: none;
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            background: url('./Assets/Hero_Image_Frau_auf_Couch_mit_Logo_und_goldenen_Energielinien_20260406.png') center/cover no-repeat;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-start;
            padding: 20px 24px 40px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(230, 208, 169, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Great Vibes', cursive;
            font-size: 56px;
            line-height: 1.2;
            font-weight: 400;
            color: white;
            letter-spacing: 1px;
            margin-bottom: 0;
            animation: fadeInUp 0.8s ease forwards;
            text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
        }

        .inline-cta {
            background: white;
            padding: 40px 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .inline-cta .trust-badge {
            color: rgba(109, 88, 64, 0.75);
        }

        .hero-below {
            background: white;
            padding: 32px 24px 24px;
            text-align: center;
        }

        .hero-below-inner {
            max-width: 720px;
            margin: 0 auto;
        }

        .hero-below .subheadline {
            font-size: 18px;
            color: var(--text-secondary, #6b5c4e);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 32px;
        }

        .hero-below .hero-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .hero h1 .highlight {
            color: var(--licht-gold);
        }

        .hero-tagline {
            position: absolute;
            bottom: 32px;
            left: 0;
            right: 0;
            text-align: center;
            font-family: 'Great Vibes', cursive;
            font-size: 56px;
            line-height: 1.2;
            font-weight: 400;
            margin: 0;
            text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
        }

        .hero-tagline .highlight {
            color: var(--licht-gold);
        }

        .hero .subheadline {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.90);
            max-width: 720px;
            margin: 0 auto 48px;
            line-height: 1.7;
            font-weight: 300;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        .hero-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .btn-hero {
            background: var(--accent);
            color: white;
            padding: 20px 56px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: 1.5px;
            box-shadow: 0 12px 40px rgba(212, 184, 149, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(212, 184, 149, 0.5);
            background: var(--accent-hover);
        }

        .btn-hero:focus {
            outline: 3px solid var(--licht-gold);
            outline-offset: 4px;
        }

        .trust-line {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 12px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(109, 88, 64, 0.75);
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sections */
        section {
            padding: 100px 24px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 600;
            text-align: center;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Great Vibes', cursive;
            font-size: 48px;
            font-weight: 400;
            line-height: 1.3;
            letter-spacing: 1px;
            color: var(--primary);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 24px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            text-align: center;
            max-width: 680px;
            margin: 0 auto 64px;
            line-height: 1.7;
            font-weight: 300;
        }

        /* Section with Image */
        .section-with-image {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }

        .section-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 24px;
            box-shadow: 0 16px 56px rgba(182, 141, 93, 0.15);
        }

        /* Emotion Section */
        .emotion-section {
            background: var(--bg-alt);
            padding-bottom: 50px;
        }

        .emotion-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .emotion-card {
            background: white;
            border-radius: 24px;
            padding: 36px 28px 32px;
            box-shadow: 0 8px 32px rgba(182, 141, 93, 0.10);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            border-top: 3px solid var(--licht-gold);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .emotion-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(182, 141, 93, 0.18);
        }

        .emotion-card--wide {
            grid-column: 1 / -1;
            flex-direction: row;
            align-items: center;
            gap: 28px;
        }

        .emotion-card-icon {
            width: 56px;
            height: 56px;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(230, 208, 169, 0.3), rgba(182, 141, 93, 0.15));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            color: var(--primary);
        }

        .emotion-card-icon svg {
            width: 100%;
            height: 100%;
        }

        .emotion-card-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.3px;
            margin: 0;
        }

        .emotion-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
            font-weight: 300;
            margin: 0;
        }

        .emotion-card-icon--large {
            width: 72px;
            height: 72px;
        }

        .emotion-card:nth-child(1) { animation-delay: 0.1s; }
        .emotion-card:nth-child(2) { animation-delay: 0.2s; }
        .emotion-card:nth-child(3) { animation-delay: 0.3s; }
        .emotion-card:nth-child(4) { animation-delay: 0.4s; }
        .emotion-card:nth-child(5) { animation-delay: 0.5s; }

        .emotion-closing {
            text-align: center;
            margin-top: 56px;
            font-size: 20px;
            color: var(--primary);
            font-weight: 400;
            font-style: italic;
            line-height: 1.6;
        }

        /* Solution Section */
        .solution-section {
            background: white;
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .solution-content {
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
        }

        .solution-content p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 24px;
            font-weight: 300;
        }

        .method-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-top: 64px;
        }

        .method-card {
            background: linear-gradient(135deg, var(--zartes-creme) 0%, var(--licht-gold) 100%);
            padding: 48px 48px 48px;
            padding-top: 268px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 12px 40px rgba(182, 141, 93, 0.12);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .method-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 240px;
            background-size: cover;
            background-position: center top;
            border-radius: 24px 24px 0 0;
        }

        .method-card:first-child::before {
            background-image: url('./Assets/Fern-Reiki.jpg');
            background-position: center center;
            opacity: 0.55;
        }

        .method-card:last-child::before {
            background-image: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?w=800&q=80');
            background-position: center center;
            opacity: 0.55;
        }

        .method-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 56px rgba(182, 141, 93, 0.18);
        }

        .method-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 8px 24px rgba(182, 141, 93, 0.15);
            position: relative;
            z-index: 1;
        }

        .method-card h3 {
            font-size: 28px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }

        .method-card p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 0;
            font-size: 16px;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        /* Why Section */
        .why-section {
            background: var(--bg-alt);
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .why-content {
            max-width: 780px;
            margin: 0 auto;
        }

        .why-content p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 24px;
            text-align: center;
            font-weight: 300;
        }

        .why-image-wrapper {
            margin: 56px auto;
            max-width: 600px;
            text-align: center;
        }

        .elis-bio {
            margin: 32px auto 0;
            max-width: 780px;
            text-align: center;
        }

        .elis-bio-title {
            font-family: 'Great Vibes', cursive;
            font-size: 52px;
            font-weight: 400;
            color: var(--primary);
            margin: 0 0 28px;
            line-height: 1.4;
        }

        .elis-bio p {
            color: var(--text-light, #7a6a5a);
            font-size: 18px;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .elis-bio p:last-child {
            margin-bottom: 0;
        }

        .elis-signature {
            font-family: 'Great Vibes', cursive;
            font-size: 42px;
            color: var(--text-primary, #594a3c);
            margin: 24px 0 0;
            letter-spacing: 1px;
            text-align: center;
            display: block;
        }

        .why-highlights {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin-top: 56px;
        }

        .why-highlight {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: white;
            padding: 32px;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(182, 141, 93, 0.08);
        }

        .why-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--licht-gold), var(--sand-beige));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-highlight h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .why-highlight p {
            font-size: 15px;
            color: var(--text-light);
            margin: 0;
            text-align: left;
            font-weight: 300;
        }

        /* Benefits Section */
        .benefits-section {
            background: white;
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .benefits-intro {
            margin-bottom: 56px;
        }

        .benefits-intro--fullwidth {
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            margin-bottom: 56px;
        }

        .benefits-fullwidth-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .benefit-card {
            background: var(--bg-alt);
            padding: 36px;
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            gap: 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(182, 141, 93, 0.08);
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(182, 141, 93, 0.12);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 16px rgba(182, 141, 93, 0.12);
        }

        .benefit-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .benefit-card p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
            font-weight: 300;
        }

        /* Process Section */
        .process-section {
            background: var(--bg-alt);
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .process-image-wrapper {
            margin: 0 auto 56px;
            max-width: 800px;
        }

        .process-image-wrapper--fullwidth {
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            margin-bottom: 56px;
            max-width: none;
        }

        .process-fullwidth-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .process-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-step {
            background: white;
            padding: 40px;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 8px 32px rgba(182, 141, 93, 0.1);
            border: 1px solid rgba(182, 141, 93, 0.08);
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--karamell-gold), var(--sand-beige));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            box-shadow: 0 6px 20px rgba(182, 141, 93, 0.25);
        }

        .process-step h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .process-step p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.7;
            font-weight: 300;
        }

        /* Trust Section */
        .trust-section {
            background: white;
            padding-top: 50px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            max-width: 900px;
            margin: 0 auto;
        }

        .trust-card {
            background: linear-gradient(135deg, var(--zartes-creme), var(--licht-gold));
            padding: 32px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 24px;
            border: 1px solid rgba(182, 141, 93, 0.12);
        }

        .trust-icon-circle {
            width: 64px;
            height: 64px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 16px rgba(182, 141, 93, 0.15);
        }

        .trust-card p {
            font-size: 17px;
            color: var(--text);
            font-weight: 400;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(89, 74, 60, 0.96) 0%, rgba(109, 88, 64, 0.94) 100%),
                        url('https://images.unsplash.com/photo-1545389336-cf090694435e?w=1600&q=80') center/cover;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(230, 208, 169, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .cta-container {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-section .section-label {
            color: rgba(230, 208, 169, 0.9);
        }

        .cta-section .section-title {
            color: white;
        }

        .cta-section .section-subtitle {
            color: rgba(255, 255, 255, 0.85);
        }

        .cta-columns {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-top: 64px;
        }

        .cta-form-wrapper {
            background: white;
            padding: 48px;
            border-radius: 24px;
            box-shadow: 0 16px 56px rgba(0, 0, 0, 0.25);
        }

        .cta-form-wrapper h3 {
            font-size: 28px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 32px;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .form-group {
            margin-bottom: 24px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            box-sizing: border-box;
            padding: 16px 20px;
            border: 1px solid rgba(182, 141, 93, 0.2);
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.2s;
            background: var(--zartes-creme);
            color: var(--text);
            min-height: 44px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(182, 141, 93, 0.1);
            background: white;
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            background: var(--accent);
            color: white;
            padding: 18px;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(212, 184, 149, 0.3);
            min-height: 44px;
        }

        .btn-submit:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(212, 184, 149, 0.4);
        }

        .btn-submit:focus {
            outline: 3px solid var(--licht-gold);
            outline-offset: 4px;
        }

        .cta-phone-wrapper {
            text-align: center;
            padding: 48px 24px;
        }

        .cta-phone-wrapper h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .cta-phone-wrapper p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 36px;
            font-weight: 300;
        }

        .btn-phone-large {
            background: var(--accent);
            color: white;
            padding: 20px 52px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 1.5px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 12px 40px rgba(212, 184, 149, 0.4);
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
        }

        .btn-phone-large:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(212, 184, 149, 0.5);
        }

        .btn-phone-large:focus {
            outline: 3px solid var(--licht-gold);
            outline-offset: 4px;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-alt);
        }

        .faq-container {
            max-width: 840px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 36px;
            border-radius: 20px;
            margin-bottom: 24px;
            box-shadow: 0 8px 24px rgba(182, 141, 93, 0.08);
            border: 1px solid rgba(182, 141, 93, 0.08);
        }

        .faq-item h3 {
            font-size: 19px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .faq-item p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.8;
            margin: 0;
            font-weight: 300;
        }

        /* Footer */
        footer {
            background: var(--dunkles-warmgrau);
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 24px 36px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-column h4 {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .footer-column p,
        .footer-column a {
            font-size: 15px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .footer-column a:hover {
            color: var(--licht-gold);
        }

        .footer-column a:focus {
            outline: 2px solid var(--licht-gold);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 36px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-top: 16px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            min-width: 44px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .footer-links a:hover {
            color: var(--licht-gold);
        }

        .footer-links a:focus {
            outline: 2px solid var(--licht-gold);
            outline-offset: 4px;
            border-radius: 4px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal:target {
            display: flex;
        }

        .modal-content {
            background: white;
            max-width: 800px;
            max-height: 85vh;
            overflow-y: auto;
            border-radius: 24px;
            padding: 56px;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            background: var(--bg-alt);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text);
            font-size: 28px;
            font-weight: 700;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--primary);
            color: white;
        }

        .modal-close:focus {
            outline: 2px solid var(--primary);
            outline-offset: 4px;
        }

        .modal-content h2 {
            font-family: 'Great Vibes', cursive;
            font-size: 42px;
            font-weight: 400;
            color: var(--primary);
            margin-bottom: 28px;
        }

        .modal-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            margin-top: 32px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .modal-content ul {
            margin: 0 0 16px 24px;
            padding: 0;
        }

        .modal-content ul li {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            font-weight: 300;
            margin-bottom: 4px;
        }

        .modal-content h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text);
            margin-top: 24px;
            margin-bottom: 8px;
        }

        .modal-content a {
            color: var(--primary);
            text-decoration: underline;
        }

        .modal-content p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 16px;
            font-weight: 300;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 24px;
            left: 24px;
            right: 24px;
            max-width: 500px;
            background: white;
            padding: 32px;
            border-radius: 20px;
            box-shadow: 0 16px 56px rgba(0, 0, 0, 0.2);
            z-index: 9998;
            display: none;
        }

        .cookie-banner.show {
            display: block;
        }

        .cookie-banner p {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 20px;
            font-weight: 300;
            line-height: 1.6;
        }

        .cookie-banner button {
            background: var(--accent);
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 16px rgba(212, 184, 149, 0.3);
            min-width: 44px;
            min-height: 44px;
        }

        .cookie-banner button:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 184, 149, 0.4);
        }

        .cookie-banner button:focus {
            outline: 2px solid var(--primary);
            outline-offset: 4px;
        }

        @media (max-width: 767px) {
            .emotion-cards-grid {
                grid-template-columns: 1fr;
            }
            .emotion-card--wide {
                flex-direction: column;
            }
        }

        /* Responsive */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 72px;
            }

            .hero-tagline {
                font-size: 72px;
            }

            .hero .subheadline {
                font-size: 22px;
            }

            .section-title {
                font-size: 56px;
            }

            nav {
                gap: 40px;
            }

            .section-with-image {
                grid-template-columns: repeat(2, 1fr);
            }

            .method-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-highlights {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-columns {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .process-steps {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 80px;
            }

            section {
                padding: 120px 24px;
            }

        }

        @media (max-width: 767px) {
            nav {
                display: none;
            }

            .header-cta {
                gap: 12px;
            }

            .header-phone {
                display: none;
            }

            .btn-primary {
                padding: 12px 24px;
                font-size: 14px;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-nav {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 12px 32px rgba(182, 141, 93, 0.15);
                flex-direction: column;
                z-index: 1000;
            }

            .mobile-nav.open {
                display: flex;
            }

            .mobile-nav a {
                padding: 18px 24px;
                border-bottom: 1px solid rgba(182, 141, 93, 0.08);
                color: var(--text);
                text-decoration: none;
                font-weight: 500;
                letter-spacing: 0.5px;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .mobile-nav a:hover {
                background: var(--bg-alt);
                color: var(--primary);
            }

            .mobile-nav a:focus {
                outline: 2px solid var(--primary);
                outline-offset: -2px;
            }

            .section-image {
                width: 100%;
                height: auto;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
    </style>