/* Global Variables */
:root {
    --electric-yellow: #FFD700;
    /*--neo-purple: #5B2EFF;--*/
    --neo-purple: #7C3AED;
    --deep-black: #0E0E0E;
    --white: #ffffff;
    --gray-100: #f5f5f7;
    --gray-300: #86868b;
    --gray-600: #1d1d1f;
}

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

body {
    color: var(--deep-black);
    background-color: var(--gray-100);
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
}

.logo {
    font-weight: bold;
    font-size: 18px;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 30px;
    width: auto;
}

/* Navigation */
.nav {
    background-color: rgba(14, 14, 14, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px;
    height: 44px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
}

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

.nav a:hover {
    opacity: 1;
    color: var(--electric-yellow);
}

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

.nav-links {
    display: flex;
    gap: 30px;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger .line {
    width: 25px;
    height: 3px;
    background-color: var(--electric-yellow);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 44px;
    right: 0;
    left: 0;
    background-color: rgba(14, 14, 14, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    z-index: 998;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 1024px) {
    .burger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-nav.show {
        display: flex;
    }
}

/* Zusätzliche Styles für die Navigation */
.certified-link {
    background: linear-gradient(90deg, #5B2EFF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.certified-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #5B2EFF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certified-link:hover::before {
    transform: scaleX(1);
}

.certified-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #5B2EFF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certified-link:hover::after {
    transform: scaleX(1);
}

.certified-link.active {
    background: linear-gradient(90deg, #5B2EFF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.certified-link.active::before,
.certified-link.active::after {
    transform: scaleX(1);
}


.shop-link {
    background: linear-gradient(90deg, #5B2EFF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.shop-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #5B2EFF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.shop-link:hover::before {
    transform: scaleX(1);
}

.shop-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #5B2EFF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.shop-link:hover::after {
    transform: scaleX(1);
}

.shop-link.active {
    background: linear-gradient(90deg, #5B2EFF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.shop-link.active::before,
.shop-link.active::after {
    transform: scaleX(1);
}


.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero-placeholder.jpg') center/cover;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
}

.section {
    padding: 100px 20px;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.section h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section p {
    font-size: 21px;
    color: #86868b;
    max-width: 800px;
    margin: 0 auto 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background-color: #5B2EFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 17px;
    color: #86868b;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 250px;
    background-color: #ccc;
}

.dark-section {
    background-color: #000;
    color: #f5f5f7;
    padding: 120px 20px;
    text-align: center;
}

.dark-section p {
    color: #a1a1a6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    width: 100%;
    background-color: #ccc;
}

.service-content {
    padding: 25px;
    text-align: left;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 16px;
    color: #86868b;
    margin-bottom: 20px;
}

.service-link {
    color: #5B2EFF;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link:after {
    content: "→";
    margin-left: 5px;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-content {
    flex: 1;
    text-align: left;
}

.split-image {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    height: 400px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    background-color: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text{
    font-size: 18px;
    font-style: italic;
    color: #1d1d1f!important;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #1d1d1f!important;
}

.testimonial-rating {
    color: #ff9500;
    font-size: 20px;
    margin-bottom: 15px;
}


.faq-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #d2d2d7;
    padding: 25px 0;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    font-size: 16px;
    color: #86868b;
    margin-top: 10px;
}

.faq-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.faq-cta .cta-button {
    min-width: 260px;
}

.faq-cta .cta-note {
    color: #4b5563;
    font-size: 0.9rem;
}

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.brand {
    height: 60px;
    width: 120px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.brand:hover {
    opacity: 1;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    width: 200px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #5B2EFF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: #86868b;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-plan {
    background: linear-gradient(145deg, var(--deep-black), #1a1a1a);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(255, 215, 0, 0.1);
}



.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(91, 46, 255, 0.2);
}

.plan-popular {
    border: 2px solid var(--neo-purple);
    background: linear-gradient(145deg, var(--deep-black), #1a1a1a);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--neo-purple), var(--electric-yellow));
    color: var(--deep-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(91, 46, 255, 0.3);
    z-index: 2;
}

.brand-badge{
    background: var(--neo-purple);
    color: var(--deep-black);
    justify-content: center;
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content!important;
    margin: 0 auto;
    color: #fff;
}

.plan-name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--electric-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.plan-features li:hover {
    color: var(--electric-yellow);
    opacity: 1;
    transform: translateX(5px);
}

.plan-features li:last-child {
    border-bottom: none;
}



.plan-note {
    margin-top: 18px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 19px;
    }
    
    .section h2 {
        font-size: 32px;
    }
    
    .section p {
        font-size: 17px;
    }
    
    .split-section {
        flex-direction: column;
    }
    
    .split-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

.service-card.full-width {
    grid-column: 1 / -1;
    max-width: 100%;
}

.service-card.full-width .service-image {
    height: 300px;
}

.service-card.full-width .service-content {
    padding: 30px;
}

.service-card.full-width h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-card.full-width p {
    font-size: 18px;
    line-height: 1.6;
}

/* alert banner */
.news-alert {
    width: 100%;
    background-color: var(--electric-yellow);
    color: var(--deep-black);
    padding: 10px 0;
    font-weight: 600;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    z-index: 998;
}

.news-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
   
}

.news-marquee p {
    font-size: 16px;
    display: inline-block;
   
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.brands.marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands .marquee-track {
    display: flex;
    animation: scroll-logos 40s linear infinite;
    width: max-content;
}

.brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    transition: opacity 0.3s;
}

.brand:hover {
    opacity: 1;
}

.brand img {
    max-height:fit-content;
    width: 150px;
    object-fit: contain;
    padding: 30px;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo {
    opacity: 1 !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 44px;
    padding: 7px 0;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Remove text from logo */
.logo span {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(14, 14, 14, 0.7), rgba(14, 14, 14, 0.7)), url('images/hero-placeholder.jpg') center/cover;
    color: var(--white);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, var(--deep-black));
    pointer-events: none;
}

.hero h1 {
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.1;
    color: var(--electric-yellow);
    text-transform: uppercase;
}

.hero h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
    font-family: 'Inter', sans-serif;
}

/* Buttons */
.cta-button {
    background: none;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    transform: skewY(-8deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 60px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.cta-button-purple {
    background: url('images/sketch-button-purple.svg') no-repeat center/100% 100%!important;
    background-size: 100% 100%!important;
    z-index: 2;
    border: none;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    transform: skewY(-8deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 60px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
}

/* Responsive CTA Button Adjustments */
@media (max-width: 768px) {
    .cta-button-purple {
        padding: 10px 20px;
        font-size: 16px;
        min-height: 55px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-button-purple {
        padding: 8px 16px;
        font-size: 15px;
        min-height: 50px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 15px;
    }
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/sketch-button.svg') no-repeat center/100% 100%;
    background-size: 100% 100%;
    z-index: -1;
    transition: transform 0.3s;
}

.cta-button:hover {
    color: var(--electric-yellow);
    background: none;
}

.cta-button:hover::before {
    transform: translateY(-5px);
}

/* Buttons (non-CTA) */
.button:not(.cta-button),
.btn:not(.cta-button) {
    background: none;
    color: var(--white);
    transition: all 0.3s;
    position: relative;
    mask: url('images/sketch-button.svg');

}

.button:not(.cta-button)::before,
.btn:not(.cta-button)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/sketch-button.svg') no-repeat center/100% 100%;
    background-size: 100% 100%;
    z-index: -1;
    transition: transform 0.3s;
    mask: url('images/sketch-button.svg');
}

.button:not(.cta-button):hover,
.btn:not(.cta-button):hover {
    background: none;
    color: var(--electric-yellow);
}

.button:not(.cta-button):hover::before,
.btn:not(.cta-button):hover::before {
    transform: translateY(-5px);
}

/* Service Cards */
.service-card {
    background: var(--deep-black);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 14, 14, 0.2);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Service Links */
.service-link {
    color: var(--neo-purple);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    font-size: 18px;
    position: relative;
}

.service-link:hover {
    color: var(--electric-yellow);
}

/* Popular Badge */
.popular-badge {
    background-color: var(--neo-purple);
}

/* Pricing Plans */
.pricing-plan {
    background-color: var(--deep-black);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(14, 14, 14, 0.2);
    text-align: center;
    transition: transform 0.3s;
}

.plan-popular {
    border: 2px solid var(--neo-purple);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.contact-section::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neo-purple);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-details p {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.contact-details p a {
    color: var(--electric-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details p a:hover {
    color: var(--neo-purple);
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

.contact-details span {
    color: #a1a1aa;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neo-purple), var(--electric-yellow));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neo-purple);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a1a1aa;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e7eb;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
    border-color: var(--neo-purple);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--deep-black);
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--electric-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--neo-purple);
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-submit {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    margin-top: 20px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.form-success p {
    color: #a1a1aa;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
}

/* Links */
a:not(.nav a):not(.cta-button) {
    color: var(--neo-purple);
    text-decoration: none;
    transition: all 0.3s;
}

a:not(.nav a):not(.cta-button):hover {
    color: var(--electric-yellow);
}

/* Replace any remaining blue colors */
[style*="#0071e3"], 
[style*="#0077ed"],
[style*="rgb(0, 113, 227)"],
[style*="rgb(0, 119, 237)"] { 
    color: var(--neo-purple) !important; 
}

[style*="background:#0071e3"],
[style*="background:#0077ed"],
[style*="background:rgb(0, 113, 227)"],
[style*="background:rgb(0, 119, 237)"] { 
    background-color: var(--neo-purple) !important; 
}

/* Sections */
.section {
    padding: 100px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--deep-black);
    text-transform: uppercase;
}

.section p {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Features */
.feature {
    text-align: center;
    background: var(--deep-black);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    margin: 40px;
}

.feature:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--electric-yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature:hover:before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-5px);
}
.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: var(--neo-purple);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }
  
  
  .feature-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 0;
  }
  
  /* Hover Effekt */
  .feature:hover .feature-icon {
    transform: scale(1.05);
  }
  .feature:hover .feature-icon::before {
    opacity: 1;
  }
  
  /* Spezifische Hintergründe */
  .feature-icon.m::before {
    background-image: url('images/matt.png');
  }
  .feature-icon.g::before {
    background-image: url('images/gloss.png');
  }
  .feature-icon.s::before {
    background-image: url('images/special.png');
  }

.feature-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,215,0,0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--electric-yellow);
}

.feature p {
    font-size: 16px;
    color: var(--white);
    opacity: 0.8;
}

.certified-page .feature ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: #111827;
    font-family: 'Inter', sans-serif;
}

.certified-page .feature ul li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.certified-page .feature ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5b2eff;
    font-weight: bold;
}

/* Dark Sections */
.dark-section {
    background-color: var(--deep-black);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dark-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--electric-yellow);
}

.dark-section h2 {
    color: var(--electric-yellow);
}

.dark-section p {
    color: var(--white);
    opacity: 0.8;
}

.seal-showcase {
    margin: 48px auto 0;
    max-width: 860px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    align-items: center;
}

.seal-frame {
    background: radial-gradient(circle at top, rgba(250, 204, 21, 0.32), rgba(91, 46, 255, 0.12));
    border: 1px solid rgba(250, 204, 21, 0.4);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
}

.seal-image {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 0 auto;
}

.seal-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-align: left;
    display: grid;
    gap: 14px;
}

.seal-benefits li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.seal-benefits strong {
    color: #facc15;
}

.seal-rating {
    text-align: left;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
}

.seal-stars {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    color: #facc15;
    margin-bottom: 8px;
}

/* Testimonials */
.testimonial-text {
    color: var(--deep-black);
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

/* Replace any remaining blue in buttons */
.cta-button {
    background: none;
}

.cta-button:hover {
    background: none;
}

/* Service Links */
.service-link {
    color: var(--neo-purple);
}

.service-link:hover {
    color: var(--electric-yellow);
} 

.plan-features ul{
    list-style-type: none;
}

/* Footer */
footer {
    background-color: var(--deep-black);
    padding: 40px 20px;
    text-align: center;
    color: var(--white);
    font-size: 14px;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .section h2 {
        font-size: 36px;
    }
    
    .section p {
        font-size: 16px;
    }
}

.concepts-link {
    background: linear-gradient(90deg, var(--electric-yellow), var(--neo-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.concepts-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--electric-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.concepts-link:hover::before {
    transform: scaleX(1);
}

.concepts-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neo-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.concepts-link:hover::after {
    transform: scaleX(1);
}

.concepts-link.active {
    background: linear-gradient(90deg, var(--electric-yellow), var(--neo-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.concepts-link.active::before,
.concepts-link.active::after {
    transform: scaleX(1);
}

/* Scroll Animation Section */
.scroll-animation-section {
    height: 200vh;
    position: relative;
    overflow: hidden;
    background: var(--deep-black);
}

.scroll-container {
    height: 100%;
    position: relative;
}

.scroll-content {
    position: absolute;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.explosion-layer {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.explosion-layer img {
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
}

/* Initial States */
.base-car {
    opacity: 1;
    z-index: 1;
}

.wheels {
    opacity: 0;
    z-index: 2;
}

.suspension {
    opacity: 0;
    z-index: 3;
}

.bodykit {
    opacity: 0;
    z-index: 4;
}

.wrap {
    opacity: 0;
    z-index: 5;
}

.final {
    opacity: 0;
    z-index: 6;
}

/* Scroll Animation Classes */
.scroll-animation-section.scrolled .wheels {
    opacity: 1;
}

.scroll-animation-section.scrolled .suspension {
    opacity: 1;
}

.scroll-animation-section.scrolled .bodykit {
    opacity: 1;
}

.scroll-animation-section.scrolled .wrap {
    opacity: 1;
}

.scroll-animation-section.scrolled .final {
    opacity: 1;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-progress.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--electric-yellow), var(--neo-purple));
    transition: width 0.1s ease;
}

/* Scroll Hint */
.scroll-hint {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    animation: bounce 2s infinite;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}
/* Certified partner map */
.certified-page .section-map {
    max-width: 1100px;
}

/* Map Controls */
.map-controls {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.certified-page .map-controls[data-sticky="true"] {
    position: sticky;
    top: 110px;
    z-index: 12;
}

.map-tip {
    margin-top: 14px;
    font-size: 0.9rem;
    color: #4b5563;
    background: rgba(91, 46, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    line-height: 1.4;
}

.map-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: #1f2937;
}

.map-loading[hidden] {
    display: none;
}

.loading-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5b2eff, #b28dff);
    animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.map-legend {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.legend-title {
    font-weight: 700;
    color: #111827;
    font-family: 'Inter', sans-serif;
}

.map-legend ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.map-legend li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.05);
}

.legend-dot--certified {
    background: #5b2eff;
}

.legend-dot--premium {
    background: linear-gradient(135deg, #facc15, #f97316);
}

.legend-dot--review {
    background: #6366f1;
}

.legend-note {
    margin: 0;
    font-size: 0.85rem;
    color: #4b5563;
    max-width: 320px;
}

.map-status-tooltip {
    background: #111827;
    color: #f8fafc;
    border: none;
    border-radius: 999px;
    padding: 6px 10px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
    font-family: 'Inter', sans-serif;
}

.map-status-tooltip::before {
    display: none;
}

.map-status-tooltip--premium {
    background: #f97316;
    color: #111827;
}

.map-status-tooltip--review {
    background: #6366f1;
}

.partner-list {
    margin-top: 24px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.partner-list__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.partner-list__title {
    font-size: 26px;
    letter-spacing: 0.02em;
    margin: 0;
    color: var(--deep-black);
}

.partner-list__toggle {
    display: none;
    background: rgba(91, 46, 255, 0.12);
    border: none;
    color: var(--neo-purple);
    font-weight: 600;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 14px;
}

.partner-list__toggle:hover,
.partner-list__toggle:focus-visible {
    background: rgba(91, 46, 255, 0.2);
    transform: translateY(-1px);
    outline: none;
}

.partner-list__body {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 360px;
}

.partner-list--expanded .partner-list__body {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 6px;
}

.partner-list__body::-webkit-scrollbar {
    width: 8px;
}

.partner-list__body::-webkit-scrollbar-thumb {
    background-color: rgba(91, 46, 255, 0.4);
    border-radius: 999px;
}

.partner-list__entry {
    list-style: none;
}

/* no hidden entries; scrollbar handles overflow */
.partner-list__entry--hidden { display: block; }

.partner-list--expanded .partner-list__entry--hidden {
    display: list-item;
}

.partner-list__item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
    color: inherit;
}

.partner-list__item:hover,
.partner-list__item:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(91, 46, 255, 0.12);
    border-color: rgba(91, 46, 255, 0.4);
    outline: none;
    background: white;
}

.partner-list__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-black);
}

.partner-list__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(91, 46, 255, 0.12);
    color: #5b2eff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 999px;
    width: fit-content;
}

.partner-list__status--premium {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.partner-list__status--review {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.partner-list__meta {
    font-size: 14px;
    color: var(--gray-300);
}

.partner-list__address {
    font-size: 14px;
    color: #4b5563;
}

.partner-list__services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.partner-list__service-tag {
    background: rgba(91, 46, 255, 0.08);
    color: var(--neo-purple);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.partner-list__empty {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    color: #6b7280;
    font-size: 15px;
}

.location-search {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.search-input:focus {
    outline: none;
    border-color: var(--neo-purple);
    background: white;
    box-shadow: 0 0 0 3px rgba(91, 46, 255, 0.1);
}

.search-button {
    padding: 12px 24px;
    background: var(--neo-purple);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    background: #4a25d9;
    transform: translateY(-1px);
}

.search-button.is-loading {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.location-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location-btn, .skip-btn {
    padding: 10px 20px;
    border: 2px solid var(--neo-purple);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.location-btn {
    background: var(--neo-purple);
    color: white;
}

.location-btn:hover {
    background: #4a25d9;
    transform: translateY(-1px);
}

.location-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.skip-btn {
    background: transparent;
    color: var(--neo-purple);
}

.skip-btn:hover {
    background: var(--neo-purple);
    color: white;
    transform: translateY(-1px);
}

.map-filters {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.filter-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 6px 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-control:focus-within {
    border-color: var(--neo-purple);
    box-shadow: 0 0 0 3px rgba(91, 46, 255, 0.1);
}

.filter-select {
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    min-width: 170px;
    padding: 0;
}

.filter-select:focus {
    outline: none;
    box-shadow: none;
}

.filter-icon {
    font-size: 18px;
}

.filter-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 12px;
    background: #eef2ff;
    color: #312e81;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.nearby-info {
    display: none;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #bae6fd;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Location Permission Overlay */
.location-permission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 20px;
}

.location-permission-overlay.hidden {
    display: none;
}

.location-permission-content {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.location-permission-content h3 {
    color: var(--neo-purple);
    margin-bottom: 16px;
    font-size: 24px;
}

.location-permission-content p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.location-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 12px;
    font-weight: 500;
}


  /* Der Wrapper braucht eine feste Höhe, sonst ist die Karte unsichtbar */
  #certified-map {
    position: relative;
    height: 520px;        /* nach Bedarf anpassen */
    width: 100%;
    overflow: hidden;
    border-radius: 12px;  /* optional */
  }
  /* Leaflet füllt den Parent, wenn dieser eine Höhe hat */
  .leaflet-container {
    width: 100%;
    height: 100%;
    font: inherit;
  }
  /* Placeholder mittig anzeigen, bis JS ihn ausblendet */
  #certified-map .map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }


.certified-page #certified-map {
    width: 100% !important;
    height: 70vh !important;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    margin: 40px auto 24px;
    position: relative !important;
    display: block !important;
    background: linear-gradient(140deg, rgba(14, 14, 14, 0.08), rgba(29, 29, 31, 0.08));
}



.location-permission {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(140deg, rgba(91, 46, 255, 0.95), rgba(178, 141, 255, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 20px;
}

.location-permission-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 40px 20px;
}

.location-permission h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: white;
}

.location-permission p {
    font-size: 1.1rem;
    margin: 0 0 30px 0;
    opacity: 0.9;
    line-height: 1.5;
}

.location-permission .cta-button {
    margin: 0 10px 10px 0;
    min-width: 140px;
}

.location-permission.hidden {
    display: none;
}

.location-permission .location-error {
    margin-top: 10px;
    color: #ffb4b4;
    font-size: 0.95rem;
    line-height: 1.4;
}


.wrappers-map-icon {
    filter: drop-shadow(0 10px 24px rgba(91, 46, 255, 0.35));
    background: transparent;
    border: none;
}

.wrappers-map-icon span {
    display: block;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #5b2eff, #b28dff);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid #ffffff;
    position: relative;
}

.wrappers-map-icon span::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.map-popup {
    font-size: 0.95rem;
    color: #1f2937;
}

.map-popup strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 6px;
    color: #111827;
}

.map-popup__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(91, 46, 255, 0.12);
    color: #5b2eff;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}

.map-popup__status--premium {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.map-popup__status--review {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.map-popup__address,
.map-popup__links,
.map-popup__services {
    display: block;
    margin-bottom: 6px;
}

.map-popup__links a {
    color: #5b2eff;
    font-weight: 600;
    text-decoration: none;
}

.map-popup__links a:hover,
.map-popup__links a:focus {
    text-decoration: underline;
}

.map-popup__distance {
    color: #5b2eff;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-popup__button {
    background: #5b2eff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.map-popup__button:hover {
    background: #4a25d9;
}

@media (max-width: 768px) {
    .certified-page #certified-map {
        height: 40vh;
        min-height: 300px;
    }
    
    .map-controls {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-input {
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
    
    .location-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .location-btn, .skip-btn {
        width: 100%;
        justify-content: center;
    }
    
    .map-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .filter-select {
        min-width: auto;
        width: 100%;
    }

    .filter-control,
    .filter-summary,
    .nearby-info {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .partner-list {
        padding: 18px;
    }

    .partner-list__title {
        font-size: 22px;
    }

    .partner-list__toggle {
        width: 100%;
        justify-content: center;
    }
    
    .location-permission-content {
        padding: 24px;
        margin: 16px;
    }
    
    .location-permission-content h3 {
        font-size: 20px;
    }
}

/* Partner Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    margin: auto;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #111;
    margin: 0;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.partner-info {
    display: grid;
    gap: 20px;
}

.partner-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #5b2eff;
    margin: 0 0 10px 0;
}

.partner-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(91, 46, 255, 0.12);
    color: #5b2eff;
    padding: 4px 10px;
    border-radius: 999px;
    width: fit-content;
}

.partner-status--premium {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.partner-status--review {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.partner-address {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.partner-distance {
    color: #5b2eff;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 10px 0;
}

.partner-contact {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item a {
    color: #5b2eff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #4a25d9;
    text-decoration: underline;
}

.partner-services {
    background: #f8f9ff;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #5b2eff;
}

.partner-services h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #111;
    margin: 0 0 10px 0;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.service-tag {
    background: #5b2eff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.partner-hours {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
}

.partner-hours h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #111;
    margin: 0 0 10px 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}


/* Certified page specific layout */
.certified-page .hero {
    min-height: calc(90vh - 44px);
    padding-top: 120px;
    background: linear-gradient(140deg, rgba(14, 14, 14, 0.85), rgba(29, 29, 31, 0.75)), url('images/hero-placeholder.jpg') center/cover;
}

.certified-page .hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: 0.08em;
}

.certified-page .hero h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.certified-page .hero-subline {
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    max-width: 600px;
    margin: 0 auto 20px;
    display: block;
}

.certified-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.certified-page .hero-benefits {
    list-style: none;
    padding: 0;
    margin: 28px auto 36px;
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.certified-page .hero-benefits li {
    position: relative;
    padding-left: 26px;
    line-height: 1.5;
}

.certified-page .hero-benefits li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #facc15;
    font-size: 1rem;
    top: 0;
}

.certified-page .cta-group {
    font-size: 1rem;
    display: block;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.certified-page .cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 220px;
}

.certified-page .cta-button {
    transform: none;
    min-width: auto;
    min-height: auto;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    border-radius: 999px;
    padding: 14px 28px;
}

.certified-page .cta-button::before {
    display: none;
}

.certified-page .cta-button:hover {
    color: #ffffff;
}

.certified-page .cta-button-primary {
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #111827;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(250, 204, 21, 0.45);
}

.certified-page .cta-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 55px rgba(250, 204, 21, 0.55);
}

.certified-page .cta-button-purple {
    background: linear-gradient(135deg, #5B2EFF, #B28DFF);
}

.certified-page .cta-button-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.certified-page .cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.certified-page .cta-note {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.72);
    font-family: 'Inter', sans-serif;
}

.certified-page .section {
    max-width: 1100px;
}

.certified-page .section-heading {
    max-width: 720px;
    margin: 0 auto 40px;
}

.certified-page .section-heading p {
    color: #4b5563;
}

.certified-page .section-highlight {
    background: #ffffff;
    border-radius: 32px;
    padding: 120px 30px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    margin-top: 40px;
}

.certified-page .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.certified-page .benefit-card {
    background: linear-gradient(150deg, rgba(91, 46, 255, 0.08), rgba(178, 141, 255, 0.16));
    border-radius: 24px;
    padding: 28px;
    text-align: left;
    color: #1f2937;
    box-shadow: 0 18px 40px rgba(91, 46, 255, 0.12);
}

.certified-page .benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.certified-page .benefit-card p {
    margin: 0;
    color: #374151;
    font-size: 1rem;
}

.certified-page .section-process {
    background: #0e0e0e;
    color: #f5f5f7;
    border-radius: 32px;
    padding: 120px 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.certified-page .section-process::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    pointer-events: none;
}

.certified-page .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    list-style: none;
    position: relative;
    z-index: 1;
}

.certified-page .process-steps li {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 20px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.3);
}

.certified-page .process-steps h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.certified-page .process-steps p {
    margin: 0;
    color: rgba(229, 231, 235, 0.85);
}

.certified-page .section-testimonials {
    margin-top: 80px;
}

.certified-page .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.certified-page .testimonial {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    text-align: left;
}

.certified-page .testimonial-media {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(91, 46, 255, 0.4), rgba(250, 204, 21, 0.5));
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(91, 46, 255, 0.25);
}

.certified-page .testimonial blockquote {
    font-style: italic;
    color: #1f2937;
    margin-bottom: 18px;
}

.certified-page .testimonial figcaption {
    font-weight: 600;
    color: #5b21b6;
    letter-spacing: 0.02em;
}

.certified-page .testimonial-name {
    display: block;
    font-size: 1rem;
    color: #111827;
}

.certified-page .testimonial-meta {
    display: block;
    font-size: 0.85rem;
    color: #4b5563;
    margin-top: 4px;
}

.social-proof-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.social-proof-card {
    background: #0f172a;
    border-radius: 20px;
    padding: 24px;
    color: #f8fafc;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(248, 250, 252, 0.1);
}

.social-proof-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.social-proof-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.85);
}

.certified-page .lead-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.certified-page .lead-point {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.certified-page .lead-point h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.certified-page .lead-point p {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.certified-page .cta-group--contact {
    margin-top: 20px;
}

.certified-page .contact-note {
    margin-top: 24px;
    color: #1f2937;
    font-weight: 500;
}

.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.92), rgba(91, 46, 255, 0.9));
    padding: 14px 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 50;
    color: #ffffff;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #111827;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    min-width: 220px;
    text-align: center;
}

.mobile-cta-note {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

/* Entfernt: Zertifikat-Lightbox */

@media (max-width: 992px) {
    .certified-page .section,
    .certified-page .section-map,
    .certified-page .section-highlight {
        padding: 80px 20px;
    }

    .certified-page .section-process {
        padding: 80px 24px;
    }

    .certified-page .map-controls[data-sticky="true"] {
        position: static;
    }
}

@media (max-width: 1024px) {
    .certified-page .section-progress {
        display: none;
    }
}

@media (max-width: 640px) {
    .certified-page .hero {
        padding-top: 100px;
    }

    .certified-page .cta-group {
        flex-direction: column;
    }

    .mobile-cta-bar {
        display: flex;
    }

    .map-legend {
        flex-direction: column;
        align-items: flex-start;
    }

    .certified-page main {
        padding-bottom: 120px;
    }
}

/* unified in main map icon definition above */

.partner-popup {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    max-width: 240px;
}

.partner-popup h3 {
    font-size: 1.05rem;
    margin: 0 0 8px;
    font-weight: 600;
    color: #111827;
}

.partner-popup__address {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.partner-popup__link {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #4f46e5;
    font-weight: 500;
}

.partner-popup__link:hover,
.partner-popup__link:focus {
    text-decoration: underline;
}

.partner-popup__link--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #6d28d9, #4338ca);
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}

.partner-popup__services {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #1f2937;
}

.partner-popup__services ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

.partner-popup__services li {
    margin-bottom: 4px;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 14, 0.98);
    color: var(--white);
    z-index: 10000;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-banner__content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner__content p {
    margin: 0;
    color: #e5e7eb;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner__actions .btn {
    min-width: fit-content;
    width: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white);
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover { opacity: 0.9; }

.btn-primary {
    background: linear-gradient(135deg, var(--neo-purple), #b28dff);
    border: none;
    color: #111827;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
}

.cookie-modal[hidden] { display: none; }

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.cookie-modal__content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 720px;
    width: 92%;
    margin: 8vh auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cookie-modal__header {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal__body {
    padding: 18px 20px 8px;
}

.cookie-modal__footer {
    padding: 16px 20px 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.cookie-modal__footer .btn {
    min-width: fit-content;
    width: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-modal__close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cookie-category {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.cookie-category__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cookie-badge {
    background: #e5e7eb;
    color: #111827;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 700;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.switch input { display: none; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #d1d5db;
    transition: .2s;
    border-radius: 999px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

input:checked + .slider {
    background: linear-gradient(135deg, var(--neo-purple), #b28dff);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

@media (max-width: 640px) {
    .cookie-banner__content { flex-direction: column; align-items: flex-start; }
    .cookie-banner__actions { 
        width: 100%; 
        justify-content: flex-start; 
        flex-wrap: wrap; 
    }
    
    .cookie-banner__actions .btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .cookie-modal__footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-modal__footer .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Partner Become Section */
.partner-become-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.plan-compact {
  background: linear-gradient(135deg, var(--deep-black), #2a2a2a);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.2);
  max-width: 80vw;
  width: 100%;
}

.plan-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.plan-compact h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.price-button {
  background: linear-gradient(135deg, var(--neo-purple));
  color: var(--deep-black);
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  border: 2px solid var(--electric-yellow);
  
  position: relative;
  overflow: hidden;
}



.price-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
  color: var(--deep-black);
}

.offer-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-black);
  background: rgba(0, 0, 0, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.offer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.offer-text {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-period {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.plan-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.partner-benefits {
  display: grid;
  gap: 1rem;
}

.partner-benefit {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-benefit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 46, 255, 0.3);
  color: var(--electric-yellow);
}

.partner-benefit h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.partner-benefit p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.plan-features-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.plan-compact .plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.plan-compact .plan-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-1rem);
}

.plan-compact .plan-features li:before {
  content: "✓";
  position: absolute;
  color: var(--electric-yellow);
  font-weight: bold;
  font-size: 1.1rem;
}

.plan-compact .plan-features li::before {
    position: relative;
    left: -1rem;
  }

.plan-compact .plan-features li:hover {
    transform: translateY(-1px);
    color: var(--electric-yellow);
  }

.plan-compact .plan-features li:last-child {
  border-bottom: none;
}

/* Responsive Design für Partner Become Section */
@media (max-width: 768px) {
  .partner-become-cta {
    margin-top: 2rem;
  }
  
  .plan-compact {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .plan-header {
    gap: 1rem;
  }
  
  .plan-compact h3 {
    font-size: 1.5rem;
  }
  
  .price-button {
    padding: 1.25rem 2rem;
    min-width: 180px;
  }
  
  .offer-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  .offer-text {
    font-size: 0.8rem;
  }
  
  .price-amount {
    font-size: 1.8rem;
  }
  
  .price-period {
    font-size: 0.9rem;
  }
  
  .plan-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .partner-benefit {
    padding: 0.875rem;
  }
  
  .partner-benefit h4 {
    font-size: 0.9rem;
  }
  
  .partner-benefit p {
    font-size: 0.8rem;
  }
  
  .plan-features-section {
    order: -1;
  }
}

/* Partner Link Styling */
.partner-link {
  background: linear-gradient(90deg, var(--neo-purple), var(--electric-yellow));
  color: var(--deep-black);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.partner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  color: var(--deep-black);
}

/* Turbo Benefits Section */
.section-turbo {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(255, 215, 0, 0.05));
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.section-turbo::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%237C3AED" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.turbo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.benefits-section h3,
.process-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.benefits-section h3::after,
.process-section h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neo-purple), var(--electric-yellow));
  border-radius: 2px;
}

.benefit-grid-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.benefit-card-enhanced {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neo-purple), var(--electric-yellow));
}

.benefit-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
  border-color: var(--neo-purple);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card-enhanced h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 1rem;
}

.benefit-card-enhanced p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

.process-steps-enhanced {
  display: grid;
  gap: 1.5rem;
}

.process-step-enhanced {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-yellow), var(--neo-purple));
}

.process-step-enhanced:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
  border-color: var(--neo-purple);
}

.step-number {
  background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/* Responsive Design für Turbo Section */
@media (max-width: 768px) {
  .turbo-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .benefit-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .benefit-card-enhanced {
    padding: 1.5rem;
  }
  
  .process-step-enhanced {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .benefits-section h3,
  .process-section h3 {
    font-size: 1.5rem;
  }
}

/* Folienvielfalt Page Styles */
.hero--folienvielfalt {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(255, 215, 0, 0.1));
  position: relative;
  overflow: hidden;
}

.hero--folienvielfalt::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 100 100"><defs><pattern id="folien-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%237C3AED" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23folien-pattern)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.hero--folienvielfalt .hero__content {
  position: relative;
  z-index: 2;
}

/* Folien Grid */
.folien-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.folien-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.folien-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neo-purple), var(--electric-yellow));
}

.folien-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: var(--neo-purple);
}

.folien-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.folien-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 1rem;
}

.folien-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.folien-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.folien-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.folien-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--electric-yellow);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Farben Section */

.farben-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;

  box-sizing: border-box;
  overflow-x:scroll;
}

/* Preview Section */
.preview-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(255, 215, 0, 0.05));
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  width: 100%;
  box-sizing: border-box;
  grid-column: 1;
}

.preview-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 1rem;
  text-align: center;
}

