/* CSS Variables */
:root {
    --color-primary: #ffdf4e;
    --color-primary-hover: #ffe96b;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-border: #e5e5e5;
    --color-trustpilot: #00b67a;
    --font-serif: 'Source Serif 4', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

/* Button */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: var(--font-sans);
}

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: var(--color-background);
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

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

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 3rem;
}

.nav-right {
    gap: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-icon {
    width: 56px;
    height: 56px;
    color: var(--color-text);
    margin-right: 12px;
}

.logo-image {
    height: 53px;
    width: auto;
    max-width: 600px;
    margin-top: -6px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-size: 1.05rem;
    color: var(--color-text);
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
}

.nav-link:hover {
    color: var(--color-text-light);
}

.nav-text {
    font-size: 1.05rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    cursor: default;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.phone-icon {
    width: 22px;
    height: 22px;
}

/* Hero Section */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    order: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 420px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-cta .btn {
    display: inline-block;
}

.secondary-option {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.secondary-option-separated {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
    padding-top: 0;
    border-top: none;
}

.secondary-link {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.secondary-link:hover {
    color: var(--color-text-light);
}

.customer-reviews {
    margin-top: 2.5rem;
}

.reviews-text {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fcca06;
    font-size: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.reviews-badge {
    font-weight: 500;
    font-size: 0.85rem;
    color: #6b7280;
    background: none;
    padding: 0;
    border-radius: 0;
}

/* Hero Social Proof (über Überschrift) */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.hero-social-proof .review-stars {
    display: flex;
    gap: 2px;
}

.hero-social-proof .review-star {
    font-size: 1.25rem;
}

.hero-trust-line {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.hero-trust-line strong {
    color: var(--color-text);
}

/* Friction Reducer unter Button */
.hero-friction-reducer {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
    letter-spacing: 0.01em;
}

/* Hero Image */
.hero-image {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-illustration-img {
    width: 420px;
    height: auto;
    max-width: 100%;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-top: -5.5rem;
    position: relative;
    z-index: 1;
}

.play-icon {
    font-size: 0.75rem;
}


/* Divider */
.divider {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
    margin-bottom: 0;
}

/* Reviews Section */
/* Trust Badges Section */
.trust-badges {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-bottom: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.trust-badges-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.trust-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-icon {
    width: 80px;
    height: 80px;
}

.badge-icon.badge-wide {
    width: 120px;
    height: 80px;
}

.badge-image {
    width: 125px;
    height: 125px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Individuelle Badge-Größen für einheitliches Erscheinungsbild */
.trust-badge:nth-child(2) .badge-image {
    /* 49€ Garantie größer machen */
    width: 160px;
    height: 160px;
}

.trust-badge:nth-child(4) .badge-image {
    /* Geld zurück Garantie kleiner machen */
    width: 100px;
    height: 100px;
}

@media (max-width: 1200px) {
    
    .badge-image {
        width: 100px;
        height: 100px;
    }
    
    .trust-badge:nth-child(2) .badge-image {
        width: 125px;
        height: 125px;
    }
    
    .trust-badge:nth-child(4) .badge-image {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    .trust-badges {
        padding: 0 1rem;
        padding-bottom: 0;
    }
    
    .trust-badges-grid {
        gap: 0.5rem;
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .badge-image {
        width: 75px;
        height: 75px;
        min-width: 75px;
    }
    
    .trust-badge:nth-child(2) .badge-image {
        width: 95px;
        height: 95px;
        min-width: 95px;
    }
    
    .trust-badge:nth-child(4) .badge-image {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }
}

/* How It Works Section */
.how-it-works {
    background-color: #fafafa;
    padding: 5rem 2rem;
}

.how-it-works h2 {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Pricing Section - New Design */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    background-color: var(--color-primary);
    padding: 5rem 2rem;
    position: relative;
}

.pricing-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 5% 20%, rgba(255,255,255,0.3) 0%, transparent 8%),
        radial-gradient(circle at 2% 60%, rgba(255,255,255,0.2) 0%, transparent 5%),
        radial-gradient(circle at 8% 80%, rgba(255,255,255,0.25) 0%, transparent 6%);
    pointer-events: none;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pricing-cards-three {
    grid-template-columns: repeat(3, 1fr);
}

.price-free {
    color: #00a896;
}

.pricing-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 1rem 1.5rem 1.5rem;
}

.card-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.price-couples {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.price-guarantee {
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.savings {
    color: var(--color-text);
    font-weight: 500;
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--color-text);
    border-radius: 6px;
    background: transparent;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

.btn-outline:hover {
    background: var(--color-text);
    color: white;
}

.card-extras {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.extra-item span:last-child {
    color: var(--color-text);
}

/* Expert Team Section */
.expert-team-section {
    padding: 3rem 2rem;
}

.expert-team-container {
    max-width: 1280px;
    margin: 0 auto;
}

.expert-team-content {
    background-color: #f5f3ef;
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.expert-team-text {
    flex: 1;
    max-width: 550px;
}

.expert-team-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a3a4f;
    margin-bottom: 1rem;
}

.expert-team-section h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #1a2a3a;
    margin-bottom: 1rem;
    text-align: left;
}

.expert-team-subtitle {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.expert-team-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.expert-team-description a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.expert-team-description a:hover {
    color: var(--color-text-light);
}

.expert-team-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.expert-divider {
    width: 1px;
    height: 60px;
    background-color: #d1d5db;
    flex-shrink: 0;
}

.expert-avatars {
    display: flex;
    gap: -12px;
}

.expert-avatars .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #f5f3ef;
    overflow: hidden;
    margin-left: -20px;
    background-color: #c4a53a;
}

.expert-avatars .avatar:first-child {
    margin-left: 0;
}

.expert-avatars .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.expert-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expert-contact .contact-icon {
    width: 20px;
    height: 20px;
    color: #1a2a3a;
}

.expert-contact a {
    color: #1a2a3a;
    font-weight: 500;
    text-decoration: none;
}

.expert-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .expert-team-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .expert-team-text {
        max-width: 100%;
    }
    
    .expert-team-section h2 {
        text-align: center;
    }
    
    .expert-team-right {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .expert-divider {
        display: none;
    }
    
    .expert-avatars {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .expert-team-section {
        padding: 2rem 1rem;
    }
    
    .expert-team-content {
        padding: 1.5rem;
    }
    
    .expert-team-section h2 {
        font-size: 1.5rem;
    }
    
    .expert-avatars .avatar {
        width: 80px;
        height: 80px;
        margin-left: -16px;
    }
}

/* Why Write Will Section */
.why-write-will {
    background-color: #faf8f3;
    padding: 5rem 2rem;
}

.why-write-will-container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-write-will h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text);
    line-height: 1.3;
}

.highlight-today {
    background: linear-gradient(180deg, transparent 60%, var(--color-primary) 60%);
    padding: 0 4px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.why-feature {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
}

.why-feature-illustration {
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-illustration svg {
    width: 100%;
    height: 100%;
}

.why-feature-text h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.why-feature-text p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 480px;
}

.why-cta {
    text-align: center;
    padding-top: 2rem;
}

.why-cta-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.why-cta .btn {
    min-width: 250px;
}

@media (max-width: 768px) {
    .why-feature {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .why-feature-illustration {
        margin: 0 auto;
    }
    
    .why-feature-text p {
        max-width: 100%;
    }
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: var(--font-serif);
    text-align: left;
    color: var(--color-text);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-light);
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

.faq-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #00a896;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-link:hover {
    color: #008578;
    text-decoration: underline;
}

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

/* Reviews Statistics Section */
.reviews-stats-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.reviews-stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.reviews-stats-container h2 {
    text-align: center;
    font-size: 1.75rem;
    color: #000000;
    margin-bottom: 3rem;
    font-weight: 600;
}

.reviews-stats-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.reviews-badge-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ekomi-badge .trust-seal {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.rating-stars-large {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.rating-stars-large svg {
    width: 20px;
    height: 20px;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.rating-count {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.rating-count span {
    font-size: 0.75rem;
    color: #999;
}

.rating-total {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000000;
    margin-top: 0.75rem;
}

.reviews-description {
    padding-right: 2rem;
}

.reviews-description h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    text-decoration: underline;
}

.reviews-description p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reviews-link {
    font-size: 0.875rem;
    color: #0066cc;
    text-decoration: none;
}

.reviews-link:hover {
    text-decoration: underline;
}

.reviews-distribution h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    text-decoration: underline;
}

.distribution-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.distribution-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dist-stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
}

.dist-stars svg {
    width: 14px;
    height: 14px;
}

.dist-bar {
    flex: 1;
    height: 12px;
    background: linear-gradient(to right, #0066cc, #00a0dc);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    min-width: 100px;
}

.dist-fill {
    height: 100%;
    background: linear-gradient(to right, #0066cc, #00a0dc);
    border-radius: 2px;
}

.dist-bar {
    background: #e8e8e8;
}

.dist-percent {
    font-size: 0.75rem;
    color: #666;
    min-width: 40px;
    text-align: right;
}

/* Value Propositions Section */
.value-props-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.value-props-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.value-props-container h2 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.value-prop-card {
    text-align: center;
    padding: 1rem;
}

.value-prop-card h3 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-prop-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.value-props-link {
    font-size: 0.875rem;
    color: #0066cc;
    text-decoration: none;
}

.value-props-link:hover {
    text-decoration: underline;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .reviews-stats-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .reviews-description {
        padding-right: 0;
    }
    
    .reviews-distribution {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .value-props-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats-container h2,
    .value-props-container h2 {
        font-size: 1.25rem;
    }
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--color-background);
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.footer-section h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--color-text-light);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--color-text);
}

.footer-about {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-about h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.footer-about p:last-child {
    margin-bottom: 0;
}

.footer-about .footer-disclaimer {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 1rem;
}

.footer-bottom {
    max-width: 1280px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .customer-reviews {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-social-proof {
        justify-content: center;
    }
    
    .hero-trust-line {
        text-align: center;
    }
    
    .hero-friction-reducer {
        text-align: center;
    }
    
    .hero-illustration-img {
        width: 350px;
    }
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-cards-three {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: var(--color-background);
    border-top: 1px solid var(--color-border);
    padding: 1rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-links li:last-child {
    border-bottom: none;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--color-text);
    font-family: var(--font-serif);
}

.mobile-menu-link.active {
    color: var(--color-text);
    font-weight: 500;
}

.mobile-menu-link:hover {
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        padding: 0 1rem;
        height: 70px;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    /* Header CTA Button auf Mobile kleiner */
    .nav-right .btn-primary {
        padding: 8px 12px;
        font-size: 0.75rem;
        margin-left: 8px;
    }
    
    .phone-link {
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    .phone-link span {
        display: none;
    }
    
    .phone-icon {
        width: 20px;
        height: 20px;
    }
    
    .logo-image {
        height: 38px;
    }
    
    .hero-illustration-img {
        width: 240px;
    }
    
    .video-link {
        margin-top: -4.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
        margin-top: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-cards,
    .pricing-cards-three {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-about {
        margin: 2rem auto 0;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 0.5rem;
        height: 60px;
    }
    
    .nav-right {
        gap: 0.25rem;
    }
    
    /* Header CTA Button auf sehr kleinen Screens */
    .nav-right .btn-primary {
        padding: 6px 10px;
        font-size: 0.7rem;
        margin-left: 6px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .phone-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero {
        padding: 1.5rem 1rem 2rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-illustration-img {
        width: 220px;
    }
    
    .video-link {
        margin-top: -4rem;
        font-size: 0.85rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        margin-top: 0.5rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-social-proof .review-star {
        font-size: 1.1rem;
    }
    
    .hero-trust-line {
        font-size: 0.85rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        margin: 1.5rem auto 0;
        padding-top: 1.25rem;
    }
    
    .footer-about h4 {
        font-size: 1rem;
    }
    
    .footer-about p {
        font-size: 0.85rem;
    }
    
    .mobile-menu {
        padding: 1rem 1rem;
    }
}

/* ===== Price Comparison Section ===== */
.price-comparison-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.price-comparison-container {
    max-width: 1280px;
    margin: 0 auto;
}

.price-comparison-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 3rem;
    font-weight: 600;
}

.price-comparison-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.comparison-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-check {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

.benefit-item strong {
    color: #000;
}

.comparison-cta {
    display: inline-block;
    background: #fddf4f;
    color: #1a3a4f;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.comparison-cta:hover {
    background: #f5d63d;
}

.comparison-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.chart-wrapper {
    background: #f0ede8;
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 500px;
}

.chart-row {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

.chart-row.highlight {
    margin-bottom: 0.5rem;
}

.chart-arrow {
    width: 24px;
    height: 24px;
}

.chart-arrow svg {
    width: 24px;
    height: 24px;
}

.chart-arrow.empty {
    visibility: hidden;
}

.chart-provider {
    display: flex;
    flex-direction: column;
}

.provider-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.provider-name.highlight-text {
    color: #0066cc;
    font-size: 1.1rem;
}

.provider-detail {
    font-size: 0.8rem;
    color: #666;
}

.chart-price.highlight-price {
    background: #22c55e;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
}

.chart-price-bar {
    background: #9ca3af;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 100px;
}

.savings-badge {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    text-align: center;
}

.savings-label {
    font-size: 0.65rem;
    opacity: 0.9;
}

.savings-amount {
    font-weight: 700;
    font-size: 0.85rem;
}

.chart-disclaimer {
    font-size: 0.7rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #ddd;
}

/* Price Comparison Responsive */
@media (max-width: 992px) {
    .price-comparison-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .comparison-benefits {
        text-align: center;
        align-items: center;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .comparison-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .chart-wrapper {
        max-width: 100%;
    }
    
    .savings-badge {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        flex-direction: row;
        gap: 0.25rem;
    }
}

@media (max-width: 600px) {
    .price-comparison-container h2 {
        font-size: 1.75rem;
    }
    
    .benefit-item p {
        font-size: 1rem;
    }
    
    .chart-row {
        grid-template-columns: 20px 1fr auto;
        gap: 0.5rem;
    }
    
    .provider-name {
        font-size: 0.9rem;
    }
    
    .provider-detail {
        font-size: 0.7rem;
    }
    
    .chart-price-bar {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
        min-width: 80px;
    }
}

/* ===== 4 Steps Section ===== */
.steps-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.steps-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a3a4f;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.steps-section h2 {
    font-family: 'Source Serif 4', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a3a4f;
    margin-bottom: 3rem;
}

.steps-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    width: 220px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.step-card-highlight {
    /* Kein spezieller Style mehr - alle Karten sehen gleich aus */
}

.step-number {
    width: 36px;
    height: 36px;
    background: #fddf4f;
    color: #1a3a4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-family: 'Source Serif 4', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3a4f;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
    flex-grow: 1;
}

.step-illustration {
    margin-top: 1.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-illustration svg {
    width: 100%;
    height: 100%;
    max-width: 120px;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
}

.step-arrow svg {
    width: 24px;
    height: 24px;
    color: #c4a53a;
    opacity: 0.5;
}

.steps-cta {
    margin-top: 3rem;
}

.steps-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Steps Section Responsive */
@media (max-width: 1024px) {
    .steps-cards {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step-card {
        width: calc(50% - 2rem);
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 3rem 1rem;
    }
    
    .steps-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .steps-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step-card {
        width: 100%;
        max-width: 320px;
    }
    
    .step-arrow {
        display: none;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: #ffffff;
    padding: 2rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a3a4f;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.testimonials-section h2 {
    font-family: 'Source Serif 4', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a3a4f;
    margin-bottom: 3rem;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 1140px;
    margin: 0 auto;
}

.testimonials-cards {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    width: 340px;
    min-width: 340px;
    min-height: 260px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars .star {
    color: #e0e0e0;
    font-size: 1.1rem;
    background: none;
    padding: 0;
    border-radius: 0;
}

.testimonial-stars .star.filled {
    color: #fcca06;
    background: none;
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    color: #1a3a4f;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.testimonial-verified svg {
    width: 12px;
    height: 12px;
    stroke: #1a3a4f;
}

.testimonial-quote {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    font-style: italic;
    color: #1a3a4f;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: #1a3a4f;
    font-size: 0.95rem;
}

.testimonial-location {
    color: #6b7280;
    font-size: 0.85rem;
}

.testimonial-date {
    color: #9ca3af;
    font-size: 0.75rem;
    font-style: italic;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    min-height: 20px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots .dot:hover {
    background: #9ca3af;
}

.testimonials-dots .dot.active {
    background: #1a3a4f;
    transform: scale(1.2);
}

/* Testimonials Responsive */
@media (max-width: 1200px) {
    .testimonials-slider {
        max-width: 760px;
    }
}

@media (max-width: 800px) {
    .testimonials-slider {
        max-width: 360px;
    }
    
    .testimonial-card {
        min-height: 280px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 1.5rem 1rem;
    }
    
    .testimonials-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-slider {
        overflow: hidden;
        position: relative;
        height: 900px; /* Höhe für genau 3 Testimonials (3 x 280px + 2 x 24px gap) */
    }
    
    .testimonials-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        transition: transform 0.5s ease-in-out;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 400px;
        flex-shrink: 0;
        min-height: 280px;
    }
}

