:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F9FA;
    --primary-text: #333333;
    --heading-text: #212529;
    --accent-maroon: #80002A;
    --accent-maroon-hover: #9c0033;
    --primary-white: #FFFFFF;
    --dark-footer-bg: #211628;
    --subtle-border-color: #e9ecef;
    --font-headings: 'proxima-nova-condensed', sans-serif;
    --font-body: 'proxima-nova-condensed', sans-serif;
}
body, html { margin: 0; padding: 0; font-family: var(--font-body); background-color: var(--primary-bg); color: var(--primary-text); scroll-behavior: smooth; -webkit-font-smoothing: antialiased; 
    /* --- KOPIERSCHUTZ --- */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard */
}
body.modal-open { overflow: hidden; }
* { box-sizing: border-box; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
section { padding: 100px 0; position: relative; }
section[id] { scroll-margin-top: 100px;  }
.section-title { text-align: center; font-family: var(--font-headings); font-size: 38px; color: var(--heading-text); margin-bottom: 60px; font-weight: 700; }
.main-header { padding: 15px 0; position: sticky; top: 0; z-index: 1000; background-color: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--subtle-border-color); }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 70px; width: auto; }
.main-nav a { color: var(--primary-text); text-decoration: none; margin-left: 30px; font-weight: 600; }
.hero { padding: 150px 0; color: var(--primary-white); text-align: left; background: url('img/asmarketing_banner_brueckenbauer_ohne-schrift.png') no-repeat center center; background-size: cover; position: relative; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); }
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-family: var(--font-headings); font-size: 48px; font-weight: 700; margin-bottom: 20px; max-width: 650px; line-height: 1.3; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 18px; max-width: 600px; margin-bottom: 40px; line-height: 1.7; font-weight: 400; }
.btn { display: inline-block; padding: 15px 35px; text-decoration: none; border-radius: 12px; font-weight: 700; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; text-align: center; }
.btn-primary { background-color: var(--accent-maroon); color: var(--primary-white); box-shadow: 0 4px 15px rgba(128, 0, 42, 0.2); }
.btn-primary:hover { background-color: var(--accent-maroon-hover); transform: translateY(-3px); box-shadow: 0 7px 20px rgba(128, 0, 42, 0.3); }
.btn-secondary { background-color: transparent; color: var(--accent-maroon); border: 2px solid var(--accent-maroon); margin-top: auto; padding: 12px 30px; }
.btn-secondary:hover { background-color: var(--accent-maroon); color: var(--primary-white); }
.card { background-color: var(--primary-bg); padding: 30px; border-radius: 16px; box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 15px 40px rgba(0,0,0,0.12); }
.social-proof-section { background-color: var(--secondary-bg); padding: 80px 0;}
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; align-items: center; }
.proof-item img { max-height: 70px; width: auto; max-width: 100%; margin-bottom: 15px; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; object-fit: contain; }
.proof-item:hover img { filter: grayscale(0%); opacity: 1; }
.proof-item p { font-weight: 600; color: var(--heading-text); font-size: 15px; }
.usp-section, .process-section { background-color: var(--primary-bg); }
.usp-grid, .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.usp-icon svg { width: 48px; height: 48px; color: var(--accent-maroon); margin-bottom: 20px; }
.usp-item h3, .process-step h3 { font-family: var(--font-headings); font-weight: 700; font-size: 22px; margin-bottom: 15px; }
.process-step .step-number { font-size: 24px; font-weight: 700; color: var(--accent-maroon); border: 2px solid var(--accent-maroon); width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; }
.offers-section { background-color: var(--secondary-bg); }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.offer-card { display: flex; flex-direction: column; }
.offer-card h3 { font-family: var(--font-headings); font-weight: 700; font-size: 24px; color: var(--accent-maroon); margin-top: 0; }
.offer-card p { flex-grow: 1; }
.offer-card .subtitle { font-weight: 700; margin-bottom: 15px; }
.offer-card-highlight { border: 1px solid var(--accent-maroon); }
.about-section { background-color: var(--primary-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: flex-start; }
.about-image img { width: 100%; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-text p { font-size: 18px; line-height: 1.8; }
.about-credentials { margin-top: 30px; }
.about-credentials h3 { margin-top: 0; font-family: var(--font-headings); font-weight: 700; }
.about-credentials ul { list-style: none; padding: 0; margin: 0; }
.about-credentials li { display: flex; align-items: flex-start; margin-bottom: 15px; }
.about-credentials li:last-child { margin-bottom: 0; }
.about-credentials li svg { width: 20px; height: 20px; color: var(--accent-maroon); margin-right: 10px; margin-top: 3px; flex-shrink: 0; }
.podcast-cta-box { background-color: var(--secondary-bg); border-radius: 12px; padding: 25px; margin-top: 30px; text-align: center; }
.podcast-cta-box p { font-weight: 600; font-size: 18px; margin: 0 0 15px 0; }
.cta-kompass-section { background-color: var(--primary-bg); text-align: center; }
.cta-kompass-content { max-width: 800px; margin: 0 auto; }
.cta-kompass-content h2 { font-family: var(--font-headings); font-weight: 700; font-size: 36px; }
.cta-kompass-content p { font-size: 18px; line-height: 1.7; margin-bottom: 30px; }
.contact-section { background-color: var(--dark-footer-bg); color: var(--primary-white); }
.contact-section .section-title { color: var(--primary-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-option h3 { font-family: var(--font-headings); font-weight: 700; font-size: 24px; }
.contact-option p a { color: var(--primary-white); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #ccc; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border-radius: 8px; border: 1px solid #4a4a4a; background-color: #2c2034; color: var(--primary-white); font-family: var(--font-body); font-size: 16px; }
.form-group-checkbox a { color: var(--primary-white); text-decoration: underline; }
.form-submit-btn { background-color: var(--accent-maroon); color: var(--primary-white); width: 100%; font-size: 18px; border: none; }
.wavy-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; transform: rotate(180deg); }
.wavy-divider.top { top: -1px; bottom: auto; transform: rotate(0deg); }
.wavy-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 80px; }
.wavy-divider .shape-fill { fill: var(--secondary-bg); }
.dark .wavy-divider .shape-fill { fill: var(--dark-footer-bg); }
.white .wavy-divider .shape-fill { fill: var(--primary-bg); }
footer { background-color: var(--dark-footer-bg); color: #ccc; padding: 120px 0 40px; text-align: center; position: relative; }
.footer-nav { margin: 20px 0; }
.footer-nav a { color: #ccc; text-decoration: none; margin: 0 15px; }
.footer-social { margin-bottom: 20px; }
.footer-social a { display: inline-flex; align-items: center; margin: 0 10px; color: #ccc; text-decoration: none; }
.footer-social svg { height: 24px; width: 24px; fill: currentColor; margin-right: 8px; }
.footer-social a:hover { color: var(--primary-white); }
.footer-downloads a { color: var(--primary-white); text-decoration: underline;}
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(33, 22, 40, 0.8); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.modal-overlay.visible { opacity: 1; visibility: visible; }
.modal-content { background: var(--primary-bg); border-radius: 16px; padding: 40px; max-width: 800px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; transform: scale(0.95); transition: transform 0.3s; }
.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 30px; cursor: pointer; color: #aaa; }
.modal-content h2, .modal-content h3 { font-family: var(--font-headings); color: var(--accent-maroon); font-weight: 700;}
.modal-content h2 { font-size: 36px; margin-top: 0; }
.modal-content h3 { font-size: 22px; margin-top: 30px; border-bottom: 2px solid var(--accent-maroon); padding-bottom: 10px; }
.modal-content ul { list-style-type: '✓ '; padding-left: 20px; line-height: 1.8; }
.modal-content .cta-button-container { text-align: center; margin-top: 40px; }
.subpage-content{max-width:800px;margin:0 auto;line-height:1.7;}
.subpage-content h1{font-family:var(--font-headings);font-size:42px;color:var(--heading-text);margin-bottom:40px;font-weight:700;}
.subpage-content h2{font-family:var(--font-headings);font-size:24px;color:var(--heading-text);margin-top:30px;font-weight:700;}

@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; gap: 60px; } }
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero { text-align: center; }
    .hero h1 { font-size: 36px; }
    section { padding: 60px 0; }
    .proof-grid { grid-template-columns: 1fr; gap: 40px; }
    .offer-grid { grid-template-columns: 1fr; }
    .modal-content h2 { font-size: 28px; }
    .footer-nav { display: flex; flex-direction: column; }
    .footer-nav a { margin-bottom: 10px; }
}

/* === NEUE REGEL FÜR DEN BILD-HEADER AUF UNTERSEITEN === */
.subpage-image-hero {
    padding: 150px 0;
    color: var(--primary-white);
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Dies ist die entscheidende Korrektur: Bild wird oben ausgerichtet */
    background-position: top center; 
    position: relative;
}

.subpage-image-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.subpage-image-hero .container {
    position: relative;
    z-index: 2;
}

.subpage-image-hero h1 {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 48px;
    color: var(--primary-white);
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.subpage-image-hero .subtitle {
    font-size: 22px;
    color: var(--primary-white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}