.preview-section p {
  font-size: 1.1rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 2rem;
}

.vehicle-preview {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.vehicle-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: white;
  width: 100%;
}

.vehicle-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.3));
  opacity: 0.7;
  transition: all 0.5s ease;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.preview-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  text-align: center;
}

.preview-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.preview-info p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Color Carousel */
.color-carousel {
  position: relative;
  width: 100%;
}

.carousel-container {
  overflow: hidden;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  padding: 1rem;
  gap: 1rem;
}

.color-option {
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  border: 2px solid transparent;
  text-align: center;
}

.color-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
}

.color-option.active {
  border-color: var(--neo-purple);
  background: rgba(124, 58, 237, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.color-swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.color-option:hover .color-swatch {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.color-option span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-black);
  line-height: 1.2;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-btn {
  background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Color Pulse Animation */
@keyframes colorPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.farben-info {
  background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  grid-column: 2;
  width: 100%;
  box-sizing: border-box;
}

.farben-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.farben-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.farben-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.farben-info li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.farben-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Folientypen Tabs */
.folientypen-content {
  margin-top: 3rem;
}

.folientyp-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tab-button {
  background: white;
  border: 2px solid rgba(124, 58, 237, 0.2);
  color: var(--deep-black);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.tab-button:hover {
  border-color: var(--neo-purple);
  background: rgba(124, 58, 237, 0.05);
}

.tab-button.active {
  background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
  color: white;
  border-color: transparent;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.folientyp-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.folientyp-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}

.folientyp-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.eigenschaften,
.anwendungen {
  margin-bottom: 2rem;
}

.eigenschaften h4,
.anwendungen h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 1rem;
}

.eigenschaften ul,
.anwendungen ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eigenschaften li,
.anwendungen li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
}

.eigenschaften li::before,
.anwendungen li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--neo-purple);
  font-weight: bold;
  font-size: 1.2rem;
}

