/* Google Fonts - Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables - Chocolate Theme */
:root {
    /* Colors - Chocolate Theme */
    --primary-color: #6B4226;       /* Rich Dark Chocolate */
    --secondary-color: #D2B48C;     /* Tan/Light Cacao - for lighter accents */
    --accent-color: #FFD700;        /* Gold - for highlights, CTAs */
    --success-color: #50C878;       /* Emerald Green - for success states */
    
    --text-primary: #3D2B1F;       /* Very Dark Brown - for main text */
    --text-secondary: #7B685A;     /* Muted Brown - for secondary text */
    --text-on-dark-bg: #FFF8E7;    /* Warm Off-White - for text on dark backgrounds */
    
    --background-light: #FDFBF7;   /* Very Light Warm Off-White - page background */
    --background-medium: #F5F0E9;  /* Slightly darker warm off-white for cards/sections */
    --background-dark-accent: #5A381F; /* Darker brown for specific accents */
    --white: #ffffff;
    
    --border-light: #E0D6CC;       /* Subtle Border Color */
    --shadow-color-base: rgba(70, 40, 20, 0.1);
    --shadow-color-hover: rgba(70, 40, 20, 0.2);

    /* Typography - Mobile First */
    --font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px - For Pre-Hero Title */
    
    /* Spacing - Mobile First */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 0.75rem;   /* 12px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 3rem;     /* 48px */
    --spacing-3xl: 4rem;     /* 64px */
    
    /* Layout */
    --container-max-width: 1100px; /* Slightly reduced for a more focused layout */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles - Mobile First */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-xl);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container - Mobile First */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg); /* Increased side padding for container */
}

/* Hero Section - Text überlagert Bild */
.hero {
    background-image: linear-gradient(rgba(45, 24, 16, 0.65), rgba(45, 24, 16, 0.65)), url('../images/bar2.png'); /* Overlay leicht angepasst für bessere Lesbarkeit */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: var(--spacing-2xl) 0; /* Vertikales Padding für Textabstand oben/unten */
    min-height: 40vh; /* Höhe beibehalten oder anpassen nach Bedarf */
    max-height: 450px;
    display: flex; /* Flexbox für Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    justify-content: center; /* Horizontale Zentrierung */
    text-align: center; /* Text zentrieren */
    position: relative;
    overflow: hidden;
    color: var(--text-on-dark-bg); /* Textfarbe für den Hero-Bereich */
}

.hero-content-container {
    position: relative; /* Stellt sicher, dass der Text über dem Overlay liegt */
    z-index: 2;
    width: 100%; /* Nimmt die volle Breite des Containers ein */
}

.hero-title {
    font-size: var(--font-size-3xl);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Leichter Textschatten für Lesbarkeit */
}

.hero-title strong {
    font-weight: 700;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 400;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.hero-subtitle strong {
    font-weight: 700;
}

/* Innovative Products Section */
.innovative-products-section {
    background-color: var(--white); /* Clean white background for this section */
    padding: var(--spacing-2xl) 0;
    text-align: center; /* Hinzugefügt für die Zentrierung des inline-grid */
}

.innovative-products-content {
    display: grid; /* Wird in Media Query zu inline-grid */
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center; /* Wird in Media Query für größere Screens überschrieben */
    /* Muss für die globale Ansicht (Mobile) ggf. auf text-align: left gesetzt werden, falls es nicht schon so ist. */
}

.section-title-left-aligned {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
    text-align: left;
}

.innovative-products-text p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.innovative-products-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.innovative-products-image img {
    width: 100%;
    max-width: 22.5rem; /* Geändert von 450px (450px / 20px pro rem = 22.5rem) */
    height: 100%; /* Geändert von auto */
    object-fit: cover; /* Hinzugefügt */
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px var(--shadow-color-hover);
    display: block;
    margin: 0 auto; /* Center image on mobile */
}

/* Business Opportunity Banner */
.business-opportunity-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); /* Tan to Dark Chocolate - gleicher Verlauf wie BONUS */
    color: var(--text-on-dark-bg); /* Geändert von --text-primary zu hellem Text */
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.business-opportunity-banner h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.business-opportunity-banner p {
    font-size: var(--font-size-xl);
    margin: 0 auto;
    line-height: 1.6;
}

/* Key Advantages Section */
.key-advantages-section {
    background-color: var(--background-light);
    padding: var(--spacing-2xl) 0;
}

