.elementor-15392 .elementor-element.elementor-element-959c08d{--display:flex;}.elementor-15392 .elementor-element.elementor-element-959c08d.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15392 .elementor-element.elementor-element-320c11a{width:100%;max-width:100%;}.elementor-15392 .elementor-element.elementor-element-cc29fe2{width:100%;max-width:100%;}@media(max-width:767px){.elementor-15392 .elementor-element.elementor-element-959c08d{--width:343px;}}/* Start custom CSS for html, class: .elementor-element-320c11a *//* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Corporate Identity Farbpalette - Von Weiß zu Rot */
    --pastel-red: #db5856;
    --red-trillium: #c54f4d;
    --redtail: #af4645;
    --mexican-red: #993e3c;
    --heirloom-tomato: #b33534;
    
    /* Primary Brand Color - Hauptakzentfarbe */
    --brand-primary: #993e3c;
    --brand-light: #c54f4d;
    --brand-lighter: #db5856;
    
    /* Neue Farbpalette: Weiß zu Rot */
    --white: #FFFFFF;
    --lightest-red: #FFE5E5;
    --light-red: #FFB3B3;
    --medium-red: #db5856;
    --dark-red: #993e3c;
    --deepest-red: #7A1F1F;
    
    /* UI Farben */
    --bg-primary: var(--white);
    --bg-secondary: var(--lightest-red);
    --bg-tertiary: #FFF5F5;
    --card-bg: var(--white);
    --text-dark: #2D1515;
    --text-medium: #5A2828;
    --text-light: #8B3E3E;
    --accent-glow: rgba(153, 62, 60, 0.2);
    --accent-glow-light: rgba(219, 88, 86, 0.15);
    --border-light: rgba(153, 62, 60, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 50%, var(--bg-secondary) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 50%, var(--bg-secondary) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219, 88, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(153, 62, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-content > img.hero-logo {
  width: 160px !important;
  height: auto !important;
  max-width: none !important;
  display: block;
  margin: 0 auto 24px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto 48px;
    filter: drop-shadow(0 4px 20px rgba(153, 62, 60, 0.15));
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--brand-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px var(--accent-glow);
    border: 2px solid var(--brand-lighter);
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 16px;
    font-weight: bold;
    margin-right: 6px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Section Styles */
.section-why {
    background: var(--bg-tertiary);
}

.icon-box {
    text-align: center;
    margin-bottom: 32px;
}

.icon-large {
    display: inline-block;
    color: var(--brand-primary);
    filter: drop-shadow(0 4px 20px var(--accent-glow));
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.section-text {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
    color: var(--text-medium);
}

.highlight-box {
    background: var(--white);
    border: 2px solid var(--brand-primary);
    border-radius: 16px;
    padding: 32px;
    margin: 48px auto 0;
    max-width: 800px;
    box-shadow: 0 8px 40px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-light), var(--brand-primary));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.accent {
    color: var(--brand-lighter);
    font-weight: 700;
}

/* Benefits Cards */
.section-benefits {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 100%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.benefit-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(153, 62, 60, 0.08);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 20px;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    box-shadow: 0 20px 60px var(--accent-glow);
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.card-icon {
    margin-bottom: 24px;
    display: inline-block;
    color: var(--brand-primary);
}

.card-icon svg {
    filter: drop-shadow(0 4px 15px var(--accent-glow));
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.card-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Learning Section */
.section-learning {
    background: var(--bg-tertiary);
}

.learning-list {
    max-width: 800px;
    margin: 48px auto;
    display: grid;
    gap: 24px;
}

.learning-item {
    background: var(--white);
    border-left: 4px solid var(--brand-primary);
    padding: 24px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(153, 62, 60, 0.08);
}

.learning-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.learning-icon {
    flex-shrink: 0;
    color: var(--brand-primary);
}

.learning-icon svg {
    display: block;
}

.learning-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.section-subtext {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 48px;
}

/* Example Box */
.section-example {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 100%);
}

.example-box {
    background: var(--white);
    border: 3px solid var(--brand-primary);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 60px var(--accent-glow);
}

.example-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-light), var(--brand-primary));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.example-header {
    text-align: center;
    margin-bottom: 48px;
}

.example-badge {
    display: inline-block;
    background: var(--white);
    color: var(--brand-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 2px solid var(--brand-lighter);
}

.example-badge .badge-icon {
    font-size: 14px;
    font-weight: bold;
    margin-right: 6px;
}

.example-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.example-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    font-weight: 500;
}

.example-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid rgba(153, 62, 60, 0.15);
    transition: all 0.3s;
}

.stat-item:hover {
    background: var(--lightest-red);
    transform: scale(1.05);
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.4;
}

.example-quote {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--brand-primary);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    position: relative;
}

