   *    {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0066ff;
            --secondary-blue: #004bbf;
            --light-blue: #66b3ff;
            --gray-dark: #2d3748;
            --gray-medium: #4a5568;
            --gray-light: #e2e8f0;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--gray-dark);
            overflow-x: hidden;
        }

        
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 900px) {
    .nav-container {
        flex-direction: row;
        align-items: center;
        padding: 0.7rem 1rem;
    }
    .logo {
        font-size: 1.2rem !important;   /* Kleiner auf Mobile */
        line-height: 1.1;
        white-space: nowrap;
    }
    .nav-toggle {
        margin-left: auto;
        /* Optional: etwas nach oben ausrichten */
    }
}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            font-size: 20px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--gray-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }


        /* Hamburger-Button verstecken auf Desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3.5px;
    background: var(--primary-blue);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Responsive Nav */
@media (max-width: 900px) {
    .nav-container {
        flex-wrap: wrap;
    }
    .nav-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 0;
    }
    .nav-menu {
        position: fixed;
        top: 70px; /* Passe ggf. an deine Navbar-Höhe an */
        left: 0;
        width: 100vw;
        background: rgba(255,255,255,0.99);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 2rem 0 2rem 0;
        transition: transform 0.33s cubic-bezier(.5,1.5,.5,1);
        transform: translateY(-140%);
        box-shadow: 0 6px 32px rgba(0,102,255,0.07);
        z-index: 1101;
    }
    .nav-menu.open {
        transform: translateY(0);
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: 1.1rem 2.5rem;
        font-size: 1.13rem;
        color: var(--primary-blue);
        border-bottom: 1px solid var(--gray-light);
        background: none;
    }
    .nav-link:hover {
        background: var(--light-blue);
        color: var(--white);
    }
}



        
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,800 1000,1000"/><polygon fill="rgba(255,255,255,0.05)" points="0,800 1000,600 1000,800 0,1000"/></svg>');
            background-size: cover;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--white), var(--gray-light));
            color: var(--primary-blue);
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

       
        .floating-car {
            position: absolute;
            font-size: 3rem;
            animation: float 6s ease-in-out infinite;
            opacity: 0.7;
        }

.floating-car:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-car:nth-child(2) {
    top: 65%;
    left: 12%;
    animation-delay: 1.8s;
}

.floating-car:nth-child(3) {
    top: 35%;
    left: 78%;
    animation-delay: 3.6s;
}

.floating-car:nth-child(4) {
    top: 5%;
    left: 60%;
    animation-delay: 0.9s;
}

.floating-car:nth-child(5) {
    top: 75%;
    left: 3%;
    animation-delay: 2.7s;
}

.floating-car:nth-child(6) {
    top: 45%;
    left: 50%;
    animation-delay: 4.5s;
}

.floating-car:nth-child(7) {
    top: 25%;
    left: 30%;
    animation-delay: 1.3s;
}

.floating-car:nth-child(8) {
    top: 85%;
    left: 85%;
    animation-delay: 3s;
}
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

      
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(0, 102, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .pricing-card:hover::before {
            left: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            transform: scale(1.05);
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-blue);
            margin: 1rem 0;
        }

        .pricing-card.featured .price {
            color: white;
        }

        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
        }

        .feature-list li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }

        .pricing-card.featured .feature-list li::before {
            color: white;
        }

       
        .contact-section {
            background: linear-gradient(135deg, var(--gray-light), white);
            padding: 5rem 2rem;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid var(--gray-light);
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
            transform: translateY(-2px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(0, 102, 255, 0.1);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
        }

        .info-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .section-title { font-size: 2rem; }
            .nav-menu { flex-direction: column; gap: 1rem; }
            .nav-container { flex-direction: column; }
            .pricing-card.featured { transform: none; }
        }


        .map-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Verhältnis */
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

        .footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 3rem 2rem 1rem 2rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* ← angepasst */
    gap: 3.5rem;
    align-items: start;
    padding: 0 2rem;
}


.footer-col {
    margin-bottom: 1rem;
    min-width: 240px;         /* Mindestbreite für alle Spalten */
    word-break: break-word;
}
.footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    opacity: 0.95;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
    opacity: 0.88;
}

