/* 
========================================
kfzschutz - Kfz-Versicherung
Theme: Trust Blue & Protection Green
========================================
*/

/* ========== CSS RESET & VARIABLES ========== */
:root {
    /* New Theme Colors for kfzschutz - Insurance Theme */
    --primary-blue: #0057A3;
    /* Trust Blue - insurance/trust */
    --primary-blue-light: #1A6BB5;
    --primary-blue-dark: #003D75;
    --secondary-green: #00A86B;
    /* Protection Green - savings/protection */
    --secondary-green-light: #2DC489;
    --accent-yellow: #FFB800;
    /* Alert Yellow - attention/warnings */
    --accent-yellow-light: #FFD966;
    --bg-light: #F5F7FA;
    /* Clean light background */
    --bg-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-medium: #4A5B6E;
    --text-light: #6B7A8A;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-border: #E0E4E8;
    --gray-light: #F0F2F5;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 87, 163, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 87, 163, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 87, 163, 0.16);
    --shadow-green: 0 4px 16px rgba(0, 168, 107, 0.2);
    --shadow-yellow: 0 4px 12px rgba(255, 184, 0, 0.2);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title .highlight {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 400;
}

/* ========== PAGE LOADER ========== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--bg-light);
    border-top-color: var(--secondary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ========== ADVERTISEMENT NOTICE ========== */
.ad-notice-top {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-light));
    color: var(--text-dark);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 3px solid var(--primary-blue);
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(200%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--primary-blue);
    border-right: 4px solid var(--secondary-green);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    padding: 1.5rem;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    color: var(--white);
    border: none;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.cookie-btn-reject {
    background-color: var(--gray-light);
    color: var(--text-medium);
    border: 1px solid var(--gray-border);
}

.cookie-btn-reject:hover {
    background-color: var(--gray-border);
}

/* ========== HEADER ========== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--secondary-green);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.logo-highlight {
    color: var(--secondary-green);
    font-weight: 600;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--white);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
}

/* ========== HAMBURGER MENU ========== */
.hamburger-btn {
    width: 40px;
    height: 40px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger-line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100vh;
    background: linear-gradient(135deg, var(--white), var(--bg-light));
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-green);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

.close-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.mobile-nav-list {
    margin-bottom: 2rem;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--white);
    border: 1px solid var(--gray-border);
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    transform: translateX(5px);
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--secondary-green);
}

.mobile-cta {
    display: block;
    text-align: center;
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge-award {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-rating {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.highlight-green {
    color: var(--secondary-green);
    font-weight: 700;
}

.hero-savings {
    margin-bottom: 2rem;
}

.savings-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-border);
}

.savings-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.savings-text {
    flex: 1;
}

.savings-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.savings-car {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.savings-amount {
    display: block;
    font-weight: 700;
    color: var(--secondary-green);
    font-size: 1rem;
}

.hero-features {
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--secondary-green);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.feature-text {
    color: var(--text-dark);
    font-weight: 500;
}

.hero-cta {
    text-align: center;
}

.hero-cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cta-small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.hero-trust-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1rem;
    align-items: center;
    border: 2px solid var(--secondary-green);
    white-space: nowrap;
}

.trustpilot-logo {
    font-weight: 700;
    color: var(--primary-blue);
}

.trustpilot-rating {
    color: var(--accent-yellow);
    font-weight: 600;
}

.trustpilot-reviews {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.dropcap {
    font-family: var(--font-heading);
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.about-paragraph {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-signature {
    margin-top: 2rem;
    padding: 1rem;
    border-left: 4px solid var(--secondary-green);
    background-color: var(--bg-light);
}

.signature-name {
    display: block;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.signature-title {
    display: block;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light), var(--white));
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--gray-border);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* ========== LEISTUNGEN SECTION ========== */
.leistungen-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.leistung-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.leistung-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.leistung-card:hover::before {
    transform: scaleX(1);
}

.leistung-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.leistung-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.leistung-text {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.leistung-badge {
    display: inline-block;
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

/* ========== TARIFE SECTION ========== */
.tarife-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.tarife-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.tarif-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tarif-vollkasko {
    border-top: 4px solid var(--primary-blue);
}

.tarif-teilkasko {
    border-top: 4px solid var(--secondary-green);
}

.tarif-haftpflicht {
    border-top: 4px solid var(--accent-yellow);
}

.tarif-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-border);
}

.tarif-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tarif-subtitle {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.tarif-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.tarif-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.tarif-body {
    padding: 2rem;
    flex: 1;
}

.tarif-list {
    list-style: none;
}

.tarif-item {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
}

.tarif-item::before {
    content: '✓';
    color: var(--secondary-green);
    font-weight: bold;
    margin-right: 0.75rem;
}

.tarif-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.tarif-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.tarif-vollkasko .tarif-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.tarif-teilkasko .tarif-button {
    background-color: var(--secondary-green);
    color: var(--white);
    border-color: var(--secondary-green);
}

.tarif-haftpflicht .tarif-button {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    border-color: var(--accent-yellow);
}

.tarif-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.1);
}

.tarif-hinweis {
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.hinweis-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 5 L35 20 L20 35 L5 20 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.1;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-border);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-author {
    border-top: 1px solid var(--gray-border);
    padding-top: 0.75rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.author-verified {
    font-size: 0.8rem;
    color: var(--secondary-green);
    margin-right: 0.5rem;
}

.author-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonials-trustpilot {
    text-align: center;
}

.trustpilot-summary {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.trustpilot-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.trustpilot-stars {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.trustpilot-total {
    color: var(--text-medium);
    font-size: 1rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    color: var(--primary-blue);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.25rem;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: var(--white);
    border-top: 0 solid var(--gray-border);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.25rem;
    border-top-width: 1px;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.banner-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-button {
    background: var(--white);
    color: var(--secondary-green);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner-button:hover {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.banner-small {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green), var(--accent-yellow));
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-green);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.contact-label {
    color: var(--secondary-green);
    font-weight: 500;
}

.footer-list-item {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.footer-address-text {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.8;
}

.footer-ad-note {
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(0, 168, 107, 0.1);
    border-left: 4px solid var(--secondary-green);
    border-radius: 4px;
}

.ad-note-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-important {
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(255, 184, 0, 0.1);
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--accent-yellow);
}

.important-text {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========== POPUPS ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 87, 163, 0.8);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-container {
    background: linear-gradient(135deg, var(--white), var(--bg-light));
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: popupScale 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.popup-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.popup-content {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(80vh - 70px);
}

.impressum-content p,
.privacy-content p,
.terms-content p,
.cookies-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.impressum-content h3,
.privacy-content h3,
.terms-content h3,
.cookies-content h3 {
    color: var(--primary-blue);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.cookie-settings-buttons {
    margin-top: 2rem;
    text-align: center;
}

.cookie-save-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-green);
}

.cookie-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* ========== MEDIA QUERIES ========== */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarife-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .nav-desktop {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-actions {
        gap: 1rem;
    }

    .header-actions .cta-button {
        display: none;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-trust-badge {
        position: static;
        transform: none;
        margin-top: 1rem;
        white-space: normal;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
    }

    .tarife-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trustpilot-summary {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-consent {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        flex-direction: column;
    }

    .savings-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-feature {
        flex-direction: column;
        text-align: center;
    }

    .popup-container {
        width: 95%;
    }
}