.folientyp-visual {
  display: grid;
  gap: 1.5rem;
}

.visual-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
}

.visual-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.visual-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}

.visual-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/* Herstellung Section */
.herstellung-content {
  margin-top: 3rem;
}

.herstellung-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.herstellung-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
}

.herstellung-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
}

.herstellung-step .step-number {
  background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.herstellung-step .step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}

.herstellung-step .step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

.qualitaets-standards h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-black);
  text-align: center;
  margin-bottom: 2rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.standard-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.standard-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
}

.standard-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.standard-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 1rem;
}

.standard-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/* Beratung CTA */
.beratung-cta {
  background: linear-gradient(135deg, var(--neo-purple), var(--electric-yellow));
  color: white;
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
}

.beratung-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.beratung-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.beratung-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.beratung-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.beratung-feature h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.beratung-feature p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.beratung-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.beratung-actions .btn {
  background: white;
  color: var(--neo-purple);
  border: none;
}

.beratung-actions .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Responsive Design für Folienvielfalt */
@media (max-width: 768px) {
  .farben-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .preview-section {
    padding: 2rem;
  }
  
  .preview-section h3 {
    font-size: 1.5rem;
  }
  
  .vehicle-image {
    height: 250px;
  }
  
  .preview-info {
    padding: 1.5rem;
  }
  
  .preview-info h4 {
    font-size: 1.2rem;
  }
  
  .preview-info p {
    font-size: 0.9rem;
  }
  
  .color-option {
    flex: 0 0 80px;
    padding: 0.75rem;
  }
  
  .color-swatch {
    width: 50px;
    height: 50px;
  }
  
  .color-option span {
    font-size: 0.7rem;
  }
  
  .carousel-track {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .folientyp-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .folientyp-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-button {
    width: 100%;
    max-width: 300px;
  }
  
  .herstellung-steps {
    grid-template-columns: 1fr;
  }
  
  .standards-grid {
    grid-template-columns: 1fr;
  }
  
  .beratung-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .beratung-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .farben-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .effekt-grid {
    grid-template-columns: 1fr;
  }
  
  .folien-grid {
    grid-template-columns: 1fr;
  }
  
  .beratung-content h2 {
    font-size: 2rem;
  }
  
  .beratung-content p {
    font-size: 1rem;
  }
}
