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

        :root {
            --gold: #c9a227;
            --gold-light: #e4c76b;
            --gold-dark: #a68521;
            --black: #1a1a1a;
            --white: #ffffff;
            --gray-100: #f7f7f7;
            --gray-200: #e8e8e8;
            --gray-400: #999999;
            --gray-600: #666666;
            --gray-800: #333333;
            
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
            
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--black);
            background: var(--white);
            overflow-x: hidden;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

        p {
            font-size: 1.125rem;
            color: var(--gray-600);
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gray-200);
            transition: var(--transition);
        }

        .nav.scrolled {
            box-shadow: var(--shadow-sm);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .nav-logo img {
            height: 45px;
            width: auto;
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--black);
            letter-spacing: 0.02em;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--gray-800);
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            position: relative;
            transition: var(--transition);
        }

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

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

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

        .nav-cta {
            background: var(--gold);
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

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

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--black);
            transition: var(--transition);
        }

        /* ===== HERO SECTION WITH VIDEO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: #1a2332; /* Fallback color */
            margin-top: 0;
        }

        /* Video Background */
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            object-fit: cover;
            object-position: center 10%;
        }

        /* Overlay for better text readability */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(26, 35, 50, 0.7) 0%,
                rgba(26, 35, 50, 0.5) 100%
            );
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            padding: 2rem;
            max-width: 900px;
            z-index: 2;
        }

        .hero-tagline {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--gold-light);
            margin-bottom: 120px; /* Push headline down to keep face visible */
            font-weight: 500;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .hero-description {
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.95);
            max-width: 700px;
            margin: 0 auto 1.5rem;
        }

        .hero-speed {
            text-align: center;
            width: 100%;
            display: block;
        }

        /* Trust Badges */
        .hero-credentials {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2rem;
        }

        .hero-credentials span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        /* Additional Links */
        .hero-cta-hint {
            margin-top: 1.2rem;
            font-size: 0.875rem;
            color: rgba(255,255,255,0.7);
            text-align: center;
        }

        .hero-cta-hint a {
            color: var(--gold-light);
            text-decoration: none;
            border-bottom: 1px solid var(--gold-light);
            transition: var(--transition);
        }

        .hero-cta-hint a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--black);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 30px;
            height: 30px;
            stroke: var(--white);
            opacity: 0.7;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* ===== SECTIONS BASE ===== */
        section {
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            margin-bottom: 1rem;
            color: var(--black);
        }

        .section-header p {
            font-size: 1.125rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--gray-100);
        }

        .about-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--gold);
            border-radius: 8px;
            z-index: -1;
        }

        .about-content h2 {
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .highlight-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            color: var(--gold);
        }

        .highlight-item span {
            font-weight: 500;
            color: var(--gray-800);
        }

        /* About CTA Button */
        .about-cta {
            margin-top: 2rem;
            text-align: center;
        }

        /* About Navigation Tabs - Schnelleinstiege (volle Breite, zentriert) */
        .about-nav-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
            padding-top: 2.5rem;
            border-top: 2px solid var(--gray-200);
            flex-wrap: wrap;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-nav-tab {
            padding: 1rem 1.5rem;
            font-family: var(--font-body);
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--gray-700);
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
        }

        .about-nav-tab:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
            background: rgba(201, 162, 39, 0.05);
        }

        .about-nav-tab:active {
            transform: translateY(1px);
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            background: var(--white);
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .service-icon svg {
            width: 30px;
            height: 30px;
            stroke: var(--white);
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--black);
        }

        .service-card p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--gold-dark);
            gap: 0.75rem;
        }

        /* Free Resources Card */
        .service-card-free {
            border: 2px solid var(--gold);
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), rgba(201, 162, 39, 0.02));
        }

        .service-card-free::before {
            height: 4px;
            background: var(--gold);
            transform: scaleX(1);
        }

        .service-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--gold);
            color: var(--white);
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ===== CERTIFICATES SECTION ===== */
        .certificates {
            background: var(--gray-100);
        }

        .certificates-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .certificate-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            transition: var(--transition);
        }

        .certificate-item:hover {
            transform: scale(1.05);
        }

        .certificate-item img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            filter: grayscale(0);
            transition: var(--transition);
        }

        .certificate-item span {
            font-size: 0.875rem;
            color: var(--gray-600);
            text-align: center;
            font-weight: 500;
        }
        .certificate-item .certificate-title {
            font-weight: 700;
            color: var(--black);
            text-align: center;
        }
        .certificate-item .certificate-desc {
            font-size: 0.95rem;
            color: var(--gray-600);
            text-align: center;
            max-width: 220px;
        }

        /* ===== TESTIMONIALS / REVIEWS SECTION ===== */
        .reviews {
            background: var(--white);
            padding: 6rem 0;
        }

        .reviews .section-header {
            padding: 0 2rem;
        }

        .reviews-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        #justreview-testimonials {
            width: 100%;
        }

        /* ===== BLOG HERO SECTION ===== */
        .blog-hero {
            position: relative;
            height: 350px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../images/blog-hero-bg-optimized.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax effect */
        }

        .blog-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.3),
                rgba(0, 0, 0, 0.5)
            );
            z-index: 1;
        }

        .blog-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .blog-hero-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .blog-hero-content p {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .blog-hero-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            font-size: 1.125rem;
            font-weight: 500;
            border-radius: 50px;
            transition: all var(--transition);
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
        }

        .blog-hero-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile: Disable parallax for better performance */
        @media (max-width: 768px) {
            .blog-hero {
                height: 300px;
                background-attachment: scroll;
            }

            .blog-hero-content h2 {
                font-size: 2rem;
            }

            .blog-hero-content p {
                font-size: 1rem;
            }

            .blog-hero-btn {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
        }

        /* ===== LEBENSBALANCE TEASER SECTION ===== */
        .lebensbalance-teaser {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(201, 162, 39, 0.02) 100%);
            padding: 6rem 0;
        }

        .lebensbalance-teaser-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .lebensbalance-teaser-content h2 {
            margin-bottom: 1.5rem;
            color: var(--black);
        }

        .lebensbalance-teaser-content p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .lebensbalance-teaser-features {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .lebensbalance-teaser-image {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wheel-illustration {
            width: 100%;
            max-width: 400px;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
        }

        @media (max-width: 968px) {
            .lebensbalance-teaser-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .lebensbalance-teaser-image {
                order: -1;
            }
        }

        @media (max-width: 640px) {
            .lebensbalance-teaser {
                padding: 4rem 0;
            }

            .wheel-illustration {
                max-width: 300px;
            }
        }

        /* ===== ERFÜLLUNGSRADAR TEASER SECTION ===== */
        .erfuellungsradar-teaser {
            background: linear-gradient(135deg, rgba(44, 95, 125, 0.05) 0%, rgba(201, 162, 39, 0.05) 100%);
            padding: 6rem 0;
        }

        .erfuellungsradar-teaser-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .erfuellungsradar-teaser-content h2 {
            margin-bottom: 1.5rem;
            color: var(--black);
        }

        .erfuellungsradar-teaser-content p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .erfuellungsradar-teaser-features {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .teaser-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .teaser-feature svg {
            width: 24px;
            height: 24px;
            stroke: var(--gold);
            flex-shrink: 0;
        }

        .teaser-feature span {
            font-size: 1rem;
            color: var(--gray-800);
        }

        .erfuellungsradar-teaser-image {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .radar-illustration {
            width: 100%;
            max-width: 400px;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
        }

        .teaser-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--gold);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
        }

        @media (max-width: 968px) {
            .erfuellungsradar-teaser-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .erfuellungsradar-teaser-image {
                order: -1;
            }

            .teaser-badge {
                top: -20px;
                right: 20px;
            }
        }

        @media (max-width: 640px) {
            .erfuellungsradar-teaser {
                padding: 4rem 0;
            }

            .radar-illustration {
                max-width: 300px;
            }
        }

        /* ===== WERTEFINDER TEASER SECTION ===== */
        .wertefinder-teaser {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(201, 162, 39, 0.02) 100%);
            padding: 6rem 0;
        }

        .wertefinder-teaser-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .wertefinder-teaser-content h2 {
            margin-bottom: 1.5rem;
            color: var(--black);
        }

        .wertefinder-teaser-content p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .wertefinder-teaser-features {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .wertefinder-teaser-image {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .values-illustration {
            width: 100%;
            max-width: 400px;
            height: auto;
        }

        @media (max-width: 968px) {
            .wertefinder-teaser-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .wertefinder-teaser-image {
                order: -1;
            }
        }

        @media (max-width: 640px) {
            .wertefinder-teaser {
                padding: 4rem 0;
            }

            .values-illustration {
                max-width: 300px;
            }
        }

        /* ===== CALENDAR SECTION - VOLLE BREITE ===== */
        .calendar {
            background: var(--gray-100);
            padding: 6rem 0;
            width: 100%;
        }

        .calendar .section-header {
            padding: 0 2rem;
        }

        .calendar-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .zeeg-wrapper {
            width: 100%;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            min-height: 900px;
        }

        /* Zeeg Widget Styling */
        .zeeg-inline-widget {
            width: 100% !important;
            height: 900px !important;
            min-height: 900px !important;
        }
        
        @media (max-width: 768px) {
            .zeeg-inline-widget {
                height: 900px !important;
                min-height: 900px !important;
            }
        }
        
        @media (max-width: 480px) {
            .zeeg-inline-widget {
                height: 1000px !important;
                min-height: 1000px !important;
            }
        }

        /* ===== NEWSLETTER SECTION - BREVO ===== */
        .newsletter {
            padding: 0;
            width: 100%;
        }

        .newsletter .sib-form {
            padding: 4rem 2rem;
        }

        .newsletter .sib-form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-note {
            text-align: center;
            font-size: 0.875rem;
            color: rgba(255,255,255,0.6);
            margin-top: 1rem;
            padding: 0 2rem;
        }

        /* ===== NEWSLETTER MOBILE RESPONSIVE ===== */
        @media (max-width: 768px) {
            .newsletter {
                padding: 0 !important;
            }
            .newsletter .sib-form {
                padding: 2rem 1rem !important;
            }
            /* Newsletter Container auf volle Breite */
            .newsletter .newsletter-container {
                padding: 0 16px !important;
            }
            /* Newsletter Grid für Mobile */
            .newsletter .newsletter-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            /* Form Card volle Breite */
            .newsletter .newsletter-form-card {
                padding: 1.5rem !important;
                margin: 0 !important;
                width: 100% !important;
                box-sizing: border-box !important;
                border-radius: 12px !important;
            }
            /* Alle Inputs auf volle Breite */
            .newsletter input[type="text"],
            .newsletter input[type="email"],
            .newsletter .input {
                width: 100% !important;
                box-sizing: border-box !important;
                font-size: 16px !important; /* Verhindert Zoom auf iOS */
            }
            /* Submit Button auf volle Breite */
            .newsletter button[type="submit"],
            .newsletter .sib-form-block__button {
                width: 100% !important;
                box-sizing: border-box !important;
            }
            /* Brevo Container */
            .newsletter .sib-form-container,
            .newsletter #sib-container {
                max-width: 100% !important;
                width: 100% !important;
            }
            /* Error/Success Messages */
            .newsletter .sib-form-message-panel {
                max-width: 100% !important;
            }
            /* Wertefinder Bonus Box */
            .newsletter .wertefinder-bonus {
                padding: 1rem !important;
            }
            /* Überschriften */
            .newsletter h1,
            .newsletter h2 {
                font-size: 1.75rem !important;
            }
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .footer-brand img {
            height: 50px;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
            max-width: 300px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
        }

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

        .footer-col li {
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
        }

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

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.875rem;
            transition: var(--transition);
        }

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

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                max-width: 500px;
                margin: 0 auto;
            }

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

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

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: var(--shadow-md);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

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

            .about-highlights {
                grid-template-columns: 1fr;
            }

            .about-nav-tabs {
                gap: 0.25rem;
                justify-content: center;
                padding-bottom: 0.5rem;
            }

            .about-nav-tab {
                flex-shrink: 0;
                font-size: 0.9375rem;
                padding: 0.75rem 1rem;
            }

            .certificates-grid {
                gap: 2rem;
            }

            .certificate-item img {
                width: 100px;
                height: 100px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-social {
                justify-content: center;
            }

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

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 4rem 1rem;
            }

            .nav-container {
                padding: 1rem;
            }
        }

        /* Blog Hero Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes subtlePulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
            }
            50% {
                box-shadow: 0 4px 30px rgba(201, 162, 39, 0.6);
            }
        }

        /* Gestaffelte Animationen für Blog Hero */
        .blog-hero-content h2 {
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .blog-hero-content p {
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .blog-hero-btn {
            animation: fadeInUp 0.8s ease-out 0.6s backwards, subtlePulse 3s ease-in-out 1.5s infinite;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .blog-hero-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .blog-hero-btn:hover::after {
            transform: translateX(4px);
        }