.quote-icon {
    font-size: 120px;
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-bottom: 16px;
    color: var(--brand-primary);
    opacity: 0.2;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.quote-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    text-align: right;
}

.example-footer {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Models Section */
.section-models {
    background: var(--bg-tertiary);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.model-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(153, 62, 60, 0.08);
}

.model-card.recommended {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--accent-glow);
}

.model-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--brand-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--brand-primary);
}

.model-icon {
    margin-bottom: 24px;
    color: var(--brand-primary);
}

.model-icon svg {
    display: inline-block;
    filter: drop-shadow(0 4px 15px var(--accent-glow));
}

.model-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.model-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Timeline Section */
.section-process {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 100%);
}

.timeline {
    max-width: 900px;
    margin: 64px auto 48px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-lighter));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: 0 0 40px var(--accent-glow);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(153, 62, 60, 0.08);
}

.timeline-content:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 10px 40px var(--accent-glow);
    transform: scale(1.02);
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.process-footer {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 64px;
}

/* Footer CTA */
.footer {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--deepest-red) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), var(--brand-light), transparent);
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 20px;
    color: var(--lightest-red);
    margin-bottom: 48px;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--brand-primary);
    font-size: 18px;
    font-weight: 700;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--white);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: var(--lightest-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
        margin-bottom: 32px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cards-grid,
    .models-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Timeline Fixes */
    .timeline {
        padding-left: 0;
        margin-bottom: 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 48px;
        padding-left: 0;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        flex-shrink: 0;
        margin-top: 0;
    }
    
    .timeline-content {
        flex: 1;
        margin: 0;
        width: auto;
    }
    
    /* Process Footer Spacing */
    .process-footer {
        margin-top: 48px;
        padding-top: 0;
    }
    
    .example-stats {
        grid-template-columns: 1fr;
    }
    
    .example-box {
        padding: 32px 20px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 16px 32px;
        display: inline-block;
        width: auto;
    }
    
    /* Verhindere overflow issues */
    .container {
        padding: 0 20px;
    }
    
    /* Hero Badge responsive */
    .hero-badge {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    /* Quote responsive */
    .quote-icon {
        font-size: 80px;
    }
    
    .quote-text {
        font-size: 16px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 20px;
    }
    
    .timeline-text {
        font-size: 14px;
    }
}

/* Print Styles für PDF */
@media print {
    body {
        background: white;
        color: var(--text-dark);
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 40px 0;
    }
    
    .benefit-card,
    .model-card,
    .timeline-item {
        page-break-inside: avoid;
    }
    
    .footer {
        background: var(--dark-red);
    }
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Füge das in deinen Custom HTML/CSS Block ein */
.dein-haupt-container {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cc29fe2 *//* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Corporate Identity Farbpalette - Von Weiß zu Rot */
    --pastel-red: #db5856;
    --red-trillium: #c54f4d;
    --redtail: #af4645;
    --mexican-red: #993e3c;
    --heirloom-tomato: #b33534;
    
    /* Primary Brand Color - Hauptakzentfarbe */
    --brand-primary: #993e3c;
    --brand-light: #c54f4d;
    --brand-lighter: #db5856;
    
    /* Neue Farbpalette: Weiß zu Rot */
    --white: #FFFFFF;
    --lightest-red: #FFE5E5;
    --light-red: #FFB3B3;
    --medium-red: #db5856;
    --dark-red: #993e3c;
    --deepest-red: #7A1F1F;
    
    /* UI Farben */
    --bg-primary: var(--white);
    --bg-secondary: var(--lightest-red);
    --bg-tertiary: #FFF5F5;
    --card-bg: var(--white);
    --text-dark: #2D1515;
    --text-medium: #5A2828;
    --text-light: #8B3E3E;
    --accent-glow: rgba(153, 62, 60, 0.2);
    --accent-glow-light: rgba(219, 88, 86, 0.15);
    --border-light: rgba(153, 62, 60, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 50%, var(--bg-secondary) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 50%, var(--bg-secondary) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219, 88, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(153, 62, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-content > img.hero-logo {
  width: 160px !important;
  height: auto !important;
  max-width: none !important;
  display: block;
  margin: 0 auto 24px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto 48px;
    filter: drop-shadow(0 4px 20px rgba(153, 62, 60, 0.15));
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--brand-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px var(--accent-glow);
    border: 2px solid var(--brand-lighter);
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 16px;
    font-weight: bold;
    margin-right: 6px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Section Styles */
.section-why {
    background: var(--bg-tertiary);
}

.icon-box {
    text-align: center;
    margin-bottom: 32px;
}

.icon-large {
    display: inline-block;
    color: var(--brand-primary);
    filter: drop-shadow(0 4px 20px var(--accent-glow));
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.section-text {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
    color: var(--text-medium);
}

.highlight-box {
    background: var(--white);
    border: 2px solid var(--brand-primary);
    border-radius: 16px;
    padding: 32px;
    margin: 48px auto 0;
    max-width: 800px;
    box-shadow: 0 8px 40px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-light), var(--brand-primary));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.accent {
    color: var(--brand-lighter);
    font-weight: 700;
}

/* Benefits Cards */
.section-benefits {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 100%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.benefit-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(153, 62, 60, 0.08);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 20px;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    box-shadow: 0 20px 60px var(--accent-glow);
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.card-icon {
    margin-bottom: 24px;
    display: inline-block;
    color: var(--brand-primary);
}

.card-icon svg {
    filter: drop-shadow(0 4px 15px var(--accent-glow));
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.card-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Learning Section */
.section-learning {
    background: var(--bg-tertiary);
}

.learning-list {
    max-width: 800px;
    margin: 48px auto;
    display: grid;
    gap: 24px;
}

.learning-item {
    background: var(--white);
    border-left: 4px solid var(--brand-primary);
    padding: 24px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(153, 62, 60, 0.08);
}

.learning-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.learning-icon {
    flex-shrink: 0;
    color: var(--brand-primary);
}

.learning-icon svg {
    display: block;
}

.learning-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.section-subtext {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 48px;
}

/* Example Box */
.section-example {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 100%);
}

.example-box {
    background: var(--white);
    border: 3px solid var(--brand-primary);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 60px var(--accent-glow);
}

.example-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-light), var(--brand-primary));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.example-header {
    text-align: center;
    margin-bottom: 48px;
}

.example-badge {
    display: inline-block;
    background: var(--white);
    color: var(--brand-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 2px solid var(--brand-lighter);
}

.example-badge .badge-icon {
    font-size: 14px;
    font-weight: bold;
    margin-right: 6px;
}

.example-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.example-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    font-weight: 500;
}

.example-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid rgba(153, 62, 60, 0.15);
    transition: all 0.3s;
}

.stat-item:hover {
    background: var(--lightest-red);
    transform: scale(1.05);
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.4;
}

.example-quote {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--brand-primary);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    position: relative;
}

.quote-icon {
    font-size: 120px;
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-bottom: 16px;
    color: var(--brand-primary);
    opacity: 0.2;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.quote-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    text-align: right;
}

.example-footer {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Models Section */
.section-models {
    background: var(--bg-tertiary);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.model-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(153, 62, 60, 0.08);
}

.model-card.recommended {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--accent-glow);
}

.model-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--brand-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--brand-primary);
}

.model-icon {
    margin-bottom: 24px;
    color: var(--brand-primary);
}

.model-icon svg {
    display: inline-block;
    filter: drop-shadow(0 4px 15px var(--accent-glow));
}

.model-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.model-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Timeline Section */
.section-process {
    background: linear-gradient(135deg, var(--white) 0%, var(--lightest-red) 100%);
}

.timeline {
    max-width: 900px;
    margin: 64px auto 48px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-lighter));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: 0 0 40px var(--accent-glow);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(153, 62, 60, 0.08);
}