.key-advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.advantage-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow-color-base);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.advantage-icon {
    width: 3rem; /* Geändert von 60px (60px / 20px pro rem = 3rem) */
    height: 3rem; /* Geändert von 60px */
    margin-bottom: var(--spacing-md);
    /* Add filter for SVG color if needed, e.g., filter: invert(30%) sepia(100%) saturate(500%) hue-rotate(330deg) brightness(60%) contrast(100%); */
}

.advantage-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.advantage-card p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Experience Banner */
.experience-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); /* Tan to Dark Chocolate - gleicher Verlauf wie BONUS */
    color: var(--text-on-dark-bg); /* Geändert von --white zu hellem Text für Konsistenz */
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.experience-banner p {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    margin: 0 auto var(--spacing-lg); /* Hinzugefügter Abstand zum Button */
    line-height: 1.5;
}

.experience-banner strong {
    font-weight: 700;
}

/* Buttons - Mobile First - Themed */
.cta-button {
    display: inline-block;
    background: var(--accent-color); /* Gold background for CTAs */
    color: var(--text-primary); /* Dark text on gold */
    font-family: var(--font-family);
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color-base);
    min-width: 220px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color-hover);
    background: #FFC700; /* Slightly lighter gold on hover */
    border-color: var(--primary-color);
}

.cta-button:active {
    transform: translateY(0);
}

/* Section Styles - Mobile First (General Fallback for older sections) */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    text-align: center;
    color: var(--primary-color); /* Dark Chocolate for titles */
    margin-bottom: var(--spacing-sm); /* Reduced bottom margin */
    line-height: 1.3;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 400;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Insider Package Styles */
.insider-package-wrapper {
    margin-top: var(--spacing-xl);
    background-color: var(--background-medium); /* Leichter Hintergrund für den gesamten Block */
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-color-base);
    text-align: center; /* Hinzugefügt, um inline-block Kinder zu zentrieren */
}

.insider-package-title {
    font-size: var(--font-size-2xl); /* Gleiche Größe wie section-title */
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.insider-package-layout {
    display: grid; /* Geändert von inline-grid zu grid für Mobile */
    grid-template-columns: 1fr; /* Eine Spalte für Mobile - Bild unter Text */
    align-items: stretch; 
    text-align: left; 
    gap: var(--spacing-lg); /* Erhöht von var(--spacing-md) für mehr Abstand zwischen Text und Bild */
}

.insider-package-image-container {
    text-align: center; /* Bild auf Mobile zentrieren */
}

.insider-package-image {
    width: 100%;
    max-width: 25rem; /* ca. 500px bei 20px Basisschrift */
    height: 100%; /* Geändert von auto */
    object-fit: cover; /* Hinzugefügt */
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color-hover);
}

.insider-package-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.insider-item h4 {
    font-size: var(--font-size-xl); /* Etwas größer als normaler Text */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.insider-item p {
    font-size: var(--font-size-lg); /* Kleinere Schriftgröße für Details */
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Product Grid - Mobile First - Themed */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.product-item {
    background: var(--background-medium);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-color-base);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color-hover);
}

.product-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.product-description {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Grid - Mobile First - Themed */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.benefit-card {
    background: var(--background-medium);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-color-base);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--accent-color); /* Gold accent top border */
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color-hover);
}

.benefit-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.benefit-description {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Statistics - Mobile First - Themed */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark-accent) 100%); /* Dark Chocolate to Dark Accent Brown */
    color: var(--text-on-dark-bg);
    padding: var(--spacing-xl) 0;
    border-radius: var(--border-radius-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--accent-color); /* Gold for numbers */
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-on-dark-bg);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Section - Mobile First - Themed */
.cta-section { /* Diese Klasse wird nun für den BONUS Bereich verwendet */
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); /* Tan to Dark Chocolate */
    color: var(--text-on-dark-bg); /* Geändert von --text-primary für hellen Text */
    text-align: center;
    padding: var(--spacing-xl) 0; /* Geändert von var(--spacing-2xl) var(--spacing-md) zu var(--spacing-xl) 0 */
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-xl) 0;
}

.cta-title { /* Wird für den BONUS Titel verwendet */
    font-size: var(--font-size-3xl); /* Geändert von 1.8125rem zu var(--font-size-3xl) (30px) für deutlich größere Schrift */
    font-weight: 700; /* Geändert von 600 zurück zu 700 wie .insider-package-title */
    color: var(--text-on-dark-bg); /* Geändert von --primary-color zu hellem Text */
    margin-bottom: var(--spacing-sm); /* Geändert von var(--spacing-md) zu var(--spacing-sm) */
    text-transform: uppercase;
}

