.elementor-14 .elementor-element.elementor-element-3ec417b{--display:flex;--margin-top:0px;--margin-bottom:120px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS */:root {
            --primary: #1a3a4a;
            --secondary: #4a9bb8;
            --accent: #7ec8e3;
            --night-dark: #0d1b2a;
            --night-mid: #1b3a4b;
            --night-light: #274060;
            --cloud: #f0f5f8;
            --cloud-soft: #e8f4f8;
            --text: #2d3748;
            --text-light: #5a6b7a;
            --white: #ffffff;
            --star: rgba(255, 255, 255, 0.8);
            --gold: #f59e0b;
            --success: #10b981;
            --purple: #8b5cf6;
            --orange: #f97316;
            --rose: #f43f5e;
            --blue: #3b82f6;
            --cyan: #06b6d4;
             }

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

        /* Hero Section */
        .hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, var(--cloud-color) 0%, var(--night-mid) 50%, var(--secondary) 100%);
            color: var(--white);
            text-align: center;
            padding: 80px 20px 180px;
            position: relative;
            overflow: hidden;
        }

        /* Stars */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(2px 2px at 50px 50px, var(--star), transparent),
                radial-gradient(2px 2px at 150px 100px, rgba(255,255,255,0.5), transparent),
                radial-gradient(1px 1px at 250px 60px, var(--star), transparent),
                radial-gradient(2px 2px at 350px 150px, rgba(255,255,255,0.4), transparent),
                radial-gradient(1px 1px at 450px 80px, var(--star), transparent),
                radial-gradient(2px 2px at 550px 180px, rgba(255,255,255,0.6), transparent),
                radial-gradient(1px 1px at 650px 40px, var(--star), transparent),
                radial-gradient(2px 2px at 750px 120px, rgba(255,255,255,0.5), transparent),
                radial-gradient(1px 1px at 850px 90px, var(--star), transparent),
                radial-gradient(2px 2px at 950px 160px, rgba(255,255,255,0.4), transparent),
                radial-gradient(1px 1px at 1050px 70px, var(--star), transparent),
                radial-gradient(2px 2px at 1150px 140px, var(--star), transparent);
            background-size: 1200px 200px;
            animation: twinkle 7s ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Cloud Wave */
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,64 C120,100 240,110 360,90 C480,70 600,90 720,95 C840,100 960,80 1080,75 C1200,70 1320,90 1440,85 L1440,120 L0,120 Z'/%3E%3Cpath fill='%23f0f5f8' fill-opacity='0.5' d='M0,80 C150,95 300,100 450,85 C600,70 750,95 900,90 C1050,85 1200,100 1350,95 L1440,90 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center;
            background-size: cover;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .hero h1 strong {
            font-weight: 600;
            color: var(--accent);
        }

        .hero .tagline {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .hero-ctas {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .hero-btn.primary {
            background: var(--white);
            color: var(--secondary);
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .hero-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
        }

        .hero-btn.secondary {
            background: rgba(255,255,255,0.12);
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.4);
        }

        .hero-btn.secondary:hover {
            background: rgba(255,255,255,0.2);
        }

        /* Container */
        .containerX {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.3rem;
            color: var(--primary);
            font-weight: 300;
            margin-bottom: 15px;
        }

        .section-header .lead {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Quick Nav */
        .quick-nav-section {
            padding: 80px 20px;
            background: var(--white);
            margin-top: -60px;
            position: relative;
            z-index: 2;
        }

        .quick-nav-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .quick-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px 15px;
            background: var(--cloud);
            border-radius: 16px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s;
            text-align: center;
        }

        .quick-nav-item:hover {
            background: var(--secondary);
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(74, 155, 184, 0.3);
        }

        .quick-nav-item .icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .quick-nav-item span {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Testsieger Section */
        .testsieger-section {
            padding: 100px 20px;
            background: var(--cloud);
        }

        .testsieger-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold), #fbbf24);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
        }

        .testsieger-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .testsieger-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .testsieger-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .testsieger-card.featured {
            border: 3px solid var(--gold);
            position: relative;
        }

        .testsieger-card.featured::before {
            content: '🏆 Testsieger';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 1;
        }

        .card-image {
            height: 160px;
            background: linear-gradient(135deg, var(--cloud) 0%, var(--cloud-soft) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .card-content {
            padding: 25px;
        }

        .card-brand {
            font-size: 0.8rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .card-title {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .card-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .rating-badge {
            background: var(--success);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .rating-source {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .card-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .card-features li {
            font-size: 0.85rem;
            color: var(--text-light);
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-features li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--cloud);
        }

        .card-price {
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: 700;
        }

        .card-price span {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-light);
            display: block;
        }

        .card-btn {
            padding: 10px 20px;
            background: var(--secondary);
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .card-btn:hover {
            background: var(--primary);
        }

        /* Matratzenarten Section */
        .arten-section {
            padding: 100px 20px;
            background: var(--white);
        }

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

        .art-card {
            background: var(--cloud);
            border-radius: 24px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s;
        }

        .art-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.12);
        }

        .art-card-header {
            padding: 30px;
            color: var(--white);
            position: relative;
        }

      
        .art-card-header.kaltschaum { background: linear-gradient(135deg, var(--blue), #60a5fa); }
        .art-card-header.federkern { background: linear-gradient(135deg, var(--purple), #a78bfa); }
        .art-card-header.latex { background: linear-gradient(135deg, var(--success), #34d399); }
        .art-card-header.visco { background: linear-gradient(135deg, var(--orange), #fb923c); }
        .art-card-header.gelschaum { background: linear-gradient(135deg, var(--cyan), #22d3ee); }
        .art-card-header.hybrid { background: linear-gradient(135deg, var(--primary), var(--night-light)); }
        .art-card-header.boxspring { background: linear-gradient(135deg, var(--rose), #fb7185); }


        .art-card-header .icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .art-card-header h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .art-card-header .tagline {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .art-card-body {
            padding: 25px 30px;
        }

        .art-card-body p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .art-card-body .features {
            list-style: none;
            margin-bottom: 20px;
        }

        .art-card-body .features li {
            font-size: 0.85rem;
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .art-card-body .features li.pro::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
        }

        .art-card-body .features li.con::before {
            content: '✗';
            color: var(--rose);
            font-weight: 700;
        }

        .art-card-link {
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Schlaftypen Section */
        .schlaftypen-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, var(--night-dark) 0%, var(--night-mid) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .schlaftypen-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.15), transparent),
                radial-gradient(1px 1px at 300px 100px, rgba(255,255,255,0.1), transparent),
                radial-gradient(1px 1px at 500px 30px, rgba(255,255,255,0.15), transparent),
                radial-gradient(1px 1px at 700px 80px, rgba(255,255,255,0.1), transparent);
            opacity: 0.5;
        }

        .schlaftypen-content {
            position: relative;
            z-index: 1;
        }

        .schlaftypen-section h2 {
            text-align: center;
            font-size: 2.3rem;
            font-weight: 300;
            margin-bottom: 15px;
        }

        .schlaftypen-section .lead {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .schlaftypen-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .schlaftyp-card {
            background: rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }

        .schlaftyp-card:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-5px);
        }

        .schlaftyp-card .icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .schlaftyp-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .schlaftyp-card p {
            font-size: 0.9rem;
            opacity: 0.85;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .schlaftyp-card .empfehlung {
            background: rgba(255,255,255,0.15);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* ===== NEU: Boxspring Entscheidungshilfe Section ===== */
        .boxspring-decision-section {
            padding: 100px 20px;
            background: var(--white);
        }

        .boxspring-decision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .decision-box {
            background: var(--cloud);
            border-radius: 24px;
            padding: 35px;
            position: relative;
            overflow: hidden;
        }

        .decision-box.yes {
            border-left: 5px solid var(--success);
        }

        .decision-box.no {
            border-left: 5px solid var(--rose);
        }

        .decision-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .decision-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
        }

        .decision-box.yes .decision-icon {
            background: linear-gradient(135deg, var(--success), #34d399);
        }

        .decision-box.no .decision-icon {
            background: linear-gradient(135deg, var(--rose), #fb7185);
        }

        .decision-header h3 {
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: 600;
            margin: 0;
        }

        .decision-list {
            list-style: none;
            margin-bottom: 25px;
        }

        .decision-list li {
            padding: 10px 0;
            font-size: 0.95rem;
            color: var(--text);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .decision-list li:last-child {
            border-bottom: none;
        }

        .decision-list li::before {
            content: '→';
            color: var(--secondary);
            font-weight: 700;
            flex-shrink: 0;
        }

        .decision-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .decision-cta:hover {
            color: var(--primary);
        }

        /* Boxspring Quick Facts */
        .boxspring-quickfacts {
            background: linear-gradient(135deg, var(--night-dark) 0%, var(--night-mid) 100%);
            border-radius: 24px;
            padding: 40px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .boxspring-quickfacts::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(1px 1px at 50px 30px, rgba(255,255,255,0.15), transparent),
                radial-gradient(1px 1px at 150px 80px, rgba(255,255,255,0.1), transparent),
                radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.15), transparent);
            opacity: 0.5;
        }

        .boxspring-quickfacts-content {
            position: relative;
            z-index: 1;
        }

        .boxspring-quickfacts h4 {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 35px;
        }

        .boxspring-quickfacts h4 span {
            display: block;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 8px;
        }

        .quickfacts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .quickfact {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.08);
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }

        .quickfact-icon {
            font-size: 2rem;
            margin-bottom: 12px;
            display: block;
        }

        .quickfact-value {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--accent);
        }

        .quickfact-label {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        /* Härtegrad Section */
        .haertegrad-section {
            padding: 100px 20px;
            background: var(--cloud);
        }

        .haertegrad-table-wrapper {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .haertegrad-table {
            width: 100%;
            border-collapse: collapse;
        }

        .haertegrad-table th,
        .haertegrad-table td {
            padding: 20px 25px;
            text-align: left;
        }

        .haertegrad-table th {
            background: var(--primary);
            color: var(--white);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .haertegrad-table tr:nth-child(even) {
            background: var(--cloud-soft);
        }

        .haertegrad-table td {
            font-size: 0.95rem;
            color: var(--text);
        }

        .h-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--white);
        }

        .h-badge.h1 { background: #93c5fd; color: var(--primary); }
        .h-badge.h2 { background: #60a5fa; }
        .h-badge.h3 { background: var(--secondary); }
        .h-badge.h4 { background: var(--primary); }
        .h-badge.h5 { background: var(--night-dark); }

        .haertegrad-hinweis {
            background: var(--cloud-soft);
            padding: 25px 30px;
            border-radius: 16px;
            margin-top: 30px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .haertegrad-hinweis .icon {
            font-size: 1.5rem;
        }

        .haertegrad-hinweis p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 20px;
            background: var(--white);
        }

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

        .faq-item {
            background: var(--cloud);
            border-radius: 16px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .faq-question {
            padding: 25px 30px;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--secondary);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer p {
            padding: 0 30px 25px;
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Verknüpfungen */
        .verknuepfung-section {
            padding: 100px 20px;
            background: var(--cloud);
        }

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

        .verknuepfung-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s;
        }

        .verknuepfung-card:hover {
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            transform: translateY(-8px);
        }

        .verknuepfung-card .icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .verknuepfung-card h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .verknuepfung-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .verknuepfung-card .link {
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: var(--white);
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 35px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
        }

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

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

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Trust Section */
        .trust-section {
            padding: 60px 20px;
            background: var(--white);
        }

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

        .trust-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .trust-item .label {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .quick-nav-grid { grid-template-columns: repeat(3, 1fr); }
            .testsieger-grid { grid-template-columns: 1fr; }
            .arten-grid { grid-template-columns: 1fr; }
            .schlaftypen-grid { grid-template-columns: repeat(2, 1fr); }
            .verknuepfung-grid { grid-template-columns: 1fr; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .hero .tagline { font-size: 1.05rem; }
            .hero-ctas { flex-direction: column; align-items: center; }
            .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
            .schlaftypen-grid { grid-template-columns: 1fr; }
            .haertegrad-table th, .haertegrad-table td { padding: 15px; font-size: 0.85rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .trust-grid { grid-template-columns: 1fr; }
        }/* End custom CSS */