.footer-col a:hover {
    color: var(--light-blue);
    text-decoration: underline;
    opacity: 1;
}

.footer-socials a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    opacity: 0.85;
    transition: transform 0.2s, opacity 0.2s;
}
.footer-socials a:last-child {
    margin-right: 0;
}
.footer-socials a:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 1rem;
    opacity: 0.75;
}

@media (max-width: 700px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .footer-col {
        margin-bottom: 0;
    }
}










.vorteile-section {
    margin-bottom: 3.2rem;
}
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.vorteil-card {
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    padding: 2rem 1.3rem 1.7rem 1.3rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,102,255,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.vorteil-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0,102,255,0.09);
}
.vorteil-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 1rem;
}
.vorteil-card h3 {
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

/* Steps */
.steps-section {
    margin-bottom: 3.2rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.step-card {
    background: rgba(255,255,255,0.94);
    border-radius: 16px;
    padding: 1.7rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0,102,255,0.07);
    position: relative;
}
.step-number {
    display: inline-block;
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 0.4rem;
    background: var(--gray-light);
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
}
.step-card h4 {
    margin: 1rem 0 0.6rem 0;
    font-weight: 700;
}

/* Erfahrungen */
.erfahrungen-section {
    margin-bottom: 3.2rem;
}
.erfahrungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.erfahrung-card {
    background: rgba(255,255,255,0.97);
    border-radius: 14px;
    padding: 1.8rem 1.3rem 1.3rem 1.3rem;
    box-shadow: 0 5px 20px rgba(0,102,255,0.06);
    font-size: 1.03rem;
    min-height: 120px;
}
.erfahrung-card p {
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}
.erfahrung-card span {
    font-size: 0.98rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* FAQ */
.faq-section {
    margin-bottom: 3.2rem;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-list details {
    background: var(--gray-light);
    margin-bottom: 1rem;
    border-radius: 10px;
    padding: 1.2rem 1.2rem 1rem 1.2rem;
    box-shadow: 0 4px 12px rgba(0,102,255,0.03);
    cursor: pointer;
    font-size: 1.08rem;
}
.faq-list summary {
    font-weight: bold;
    color: var(--primary-blue);
    cursor: pointer;
}

@media (max-width: 950px) {
    .kontaktinfo-inner {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.2rem 2.5rem 1.2rem;
        text-align: center;
    }
}



/* ===== ABOUT: Erweiterter, professioneller Stil ===== */

/* Zahl-Highlights */
/* ===== Zahl-Highlights / Stats Sektion ===== */

.highlight-stats {
  background: var(--gray-light);
  padding: 4rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.06);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-box h3 {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 1rem;
  color: var(--gray-medium);
}



/* Horizontale Werte */
.values-horizontal {
    background: var(--white);
    padding: 4rem 2rem;
}
.values-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.value-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,102,255,0.05);
    transition: box-shadow 0.2s ease;
    text-align: center;
}
.value-box:hover {
    box-shadow: 0 10px 28px rgba(0,102,255,0.08);
}
.value-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary-blue);
}
.value-box p {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonial */
.testimonial {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}
.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
}
.testimonial-box span {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Hero Update */
.about-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}
.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.about-hero p {
    font-size: 1.3rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Split Layout – wie vorher */
.about-split {
    background: var(--white);
    padding: 4rem 2rem;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text {
    flex: 1 1 50%;
}
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--gray-dark);
}
.about-text p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    line-height: 1.7;
}
.about-image {
    flex: 1 1 45%;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.about-split.reverse .about-container {
    flex-direction: row-reverse;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    .about-text, .about-image {
        flex: 1 1 100%;
    }
    .about-hero h1 {
        font-size: 2.4rem;
    }
    .about-hero p {
        font-size: 1.1rem;
    }
    .stat-box h3 {
        font-size: 1.8rem;
    }
    .testimonial-box {
        font-size: 1.1rem;
    }
}




/* ==== Ausbildungsklassen-Seite ==== */

/* Hero kleiner */
.hero-small {
    height: 50vh;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}
.hero-small h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.hero-small p {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Klassenübersicht */
.class-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.class-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.class-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.1);
}