.timeline-content:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 10px 40px var(--accent-glow);
    transform: scale(1.02);
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.process-footer {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 64px;
}

/* Footer CTA */
.footer {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--deepest-red) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), var(--brand-light), transparent);
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 20px;
    color: var(--lightest-red);
    margin-bottom: 48px;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--brand-primary);
    font-size: 18px;
    font-weight: 700;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--white);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: var(--lightest-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
        margin-bottom: 32px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cards-grid,
    .models-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Timeline Fixes */
    .timeline {
        padding-left: 0;
        margin-bottom: 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 48px;
        padding-left: 0;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        flex-shrink: 0;
        margin-top: 0;
    }
    
    .timeline-content {
        flex: 1;
        margin: 0;
        width: auto;
    }
    
    /* Process Footer Spacing */
    .process-footer {
        margin-top: 48px;
        padding-top: 0;
    }
    
    .example-stats {
        grid-template-columns: 1fr;
    }
    
    .example-box {
        padding: 32px 20px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 16px 32px;
        display: inline-block;
        width: auto;
    }
    
    /* Verhindere overflow issues */
    .container {
        padding: 0 20px;
    }
    
    /* Hero Badge responsive */
    .hero-badge {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    /* Quote responsive */
    .quote-icon {
        font-size: 80px;
    }
    
    .quote-text {
        font-size: 16px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 20px;
    }
    
    .timeline-text {
        font-size: 14px;
    }
}

/* Print Styles für PDF */
@media print {
    body {
        background: white;
        color: var(--text-dark);
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 40px 0;
    }
    
    .benefit-card,
    .model-card,
    .timeline-item {
        page-break-inside: avoid;
    }
    
    .footer {
        background: var(--dark-red);
    }
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Füge das in deinen Custom HTML/CSS Block ein */
.dein-haupt-container {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}/* End custom CSS */