.cta-description { /* Wird für die BONUS Beschreibung verwendet */
    font-size: var(--font-size-2xl); /* Geändert von var(--font-size-xl) zu var(--font-size-2xl) wie .experience-banner p */
    font-weight: 500; /* Hinzugefügt wie .experience-banner p */
    color: var(--text-on-dark-bg); /* Geändert von --text-secondary zu hellem Text */
    margin: 0 auto var(--spacing-xl); /* Geändert von margin: 0 auto zu margin: 0 auto var(--spacing-xl) für mehr Abstand zum Button */
    max-width: 700px; /* Begrenzt die Breite für bessere Lesbarkeit */
    line-height: 1.5; /* Geändert von 1.6 zu 1.5 wie .experience-banner p */
    opacity: 0.95; /* Hinzugefügt für Text auf dunklem Hintergrund */
}

/* Packages - Mobile First - Themed */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.package-item {
    background: var(--background-medium);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px var(--shadow-color-base);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.package-item.popular {
    border-color: var(--accent-color); /* Gold border for popular */
    transform: scale(1.02);
    box-shadow: 0 6px 25px var(--shadow-color-hover);
}

.package-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px var(--shadow-color-hover);
}

.package-popular-badge {
    position: absolute;
    top: -15px; /* Adjusted for better visual */
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color); /* Gold badge */
    color: var(--text-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 5px var(--shadow-color-base);
}

.package-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.package-price {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.package-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.package-features li {
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-lg);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* FAQ Section */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-card {
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    background: var(--background-light);
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: color-mix(in srgb, var(--background-light) 95%, var(--primary-color) 5%);
}

.faq-question.active {
    background: color-mix(in srgb, var(--background-light) 90%, var(--primary-color) 10%);
}

.faq-icon {
    width: 48px;
    height: 48px;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: var(--font-size-xl); /* Vergrößert von var(--font-size-lg) zu var(--font-size-xl) */
    font-weight: 700; /* Erhöht von 600 zu 700 für mehr Gewicht */
    color: var(--text-primary);
    margin: 0;
    flex-grow: 1;
    line-height: 1.3; /* Reduziert von 1.4 zu 1.3 für kompaktere Darstellung */
}

.faq-toggle {
    font-size: var(--font-size-2xl); /* Vergrößert von var(--font-size-xl) zu var(--font-size-2xl) */
    font-weight: 700;
    color: var(--primary-color);
    margin-left: var(--spacing-sm);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease; /* Verlängert von 0.3s zu 0.4s für smoothere Animation */
    background: var(--white);
}

.faq-answer.active {
    padding: var(--spacing-lg);
    /* max-height wird dynamisch durch JavaScript gesetzt */
}

.faq-answer p {
    margin: 0;
    font-size: var(--font-size-lg); /* Vergrößert von var(--font-size-md) zu var(--font-size-lg) */
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        margin-right: var(--spacing-sm);
    }
    
    .faq-question h3 {
        font-size: var(--font-size-lg); /* Auf Mobile etwas kleiner aber immer noch größer als vorher */
        font-weight: 700;
    }
    
    .faq-toggle {
        font-size: var(--font-size-xl); /* Auf Mobile etwas kleiner */
    }
    
    .faq-answer.active {
        padding: var(--spacing-md);
        /* max-height wird dynamisch durch JavaScript gesetzt */
    }
    
    .faq-answer p {
        font-size: var(--font-size-md); /* Auf Mobile etwas kleiner */
    }
}

/* Final CTA - Mobile First - Themed */
.final-cta {
    background-image: linear-gradient(rgba(45, 24, 16, 0.7), rgba(45, 24, 16, 0.7)), url('../images/bar2.png'); /* Re-use hero image with darker overlay */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Parallax effect */
    color: var(--text-on-dark-bg);
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    margin: var(--spacing-2xl) 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: var(--font-size-3xl); /* Geändert von var(--font-size-2xl) zu var(--font-size-3xl) wie .cta-title (BONUS) */
    font-weight: 700; /* Geändert von 600 zu 700 wie .cta-title (BONUS) */
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-transform: uppercase; /* Hinzugefügt wie .cta-title (BONUS) */
}

.final-cta-description {
    font-size: var(--font-size-xl); /* Geändert von var(--font-size-lg) zu var(--font-size-xl) wie in anderen Bannern */
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.6; /* Hinzugefügt für Konsistenz */
}

.final-cta-note {
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-md);
    opacity: 0.8;
    font-style: italic;
}

