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

/* Systemschriftarten für bessere Performance */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Platz für fixed header */
}

/* Logo Header */
.logo-header {
    background: white;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper svg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Weniger Platz für kleineren Header auf Mobile */
    }
    
    .logo-header {
        padding: 16px 0;
    }
    
    .logo-wrapper svg {
        width: 150px;
        height: 50px;
    }
}

/* Container mit Safe Area für moderne Phones */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
}

/* Section Spacing Mobile First */
section {
    padding: 40px 0;
}

@media (min-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.product-showcase {
    margin-bottom: 30px;
}

.color-selector {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.color-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: #f5f5f5;
    cursor: default;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    opacity: 0.8;
    pointer-events: none;
}

.product-image {
    margin: 40px 0;
}

.product-image img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

.cta-button {
    background: #1a1a1a;
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 20px auto;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 14px;
    color: #666;
}

/* Product Introduction - Mobile First */
.product-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.intro-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

@media (min-width: 768px) {
    .intro-title {
        font-size: 32px;
    }
}

.intro-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text:last-of-type {
    margin-bottom: 0;
}

.intro-text strong {
    color: #1e40af;
    font-weight: 700;
}

/* Features Grid - Mobile First 2x2 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 32px auto;
    max-width: 400px;
}

@media (min-width: 768px) {
    .features-grid {
        gap: 16px;
        margin: 40px auto;
        max-width: 500px;
    }
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-value {
    font-size: 24px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 4px;
}

.feature-label {
    font-size: 14px;
    color: #6b7280;
}

.intro-subtext {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Produktbild - Volle Breite auf Mobile */
.product-showcase {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 40px 0;
    background: transparent;
    margin-top: 24px;
    margin-bottom: 32px;
}

.product-showcase img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    padding: 0;
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 20px 0;
    }
    
    .product-showcase img {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}

@media (min-width: 768px) {
    .product-showcase img {
        max-width: 800px;
        max-height: 450px;
    }
}

/* Preis-Block */
.price-block {
    background: white;
    padding: 32px 16px;
    text-align: center;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: #1e40af;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .price {
        font-size: 64px;
    }
}

.price-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 24px;
}

/* CTA Button - Mobile Optimiert */
.cta-button,
.gradient-button {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 400px;
    min-height: 56px;
    touch-action: manipulation;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.cta-button:hover,
.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(30, 64, 175, 0.3);
}

/* Trust Badges - Mobile Optimiert */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .trust-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.trust-badges span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #4b5563;
}

.guarantee-badge {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    padding: 12px 20px;
    background: #ecfdf5;
    border-radius: 8px;
    display: inline-block;
}

/* Story Section - Mobile Optimiert */
.story-section {
    background: #f9fafb;
}

.story-section h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .story-section h2 {
        font-size: 32px;
    }
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
}

.timeline-date {
    font-size: 14px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

.timeline-item.success .timeline-content {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
}

/* Product Variants - Mobile Optimiert */
.product-variants {
    background: white;
}

.product-variants h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.variants-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 32px;
}

.variants-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.main-product-image {
    margin-bottom: 24px;
    text-align: center;
}

.main-product-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .main-product-image img {
        max-height: 400px;
        max-width: 500px;
    }
}

/* Thumbnail Optionen für Farbauswahl */
.thumbnail-options {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 0 16px;
}

.thumbnail-option {
    width: 80px;
    height: 80px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.thumbnail-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail-option.active {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.thumbnail-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.thumbnail-option:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .thumbnail-options {
        gap: 8px;
    }
    
    .thumbnail-option {
        width: 70px;
        height: 70px;
    }
}

/* Price Transparency - Mobile Optimiert */
.price-transparency {
    background: #f9fafb;
}

.price-transparency h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .price-comparison {
        grid-template-columns: 1fr 1fr;
    }
}

