/* Reset & Grundlegende Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #181818;
    --primary-dark: #051630;
    --secondary-color: #FFD700;
    --secondary-dark: #c39500;
    --secondary-light: #F5F5DC;
    --accent-color: #FFD700;
    --contrast-color: #3c6fef;
    --text-color: #1A1A1A;
    --light-text: #FFFFFF;
    --light-bg: #F9FAFB;
    --dark-bg: #111827;

    /* Design System */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --box-shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-intense: 0 15px 35px rgba(0, 0, 0, 0.2);
    
    --transition: all 0.3s ease;

    /* Gradients */
    --bg-gradient: linear-gradient(135deg, #0A2647 0%, #051630 100%);
    --bg-light-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef6f 100%);
    --blue-gradient: linear-gradient(135deg, #0A2647 0%, #00A9FF 100%);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5F5DC 100%);
    --gold-gradient-reverse: linear-gradient(135deg, #F5F5DC 0%, #D4AF37 100%);
    --yellow-gradient: linear-gradient(135deg, #FFD700 0%, #F5F5DC 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', serif;
    color: var(--primary-color);
    font-weight: normal;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

.market-analysis h2{
    text-align: center;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.4;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'DM Serif Display', serif;
}

.btn-primary {
    background: #FFD700;
    color: #000000;
}

.btn-primary:hover {
    background: #FFC700;
    color: #000000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 10px auto 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Utility Classes */
.text-center { text-align: center; }

.card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 45px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* Header & Navigation */
.hero {
    padding: 0 0 50px 0;
    position: relative;
    overflow: hidden;
}

.hero * {
    position: relative;
    z-index: 1;
}

.hero .offer-text{
    color: var(--text-color);
    font-size: 0.8rem;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0 0;
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--text-color);
}

.hero-content {
    text-align: center;
    max-width: 790px;
    margin: 30px auto 0;
}

.hero-header {
    font-size: 1rem;
    color: var(--contrast-color);
    margin-bottom: 10px;
    font-family: 'DM Serif Display', serif;
}

.hero h1 {
    color: var(--light-text);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    margin-top: 30px;
}

.hero h2 {
    margin-bottom: 10px;
    font-size: 3.2rem;
    line-height: 1;
}

.highlight-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.highlight-icon {
    margin-right: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1rem;
    max-width: 680px;
    margin: 20px auto 10px;
    color: #7a7a7a;
}

.hero-cta {
    margin-top: 30px;
}
.offer-highlight {
    font-size: 12px;
}
.offer-highlight::before {
    content: "";
    height: 10px;
    width: 10px;
    background: linear-gradient(to right, #dfc024, #ebbb2a);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.offer-text {
    margin-top: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0px;
}

/* Offer Banner */
.offer-banner {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* Modules Section */
.modules {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.modules h2 {
    text-align: center;
}

.modules-container {
    max-width: 900px;
    margin: 0 auto;
}

.module-accordion {
    margin-top: 40px;
}

.module-item {
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.module-header {
    background-color: #f9fafb;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.module-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.module-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.module-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.module-item.active .module-content {
    padding: 20px;
    max-height: 1000px;
}

.module-item.active .module-toggle i {
    transform: rotate(45deg);
}

.module-content ul {
    list-style: none;
    padding-left: 0;
}

.module-content li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.module-content li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-light-gradient);
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/texture-marble.jpg');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}


.about h2 {
    text-align: center;
}
.about * {
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

.about-bio {
    margin-bottom: 30px;
}

.about-bio h4, .about-clients h4, .about-mission h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

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

.bio-item {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.bio-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.bio-item h4 {
    margin: 0 0 10px 0 !important;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.bio-item p {
    margin-bottom: 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.client-name {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.client-name:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.about-mission {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.guarantee {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.pricing-box {
    max-width: 800px;
    background-color: #FFFFFF;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid #ddd;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.pricing-header {
    padding: 60px 30px 10px;
    text-align: center;
}

.pricing-title h3 {
    margin-bottom: 15px;
    font-size: 2.2rem;
    text-align: center;
}

.pricing-value {
    display: block;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 5px;
}

.original-price {
    text-decoration: line-through;
    color: #777;
    font-size: 1.5rem;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    display: block;
    align-items: center;
}

.offer-price::after {
    content: "€";
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 5px;
}

.einmalig {
    font-size: 1.5rem;
    color: #555;
    margin-left: 10px;
    align-self: center;
}

.exclusive-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.pricing-features {
    padding: 20px 30px 30px;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.pricing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    padding-left: 20px;
}

.pricing-features li i {
    margin-right: 15px;
    flex-shrink: 0;
    font-style: normal;
}

.pricing-features li span {
    flex: 1;
}

.price-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 20px;
}

.price-guarantee {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 20px;
}

.pricing-cta {
    padding: 30px 30px 60px 30px;
    border-top: 1px solid #e9ecef;
}

/* Pricing Toggle Styles */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--box-shadow-soft);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label.active {
    color: var(--primary-color);
}

.toggle-label:hover {
    color: var(--primary-color);
}

.savings-badge {
    background: #ee5a52;
    color: white;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    margin: 0 10px;
    cursor: pointer;
    user-select: none;
}

.toggle-switch input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.toggle-switch input[type="radio"]:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(10, 38, 71, 0.2);
    outline: none;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    z-index: 1;
}

.toggle-button {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: #FFD700;
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
    z-index: 5;
    pointer-events: auto;
}

/* When yearly is selected (default state) */
.toggle-switch input[type="radio"]#yearly:checked ~ .toggle-slider {
    background: #FFD700;
}

.toggle-switch input[type="radio"]#yearly:checked ~ .toggle-slider .toggle-button {
    transform: translateX(30px);
    background: #2b2b2b;
}

/* When monthly is selected */
.toggle-switch input[type="radio"]#monthly:checked ~ .toggle-slider {
    background: #2b2b2b;
}

.toggle-switch input[type="radio"]#monthly:checked ~ .toggle-slider .toggle-button {
    transform: translateX(0px);
    background: #2b2b2b;
}

/* Default state (yearly selected) */
.toggle-switch .toggle-slider {
    background: #d7d7d7;

}

.toggle-switch .toggle-button {
    transform: translateX(30px);
    background: #FFD700;
}


.pricing-box.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.pricing-box.fade-in {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Feature List Enhancements */
.pricing-features .total-value {
    background: var(--gold-gradient-reverse);
    color: var(--primary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
    font-size: 1.1rem;
}

.pricing-features .total-value i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.feature-disabled {
    opacity: 0.5;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius);
    padding: 20px;
}

.feature-disabled i {
    color: #ccc !important;
}

.disabled-text {
    text-decoration: line-through;
    color: #757575;
}

.monthly-price {
    background: var(--bg-light-gradient);
    color: var(--primary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--accent-color);
    font-size: 1.1rem;
}

.monthly-price i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

/* Enhanced Exclusive Offer Badge */
.exclusive-offer {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: var(--primary-color);
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

#yearly-pricing .exclusive-offer {
    background: #FFD700;
    color: var(--primary-color);
}

#monthly-pricing .exclusive-offer {
    background: var(--blue-gradient);
    color: white;
}

/* Research Process Grid Styles */
.research-process-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.research-step {
    gap: 20px;
    align-items: center;
    display: block;
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #FFD700;
    color: white;
    border-radius: 50%;
    display: block;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'DM Serif Display', serif;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'DM Serif Display', serif;
    line-height: 1.3;
    text-align: center;
}

.step-content p {
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Mobile Responsive for Research Grid */
@media (max-width: 768px) {
    .research-process-grid {
        gap: 20px;
        margin: 30px 0;
        max-width: 100%;
    }
    
    .research-step {
        padding: 50px 10px;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
        margin-bottom: 10px;
        display: block;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .step-content p, .benefit-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .research-step {
        padding: 15px;
        gap: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p, .benefit-content p {
        font-size: 0.85rem;
    }
    
}

.timer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timer-icon {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.timer-content {
    flex-grow: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 15px;
}

.timer-text {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
}

#timer {
    font-weight: 700;
    color: var(--secondary-color);
}

.timer-cta {
    margin-left: auto;
    margin-right: 15px;
    flex-shrink: 0;
}

.timer-close {
    position: static;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.timer-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .timer-container {
        flex-wrap: wrap;
        padding: 15px;
        align-items: center;
    }
    
    .timer-content {
        order: 2;
        flex-grow: 1;
        margin-bottom: 0;
        text-align: center;
    }
    
    .timer-icon {
        order: 1;
        margin-right: 10px;
    }
    
    .timer-cta {
        order: 4;
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .timer-close {
        order: 3;
        position: static;
        top: auto;
        right: auto;
        margin-left: 10px;
    }

    .timer-cta .btn {
        width: auto;
        max-width: 90%;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(to top, #f0e5d3 0%, #F4F1EC 100%);
    color: var(--text-color);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/texture-marble.jpg');
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.cta-section * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-color);
    margin-bottom: 30px;
}

.cta-highlights {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.cta-highlights p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cta-highlights i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.cta-text {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.guarantee-text {
    margin-top: 15px;
    color: var(--text-color);
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--light-text);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    .hero h2{
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .highlight-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .time {
        font-size: 1.5rem;
        min-width: 50px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .countdown {
        flex-wrap: wrap;
    }
    
    .time-block {
        margin: 0 5px;
    }

    /* Ultra-mobile pricing optimizations */
    .pricing-toggle {
        padding: 15px;
        gap: 10px;
    }
    
    .toggle-switch {
        width: 50px;
        height: 25px;
    }
    
    .toggle-button {
        height: 20px;
        width: 20px;
        left: 2.5px;
        bottom: 2.5px;
    }
    
    .toggle-switch input[type="radio"]#yearly:checked ~ .toggle-slider .toggle-button {
        transform: translateX(25px);
    }
    
    .pricing-features ul {
        gap: 10px;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
        padding: 8px 0;
    }
}

/* Styles für die "In 3 Schritten" Sektion */
.steps-to-freedom {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.steps-to-freedom .section-title {
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
    font-family: 'DM Serif Display', serif;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
    margin-top: 70px;
}

.step-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'DM Serif Display', serif;
}

.step-card h3 {
    margin-top: 15px;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem;
    font-weight: normal;
}

.step-card p {
    color: #666;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
}

.steps-summary {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.steps-summary p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 500px;
    }
    .analysis-image img {
        width: 80%;
    }
    .no-risk-image img {
        width: 70%;
    }
}

/* Logo-Section */
.logo-section {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.logo-section img {
    max-width: 100%;
    height: auto;
    filter: grayscale(0);
    transition: var(--transition);
}

/* Featured Content Section */
.featured-content {
    position: relative;
    overflow: hidden;
    padding: 100px 50px;
    display: block;
    background-color: #f0f0f0;
}

.featured-content * {
    position: relative;
    z-index: 1;
}

.featured-content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.featured-content-text {
    flex: 1;
    text-align: center;
}

.featured-content h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.featured-content-text .subtitle {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.featured-content-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.featured-content-text li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.featured-content-text li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.featured-content-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-content-image .video-wrapper {
    width: 76%; /* Angepasste Breite für 9:16 Format */
    height: 0;
    padding-bottom: 135%; /* 9:16 Seitenverhältnis (16/9 × 100) */
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 auto; /* Zentriert den Container */
}

.featured-content-image .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url('../img/okura-platzhalter.jpg');
    background-size: cover;
    background-position: center;
    display: block;
    transition: opacity 0.8s ease;
    z-index: 1;
    backface-visibility: hidden; /* Verhindert Flackern während des Übergangs */
    will-change: opacity; /* Optimiert die Rendering-Performance */
    opacity: 1;
}

.featured-content-image .placeholder-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1); /* Leicht transparenter Overlay */
}

.featured-content-image .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(10, 38, 71, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.featured-content-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
    backface-visibility: hidden; /* Verhindert Flackern während des Übergangs */
    will-change: opacity; /* Optimiert die Rendering-Performance */
}

/* Market Analysis Section */
.market-analysis {
    padding: 30px 0 70px;
    position: relative;
}

.market-analysis * {
    position: relative;
    z-index: 1;
}


.analysis-container {
    margin-top: 40px;
}

.analysis-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 30px auto;
}

.analysis-text {
    flex: 1;
}

.analysis-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Styles für die Benefits-Liste in der Market Analysis Section */
.analysis-benefits {
    margin: 30px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefits-list i {
    font-size: 24px;
    margin-right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #fcdf88);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-style: normal;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 1rem;
    margin: 0;
    color: #666;
}

/* Responsive Anpassungen */
@media (max-width: 576px) {
    .benefits-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefits-list i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Neue Profit-Cards Styles */
.profit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.profit-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--box-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.profit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.profit-percentage {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.profit-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.analysis-summary {
    font-size: 1.1rem;
    margin: 25px 0;
    line-height: 1.6;
}

.performance-disclaimer {
    font-size: 12px;
    color: #777;
    font-style: italic;
    margin: 10px 0;
    line-height: 1.4;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: var(--border-radius);
}

/* Bestehende Styles für Profit Box */
.profit-list {
    list-style: none;
    margin: 25px 0;
}

.profit-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.profit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.profit-list .highlight {
    color: var(--primary-color);
    font-weight: 700;
    background: var(--secondary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0;
    display: inline;
}

.profit-box {
    background: var(--bg-light-gradient);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
}

.profit-box h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.profit-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
}

.profit-timeline:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    z-index: 1;
}

.profit-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 15px;
    border-radius: 10px;
}

.profit-time {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.profit-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: bold;
}

.analysis-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.analysis-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
@media (max-width: 1200px) {
    .featured-content-image .video-wrapper {
        width: 100%;
        padding-bottom: 178%;
    }
}
@media (max-width: 991px) {
    .analysis-content {
        flex-direction: column;
    }
    
    .analysis-text,
    .analysis-image {
        width: 100%;
    }
    
    .profit-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .profit-timeline:before {
        height: 100%;
        width: 2px;
        top: 0;
        left: 10px;
        right: auto;
    }
    
    .profit-point {
        flex-direction: row;
        width: 100%;
        align-items: center;
        gap: 20px;
        padding-left: 30px;
    }
    
    .profit-cards {
        grid-template-columns: repeat(2, 1fr);
    }


    .featured-content-image {
        width: 100%;
        height: 100%;
    }
    .featured-content-image .video-wrapper {
        width: 80%;
        padding-bottom: 140%;
    }
}

@media (max-width: 480px) {
    .profit-cards {
        grid-template-columns: 1fr;
    }
}

/* No Risk Section */
.no-risk {
    padding: 80px 0;
    background-color: #fff;
}

.no-risk h2 {
    text-align: center;
}

.no-risk-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.no-risk-text {
    flex: 1;
}

.no-risk-text h2 {
    margin-bottom: 20px;
}

.no-risk-text p {
    margin-bottom: 15px;
}

.no-risk-image {
    flex: 1;
    text-align: center;
}

.no-risk-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.risk-card {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow-soft);
    border-left: 4px solid var(--secondary-color);
}

.risk-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-gradient);
    color: var(--light-text);
    padding: 80px 0;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/texture-marble.jpg');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.testimonials * {
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 20px;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.testimonial-author-info h4 {
    color: var(--light-text);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.video-testimonial {
    margin-top: 50px;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-intense);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question span {
    transition: var(--transition);
}

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

.faq-answer p {
    padding-bottom: 20px;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

/* Responsive Styles for New Sections */
@media (max-width: 991px) {
    .featured-content-container,
    .no-risk-container {
        flex-direction: column;
    }
    
    .featured-content-image,
    .no-risk-image {
        margin-top: 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .btn {
        text-align: center!important;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        font-size: 1.5rem!important;
        
    }
}

@media (max-width: 768px) {
    .logo-section {
        padding: 30px 0;
    }
    
    .featured-content,
    .no-risk,
    .testimonials,
    .faq {
        padding: 50px 0;
    }
}

/* Rendite-Section Styles */
.rendite-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rendite-section h2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Performance Cards Styles */
.performance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.performance-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.performance-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'DM Serif Display', serif;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.performance-item {
    text-align: center;
}

.performance-value {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 8px;
    line-height: 1;
}

.performance-value.positive {
    color: #28a745;
}

.performance-value.negative {
    color: #dc3545;
}

.performance-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.rendite-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px 0 40px;
}

.rendite-card {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rendite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.rendite-icon {
    font-size: 36px;
    margin-bottom: 20px;
    background: #FFD700;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.rendite-card:nth-child(2) .rendite-icon {
    background: #f0f0f0;
}

.rendite-card:nth-child(3) .rendite-icon {
    background: var(--gold-gradient-reverse);
}

.rendite-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'DM Serif Display', serif;
}

.rendite-card p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.performance-disclaimer {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin: 20px auto 0;
    max-width: 900px;
}

/* Responsive Design für mobile Geräte */
@media (max-width: 768px) {
    .performance-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .performance-card {
        padding: 25px;
    }
    
    .performance-value {
        font-size: 1.8rem;
    }
    
    .rendite-cards {
        flex-direction: column;
    }
    
    .rendite-card {
        margin-bottom: 20px;
    }

    .featured-content-text h2{
        font-size: 2rem;
        line-height: 1.2;
    }
    .featured-content::before {
        border:none;
    }
    .modules h3 {
        font-size: 1.3rem;
    }
    .pricing-header {
        padding-top: 70px;
    }
    .section-subtitle {
        font-size: 1rem;
    }

    /* Mobile Pricing Toggle Styles */
    .pricing-toggle {
        gap: 15px;
        padding: 20px;
        text-align: center;
    }
    
    .toggle-switch {
        margin: 0;
    }
    
    .toggle-label {
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }
    
    .savings-badge {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
    
    .exclusive-offer {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .pricing-features .total-value,
    .monthly-price {
        font-size: 1rem;
        padding: 12px;
    }
}

/* Sticky Timer Bar */
.sticky-timer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0A2647 0%, #051630 100%);
    color: white;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.sticky-timer-bar.visible {
    transform: translateY(0);
}

.timer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timer-icon {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.timer-content {
    flex-grow: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 15px;
}

.timer-text {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

#timer {
    font-weight: 700;
    color: var(--secondary-color);
}

.timer-cta {
    margin-left: auto;
    margin-right: 15px;
    flex-shrink: 0;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.timer-close {
    position: static;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.timer-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .timer-container {
        flex-wrap: wrap;
        padding: 15px;
        align-items: center;
    }
    
    .timer-content {
        order: 2;
        flex-grow: 1;
        margin-bottom: 0;
        text-align: center;
    }
    
    .timer-icon {
        order: 1;
        margin-right: 10px;
    }
    
    .timer-cta {
        order: 4;
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .timer-close {
        order: 3;
        position: static;
        top: auto;
        right: auto;
        margin-left: 10px;
    }

    .timer-cta .btn {
        width: auto;
        max-width: 90%;
    }
}

/* Adjust body padding when timer bar is visible */
body.timer-active {
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    body.timer-active {
        padding-bottom: 90px;
    }
}

/* Price Summary Box */
.price-summary-box {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid #28a745;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    text-align: center;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.price-summary-normal {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #d21b4f;
    text-decoration: line-through;
    font-weight: 500;
}

.price-summary-special-label {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.price-summary-special-price {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    margin-top: 0px;
}

/* Dual Pricing Styles */
.dual-pricing {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-plan {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-soft);
    border: 2px solid #e9ecef;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.pricing-plan.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.plan-header h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.plan-features {
    margin-bottom: 30px;
}

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

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.4;
}

.plan-features li i {
    margin-right: 12px;
    font-style: normal;
    font-weight: bold;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features li.included i {
    color: #10B981;
}

.plan-features li.not-included {
    color: #9ca3af;
}

.plan-features li.not-included i {
    color: #ef4444;
}

.plan-features li.premium {
}

.plan-features li.premium span {
    color: var(--primary-color);
}

.plan-pricing {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.original-price-small {
    font-size: 0.9rem;
    color: #6b7280;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'DM Serif Display', serif;
}

.price-period {
    font-size: 1.1rem;
    color: #6b7280;
}

.plan-cta {
    text-align: center;
}

.plan-cta .price-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 15px;
    line-height: 1.4;
}

/* Responsive Design für Dual Pricing */
@media (max-width: 768px) {
    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-plan.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-5px);
    }
    
    .plan-header h3 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .pricing-plan {
        padding: 30px 20px;
    }
}