.class-card h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 0.7rem;
}

.class-card p {
  font-size: 1rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

/* Split-Vergleich (B vs. B197) */
.class-compare .compare-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.compare-text, .compare-image {
  flex: 1 1 50%;
}

.compare-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.compare-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-medium);
}

.compare-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .class-compare .compare-container {
    flex-direction: column;
  }

  .hero-small h1 {
    font-size: 2rem;
  }

  .hero-small p {
    font-size: 1rem;
  }
}

/* ==== Preise-Seite === */

.pricing-table {
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    margin-top: 2rem;
}
.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
    background: var(--white);
}
.pricing-row.header {
    background: var(--light-blue);
    color: var(--white);
    font-weight: 600;
}
.pricing-row > div {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--gray-dark);
}

.gray-bg {
    background: var(--gray-light);
}


@media (max-width: 768px) {
  .pricing-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .pricing-row {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.05);
  }

  .pricing-row.header {
    display: none; /* Header ausblenden auf kleineren Screens */
  }

  .pricing-row > div {
    padding: 0.4rem 0;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-light);
  }

  .pricing-row > div:last-child {
    border-bottom: none;
  }

  .pricing-row > div::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--gray-medium);
  }
}

/* Override featured card */
.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    transform: scale(1.03);
}
.pricing-card.featured .feature-list li::before {
    color: white;
}
.pricing-card.featured .price {
    color: white;
}


/* ===== Lernapp Präsentationsbereich ===== */
/* === Layout & Farben (wie gehabt) === */
.lernapp-section {
  background: linear-gradient(to bottom right, #e8f1ff, #f0f5ff);
  padding: 5rem 2rem;
}

.lernapp-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.lernapp-container.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lernapp-text {
  flex: 1 1 50%;
  max-width: 750px;
}

.lernapp-text h2 {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.lernapp-text p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.lernapp-vorteile {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lernapp-vorteile li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--gray-dark);
  position: relative;
  padding-left: 1.5rem;
}

.lernapp-vorteile li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.lernapp-sprachen-title {
  font-size: 1.3rem;
  margin-top: 2rem;
  color: var(--primary-blue);
}

.lernapp-sprachen-info {
  font-size: 1rem;
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

/* === Sprachenliste mit Flaggen === */
.lernapp-sprachen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 600px;
}

.lernapp-sprachen-grid li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--gray-dark);
  justify-content: flex-start;
  max-width: 220px;
}

.flag {
  font-size: 1.2rem;
  line-height: 1;
}