.price-option {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-option.our-offer {
    border: 2px solid #10b981;
    position: relative;
}

.price-option.our-offer::before {
    content: 'EMPFOHLEN';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-option h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.price-tag {
    font-size: 32px;
    font-weight: 900;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
}

.price-option ul {
    list-style: none;
    padding: 0;
}

.price-option li {
    padding: 8px 0;
    font-size: 15px;
    color: #4b5563;
}

.price-breakdown {
    text-align: center;
    margin-top: 16px;
    font-weight: 600;
    color: #10b981;
}

/* Benefits Section - Mobile Optimiert */
.benefits {
    background: white;
}

.benefits h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit {
    background: #f9fafb;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.benefit p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
}

.gift-hint {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 24px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.gift-icon {
    font-size: 20px;
    margin-bottom: 0;
}

.gift-text {
    font-size: 14px;
    color: #92400e;
    line-height: 1.3;
    margin: 0;
}

.gift-text strong {
    font-weight: 700;
}

/* Reviews - Mobile Optimiert */
.social-proof {
    background: #f9fafb;
}

.social-proof h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reviews {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

.review {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 12px;
}

.review p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 12px;
}

.review cite {
    font-size: 14px;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

/* Clear Choice */
.clear-choice {
    padding: 80px 0;
    background: #fff3e0;
}

.clear-choice h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.choice-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-display {
    margin-bottom: 50px;
}

.final-price {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.price-note {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
    display: block;
}

.choice-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.option {
    padding: 30px;
    background: white;
    border-radius: 15px;
}

.option h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-button.primary {
    background: #27ae60;
    color: white;
    width: 100%;
}

.cta-button.primary:hover {
    background: #229954;
}

.link-option {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    padding: 15px 30px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.link-option:hover {
    border-color: #999;
    color: #1a1a1a;
}

/* Final CTA - Mobile Optimiert */
.final-cta {
    background: white;
}

.final-cta h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quantity-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 32px;
}

/* Mengenauswahl Buttons */
.quantity-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 32px;
}

@media (min-width: 768px) {
    .quantity-buttons {
        grid-template-columns: repeat(5, 1fr);
        max-width: 900px;
    }
}

.quantity-button {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 120px;
}

.quantity-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #1e40af;
}

.quantity-button.popular {
    border-color: #1e40af;
    background: #f0f9ff;
}

.quantity-button.best-value {
    border-color: #10b981;
    background: #ecfdf5;
}

.quantity-button .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e40af;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.quantity-button.best-value .badge {
    background: #10b981;
}

.quantity-number {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.quantity-price {
    font-size: 24px;
    font-weight: 900;
    color: #1e40af;
}

.quantity-savings {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto 32px;
}

@media (min-width: 768px) {
    .cta-buttons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

.cta-button.black-btn { background: #000; }
.cta-button.violet-btn { background: #8b5cf6; }
.cta-button.red-btn { background: #ef4444; }
.cta-button.green-btn { background: #10b981; }

/* Payment Notice - Mobile Optimiert */
.payment-notice {
    margin: 32px 0;
}

.payment-methods {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.payment-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.swiss-payment {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.swiss-flag {
    flex-shrink: 0;
}

.payment-text {
    text-align: left;
}

.payment-headline {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.payment-info {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.guarantee-box {
    background: #ecfdf5;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 400px;
    margin: 24px auto;
}

.guarantee-icon {
    font-size: 24px;
    color: #10b981;
}

.guarantee {
    font-size: 16px;
    font-weight: 600;
    color: #059669;
}

/* Alternative Option */
.choice-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.divider-text {
    color: #9ca3af;
    font-size: 14px;
}

.alternative-option {
    text-align: center;
    padding: 24px;
    background: #f9fafb;
    border-radius: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.alternative-option h3 {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 12px;
}

.link-option {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

/* About Us Section */
.about-section {
    background: #f8fafc;
    padding: 40px 0;
}

.about-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.card-header {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    padding: 32px;
    text-align: center;
    color: white;
}

.card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.card-body {
    padding: 32px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.profile-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.story-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.story-block {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    align-items: flex-start;
}

.block-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.story-block p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.story-block strong {
    color: #1e40af;
    font-weight: 600;
}

.quote-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    padding: 24px;
    border-radius: 16px;
    position: relative;
    text-align: center;
}

.quote-icon {
    color: #1e40af;
    opacity: 0.3;
    margin-bottom: 12px;
}

.quote-card p {
    font-size: 18px;
    font-style: italic;
    color: #1e40af;
    font-weight: 500;
    margin: 0;
}

/* Mobile Optimizations for About Section */
@media (max-width: 768px) {
    .about-card {
        border-radius: 0;
        margin: 0 -16px;
    }
    
    .card-header {
        padding: 24px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .card-body {
        padding: 24px;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer - Mobile Optimiert */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 32px 0;
    margin-top: 40px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    font-size: 14px;
    color: #6b7280;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: 40px 0;
    background: white;
}

.back-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1a1a1a;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 24px;
    }
}

.last-update {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page section {
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-page p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-page li {
    line-height: 1.8;
    color: #333;
    margin-bottom: 5px;
}

/* Sticky CTA für Mobile */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 16px;
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        z-index: 100;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
    
    .mobile-sticky-cta.visible {
        transform: translateY(0);
    }
    
    .mobile-sticky-cta .cta-button {
        margin: 0;
        width: 100%;
    }
    
    /* Padding am Ende der Seite für sticky CTA */
    body {
        padding-bottom: 80px;
    }
}

/* Landscape Optimierung */
@media (max-height: 500px) and (orientation: landscape) {
    section {
        padding: 24px 0;
    }
    
    .product-showcase img {
        max-height: 200px;
    }
    
    .intro-title {
        font-size: 24px;
    }
}

/* Performance Optimierungen */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: #0a0a0a;
        color: #ffffff;
    }
    
    .product-intro {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
    }
    
    .feature,
    .timeline-content,
    .price-option,
    .review {
        background: #1a1a1a;
        color: #ffffff;
    }
    
    .trust-badges span {
        background: #1a1a1a;
        color: #e5e7eb;
    }
}