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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background-color: #fafaf9;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero mit mind. 550px Höhe für perfekte Bildwirkung */
.hero {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.82) 0%, rgba(41, 37, 36, 0.82) 100%), url('hero.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    border-bottom: 1px solid #44403c;
}

.badge {
    background-color: #d97706; /* Edler Gold-/Bronzeton */
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.25;
    max-width: 900px;
}

.subtitle {
    font-size: 1.1rem;
    color: #a8a29e;
    max-width: 650px;
    margin: 0 auto;
}

.content {
    padding: 50px 0;
    background-color: #fff;
}

.intro-section {
    margin-bottom: 40px;
}

.intro-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.intro-image {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.product-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.intro-text {
    flex: 1.5;
    min-width: 280px;
}

.intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1c1917;
}

.intro-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #44403c;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.card {
    background: #fafaf9;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e7e5e4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #1c1917;
}

.card p {
    font-size: 0.95rem;
    color: #57534e;
    margin-bottom: 0;
}

/* Highlight-Box */
.highlight-box {
    background: #fdf8f6;
    border-left: 4px solid #d97706;
    padding: 35px;
    border-radius: 0 10px 10px 0;
    margin: 50px 0;
}

.highlight-box h3 {
    color: #b45309;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.02rem;
    line-height: 1.5;
    color: #292524;
}

.highlight-box li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    font-weight: bold;
    color: #d97706;
}

.target-section {
    margin: 50px 0;
}

.target-section h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #1c1917;
    text-align: center;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.target-box {
    padding: 30px;
    border-radius: 10px;
}

.target-box.yes {
    background-color: #fafaf9;
    border: 1px solid #d6d3d1;
}

.target-box.yes h3 {
    color: #1c1917;
    margin-bottom: 15px;
}

.target-box.yes ul, .target-box.no ul {
    list-style: none;
    padding: 0;
}

.target-box.yes li, .target-box.no li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #44403c;
}

.target-box.yes li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    font-weight: bold;
    color: #1c1917;
}

.target-box.no {
    background-color: #f5f5f4;
    border: 1px solid #d6d3d1;
}

.target-box.no h3 {
    color: #292524;
    margin-bottom: 15px;
}

.target-box.no li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    font-weight: bold;
    color: #78716c;
}

.cta-container {
    text-align: center;
    background: #fafaf9;
    padding: 50px 30px;
    border-radius: 12px;
    border: 1px solid #e7e5e4;
    margin-top: 50px;
}

.cta-container h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1c1917;
}

.cta-container p {
    color: #57534e;
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #d97706;
    color: #fff;
    padding: 16px 38px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(217, 119, 6, 0.2);
}

.cta-button:hover {
    background-color: #b45309;
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.affiliate-notice {
    font-size: 0.8rem;
    color: #a8a29e;
    margin-top: 20px;
}

footer {
    background-color: #1c1917;
    color: #a8a29e;
    text-align: center;
    padding: 35px 0;
    font-size: 0.9rem;
}

footer a {
    color: #d97706;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .intro-grid {
        flex-direction: column;
    }
}

/* --- Modal / Popup Styles --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 25, 23, 0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: #f5f5f4;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1c1917;
    line-height: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #e7e5e4;
}

.legal-text h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1c1917;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 10px;
}

.legal-text h2 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1c1917;
}

.legal-text p {
    font-size: 0.95rem;
    color: #44403c;
    margin-bottom: 12px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        max-height: 90vh;
    }
}
```[cite: 2]