/* === Animationen === */
@keyframes fadeInUpSmooth {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.lernapp-animate {
  opacity: 0;
  transform: translateY(20px);
}

.lernapp-animate.visible {
  animation: fadeInUpSmooth 0.8s ease forwards;
}

.lernapp-vorteile li {
  opacity: 0;
  transform: translateX(-20px);
}

.lernapp-vorteile li.visible {
  animation: fadeInUpSmooth 0.6s ease forwards;
  transform: translateX(0);
}

.lernapp-vorteile li:nth-child(1).visible { animation-delay: 0.2s; }
.lernapp-vorteile li:nth-child(2).visible { animation-delay: 0.35s; }
.lernapp-vorteile li:nth-child(3).visible { animation-delay: 0.5s; }
.lernapp-vorteile li:nth-child(4).visible { animation-delay: 0.65s; }
.lernapp-vorteile li:nth-child(5).visible { animation-delay: 0.8s; }

.lernapp-sprachen-grid li {
  opacity: 0;
  transform: scale(0.95);
}

.lernapp-sprachen-grid li.visible {
  animation: popIn 0.4s ease forwards;
  transform: scale(1);
}

.lernapp-sprachen-grid li:nth-child(1).visible { animation-delay: 0.2s; }
.lernapp-sprachen-grid li:nth-child(2).visible { animation-delay: 0.3s; }
.lernapp-sprachen-grid li:nth-child(3).visible { animation-delay: 0.4s; }
.lernapp-sprachen-grid li:nth-child(4).visible { animation-delay: 0.5s; }
.lernapp-sprachen-grid li:nth-child(5).visible { animation-delay: 0.6s; }
.lernapp-sprachen-grid li:nth-child(6).visible { animation-delay: 0.7s; }
.lernapp-sprachen-grid li:nth-child(7).visible { animation-delay: 0.8s; }
.lernapp-sprachen-grid li:nth-child(8).visible { animation-delay: 0.9s; }
.lernapp-sprachen-grid li:nth-child(9).visible { animation-delay: 1s; }
.lernapp-sprachen-grid li:nth-child(10).visible { animation-delay: 1.1s; }
.lernapp-sprachen-grid li:nth-child(11).visible { animation-delay: 1.2s; }
.lernapp-sprachen-grid li:nth-child(12).visible { animation-delay: 1.3s; }

/* === Mobile Optimierung === */
@media (max-width: 768px) {
  .lernapp-container {
    flex-direction: column;
  }

  .lernapp-text,
  .lernapp-image {
    flex: 1 1 100%;
  }

  .lernapp-text h2 {
    font-size: 1.6rem;
  }

  .lernapp-sprachen-title {
    font-size: 1.1rem;
  }

  .lernapp-sprachen-info {
    font-size: 0.95rem;
  }

  .lernapp-sprachen-grid {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 0.5rem;
  }

  .lernapp-sprachen-grid li {
    justify-content: center;
    text-align: center;
  }
}



/* === Zickzack-Timeline Layout === */

.timeline-container {
  position: relative;
  margin: 4rem auto;
  padding-left: 2rem;
  max-width: 1100px;
  border-left: 4px solid var(--primary-blue);
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.left {
  flex-direction: row;
  padding-right: 50%;
}

.timeline-item.right {
  flex-direction: row-reverse;
  padding-left: 50%;
}

.timeline-item .content {
  background: white;
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.08);
  max-width: 460px;
  width: 100%;
  position: relative;
}

.timeline-item .number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,102,255,0.2);
  z-index: 2;
}

.timeline-item.left .number {
  left: -24px;
}

.timeline-item.right .number {
  right: -24px;
}

.timeline-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--primary-blue);
}

.timeline-item p {
  font-size: 1.05rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .timeline-container {
    border-left: none;
    padding-left: 0;
  }

  .timeline-item {
    flex-direction: column !important;
    padding: 0 !important;
  }

  .timeline-item .number {
    position: relative;
    left: auto;
    right: auto;
    margin-bottom: 1rem;
    transform: none;
  }

  .timeline-item .content {
    max-width: 100%;
  }
}




/* === Preise: Infobox-Stil für Text statt Tabelle === */

/* === Modernes Preistext-Layout mit Animationen === */

.animated-price-info {
    position: relative;
    overflow: hidden;
}

.price-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}

.price-text-wrapper p {
    font-size: 1.15rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    opacity: 0.95;
    animation: fadeIn 1s ease forwards;
}

.price-text-wrapper p strong {
    color: var(--primary-blue);
}

.price-text-wrapper .cta-button {
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.5s forwards;
}

/* Einzelne Animationen leicht versetzt */
.price-intro { animation-delay: 0.1s; }
.price-details { animation-delay: 0.3s; }
.price-request { animation-delay: 0.5s; }
.price-alternative { animation-delay: 0.7s; }
.fade-in-button { animation-delay: 1s; }

/* Reusable fadeInUp animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional fallback */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* ==== Custom Hero Section – angepasst ans Schaufensterdesign ==== */
/* ==== Custom Hero Section – METS Design inspiriert ==== */
.custom-hero {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #aeb4bd, #99a8a8);
  color: #003366; /* dunkles Blau für Kontrast */
  position: relative;
  overflow: hidden;
}

.hero-left {
  width: 100px;
  background: #0066cc; /* kräftiges METS-Blau */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset -3px 0 10px rgba(0, 0, 0, 0.15);
}

.license-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.license-list li {
  background: #ffffff;
  color: #0066cc;
  font-weight: bold;
  font-size: 1.1rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  animation: scaleIn 0.5s ease forwards;
  transform: scale(0.8);
}

.license-list li:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2);
  background: #ffffff;
  color: #2a78c9; /* Sekundärblau */
}