/* Footer - Mobile First - Themed */
.footer {
    background: var(--text-primary); /* Very Dark Brown footer */
    color: var(--text-on-dark-bg);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

/* Social Share styles removed as element is removed from HTML */

.footer-copyright {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    :root {
        --font-size-2xl: 2rem;    /* 32px */
        --font-size-3xl: 2.5rem;  /* 40px */
        --font-size-4xl: 3rem;    /* 48px */
        --spacing-2xl: 4rem;     /* 64px */
        --spacing-3xl: 5rem;     /* 80px - Adjusted for better balance */
    }
    
    .container {
        padding: 0 var(--spacing-xl);
    }

    .hero {
        min-height: 45vh; /* Höhe für Tablets anpassen */
        max-height: 500px;
        padding: var(--spacing-3xl) 0;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
    
    .innovative-products-content {
        display: inline-grid; /* Geändert von grid zu inline-grid */
        grid-template-columns: 1fr 1fr; /* Two columns for text and image */
        align-items: stretch;
        text-align: left; /* Hinzugefügt, um Inhalt der Zellen linksbündig zu halten */
    }

    .innovative-products-image img {
        margin: 0 auto; /* Geändert von margin: 0 0 0 auto; für Zentrierung */
    }

    .key-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    /* Original responsive styles for older sections */
    .section-title {
        font-size: var(--font-size-3xl);
    }

    /* Insider Package Layout für Tablet */
    .insider-package-layout {
        display: inline-grid; 
        grid-template-columns: 1fr 1fr; 
        align-items: stretch; 
        text-align: left; 
        gap: var(--spacing-md); 
    }

    .insider-package-image-container {
        text-align: center; /* Geändert von left zu center */
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-lg);
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    :root {
        --container-max-width: 1200px; /* Erhöht von 1100px für breitere Desktops */
        --font-size-3xl: 3rem;    /* 48px */
        --font-size-4xl: 3.75rem; /* 60px */
         /* --font-size-5xl: 4.5rem; */ /* War für Pre-Hero Title */
    }

    .section > .container { /* Gilt für alle .container innerhalb eines .section Elements */
        max-width: 75%;
    }
    
    .hero {
        min-height: 50vh; /* Höhe für Desktops */
        max-height: 550px;
    }

    .hero-title {
        font-size: var(--font-size-4xl); /* Behält die Größe von Tablet bei oder etwas größer */
    }

    /* Ggf. hero-subtitle anpassen, falls auf Desktop größer gewünscht */

    .innovative-products-content {
        gap: var(--spacing-2xl);
    }

    .section-title-left-aligned {
        font-size: var(--font-size-3xl);
    }
    
    .key-advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Insider Package Layout für Desktop bleibt zweispaltig wie auf Tablet, 
       passt sich aber der 75% Breite der Section an */

    .insider-package-title {
        font-size: var(--font-size-3xl);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .package-item.popular {
        transform: scale(1.05);
    }
    
    .package-item:hover {
        transform: translateY(-5px) scale(1.05);
    }

    .cta-description {
        max-width: none; /* Erlaubt der Bonus-Beschreibung, die volle Breite auf Desktops einzunehmen */
    }
}

/* BONUS Section Styles - WIEDER AKTIVIERT und angepasst für .cta-section */

.bonus-button {
    display: inline-block;
    background-color: var(--accent-color); /* Geändert von grün zu gelb */
    color: var(--text-primary); /* Geändert von weiß zu dunklem Text */
    font-family: var(--font-family);
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-2xl); /* Geändert von var(--spacing-lg) zu var(--spacing-md) für weniger Höhe */
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 3px solid var(--primary-color); /* Geändert von orange zu primary-color */
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    line-height: 1.3; 
}

.bonus-button:hover {
    background-color: #FFC700; /* Geändert von grün zu hellerem gelb */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.bonus-button-line1 {
    display: block;
    font-size: var(--font-size-xl); /* Geändert von var(--font-size-2xl) zu var(--font-size-xl) für weniger Höhe */
    font-weight: 700;
    margin-bottom: 0; /* Geändert von var(--spacing-xs) zu 0 um Leerzeilen zu entfernen */
}

.bonus-button-line2 {
    display: block;
    font-size: var(--font-size-lg); 
    font-weight: 500;
}

/* Neuer gelber CTA Button */
.yellow-cta-button {
    display: inline-block;
    background-color: var(--accent-color); /* Gelber Hintergrund */
    color: var(--text-primary); /* Schwarze Schrift */
    font-family: var(--font-family);
    font-size: var(--font-size-xl);
    font-weight: 400; /* Geändert von 700 zu 400 für normales Gewicht als Standard */
    text-decoration: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color-base);
    min-width: 280px;
    line-height: 1.3;
}

.yellow-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color-hover);
    background-color: #FFC700; /* Helleres Gelb beim Hover */
    border-color: var(--primary-color);
} 