.hero-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.hero-logo-area {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero-logo-img {
  max-width: 1420px;
  width: 90%;
  height: auto;
  margin-bottom: 1rem;
  animation: scaleIn 1.2s ease-out forwards;
  opacity: 0;
}

.hero-logo-area p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.85;
  color: #003366;
}

.license-mobile-row {
  display: none;
}


.license-list a {
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.license-list li {
  cursor: pointer;
  text-align: center;
}


@media (max-width: 768px) {
  .custom-hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    display: none;
  }

  .hero-logo-img {
    max-width: 350px;
  }

  .license-mobile-row {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out;
  }

  .license-mobile-row a {
    background: white;
    color: #0066cc;
    font-weight: bold;
    font-size: 0.95rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    cursor: pointer;
  }

  .license-mobile-row a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.2);
  }
}


@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}





/*atartseite cards*/
.fade-step {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: var(--delay);
}

.step-observe {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.step-observe.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*Impressum*/


.impressum-section {
  padding: 4rem 2rem;
  background-color: var(--gray-light);
  color: var(--gray-dark);
}

.impressum-section a {
  color: var(--primary-blue);
  text-decoration: underline;
  transition: 0.3s;
}

.impressum-section a:hover {
  color: #004db3;
}

.impressum-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/*Datenschutz*/

.datenschutz-section {
  padding: 4rem 2rem;
  background-color: var(--gray-light);
  color: var(--gray-dark);
}

.datenschutz-section h3 {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: var(--primary-blue);
}

.datenschutz-section p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.datenschutz-section a {
  color: var(--primary-blue);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.datenschutz-section a:hover {
  color: #004db3;
}


/* === Wechsel-Section Modern === */

/* === Wechsel Section Modern (Desktop & Mobile optimiert) === */
/* --- Wechselsection (angelehnt an .about-split) --- */
.wechsel-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.wechsel-section li {
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-medium);
  font-size: 1rem;
}

.wechsel-section li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Optional Animationen (falls du .animated-observe verwendest) */
.animated-observe {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.animated-observe.visible {
  opacity: 1;
  transform: translateY(0);
}




/* SECTION 2 – Umschreibung (Full-Width Banner) */
.umschreibung-modern {
  background: linear-gradient(135deg, var(--primary-blue), #003f94);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.umschreibung-content {
  max-width: 800px;
  margin: 0 auto;
}

.umschreibung-modern h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.umschreibung-modern p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #d0e6ff;
}

.umschreibung-points span {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Button Style */
.cta-button.white {
  background: #fff;
  color: var(--primary-blue);
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button.white:hover {
  background: #e5ecff;
}

/* Animation bei Scroll */
.animated-observe {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.animated-observe.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Whatsapp ===== */
/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

/* Toggle Button */
.whatsapp-toggle {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  overflow: hidden;
}

.whatsapp-toggle:hover {
  background-color: #163c7f;
}

.logo-icon {
  width: 28px;
  height: 28px; 
  border-radius: 50%;
}

.whatsapp-text {
  display: inline-block;
}

/* Chatfenster */
.whatsapp-chat {
  display: none;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  margin-top: 10px;
  width: 400px;
}

.whatsapp-header {
  background: var(--primary-blue);
  color: white;
  padding: 12px;
  border-radius: 8px 8px 0 0;
  font-size: 14px;
  position: relative;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
}

.whatsapp-body {
  padding: 1rem 0;
  font-size: 14px;
  color: #444;
}

#whatsapp-form {
  display: flex;
  gap: 0.5rem;
}

#whatsapp-message {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#whatsapp-form button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0 14px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

/* 📱 Mobil: Nur Logo anzeigen */
@media (max-width: 768px) {
  .whatsapp-toggle {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .whatsapp-text {
    display: none !important;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .whatsapp-chat {
    width: 92vw;
    max-width: 360px;
  }
}


/* 📱Pop Up */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup-box {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  animation: fadeInPop 0.4s ease-out forwards;
}

.popup-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@keyframes fadeInPop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .popup-box {
    max-width: 90vw;
    border-radius: 10px;
  }

  .popup-overlay {
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
  }
}
