/* ──────────────────────────────────────────────────────────────
   style.css – Modernes, kontrastreiches Design
   ────────────────────────────────────────────────────────────── */

/* ── Reset & Basis ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f7f2e9;
    color: #1a1a1a;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #b3761e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    border: none;
    font-family: inherit;
    text-align: center;
}

.btn-primary {
    background: #d48c2c;
    color: #ffffff !important;
    box-shadow: 0 6px 0 #8f5f1e;
}

.btn-primary:hover {
    background: #b87a24;
    transform: translateY(2px);
    box-shadow: 0 4px 0 #8f5f1e;
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #8f5f1e;
}

.btn-secondary {
    background: #f5efe7;
    color: #1a1a1a !important;
    border: 3px solid #d48c2c;
}

.btn-secondary:hover {
    background: #e5ddd2;
    text-decoration: none;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ── Section-Tags ── */
.section-tag {
    display: inline-block;
    background: #d48c2c;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1.3rem;
    color: #2d2a24;
    max-width: 700px;
    margin-bottom: 40px;
}

.highlight {
    color: #d48c2c;
}

/* ──────────────────────────────────────────────────────────────
   HEADER
   ────────────────────────────────────────────────────────────── */

.header {
    background: #1a1a1a;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #d48c2c;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-icon {
    font-size: 2.0rem;
}

.logo-text {
    color: #ffb347;
}

.nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav a {
    color: #e5ddd2;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #d48c2c;
    text-decoration: none;
}

/* ──────────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────────── */

.hero {
    background: #ffffff;
    padding: 60px 0 70px 0;
    border-bottom: 3px solid #e5ddd2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: #d48c2c;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero-sub {
    font-size: 1.3rem;
    color: #2d2a24;
    margin-bottom: 28px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    font-size: 1.05rem;
    color: #2d2a24;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-image {
    position: relative;
    background: #f5efe7;
    border-radius: 24px;
    padding: 20px;
    border: 3px solid #d4c9bc;
}

.hero-image img {
    border-radius: 16px;
    background: #e5ddd2;
    min-height: 280px;
    object-fit: cover;
}

.hero-price {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #d48c2c;
    text-align: center;
}

.price-old {
    font-size: 1.1rem;
    color: #8f8575;
    text-decoration: line-through;
    display: block;
}

.price-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: #4d4438;
}

/* ──────────────────────────────────────────────────────────────
   CHECKLISTE (Lead-Magnet)
   ────────────────────────────────────────────────────────────── */

.checkliste {
    background: #f5efe7;
}

.checkliste-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.checkliste-text h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.checkliste-text p {
    font-size: 1.2rem;
    color: #2d2a24;
    margin-bottom: 20px;
}

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

.checkliste-list li {
    font-size: 1.15rem;
    padding: 10px 0 10px 44px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28"><circle cx="14" cy="14" r="14" fill="%23d48c2c"/><path d="M8 14 L12 18 L20 10" stroke="white" stroke-width="4" fill="none" stroke-linecap="round"/></svg>') left center no-repeat;
    background-size: 28px;
    border-bottom: 1px solid #e5ddd2;
}

.checkliste-list li:last-child {
    border-bottom: none;
}

/* ── Formular-Karte ── */
.form-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 24px;
    border: 3px solid #d48c2c;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.2rem;
    border: 3px solid #d4c9bc;
    border-radius: 14px;
    background: #ffffff;
    color: #1a1a1a;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus {
    border-color: #d48c2c;
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 140, 44, 0.15);
}

.form-group .hint {
    font-size: 0.95rem;
    color: #4d4438;
    margin-top: 4px;
}

.form-footer {
    text-align: center;
    font-size: 1.0rem;
    color: #4d4438;
    margin-top: 16px;
}

/* ──────────────────────────────────────────────────────────────
   PRODUKT
   ────────────────────────────────────────────────────────────── */

.produkt {
    background: #ffffff;
}

.produkt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 30px 0 40px 0;
}

.produkt-card {
    background: #f5efe7;
    padding: 28px 22px;
    border-radius: 20px;
    border: 2px solid #e5ddd2;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.produkt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.produkt-card.highlight-card {
    border-color: #d48c2c;
    background: #fcf8f0;
}

.produkt-icon {
    font-size: 3.0rem;
    display: block;
    margin-bottom: 12px;
}

.produkt-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.produkt-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.produkt-card ul li {
    font-size: 1.05rem;
    padding: 6px 0 6px 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="10" fill="%23d48c2c"/><path d="M6 10 L9 13 L14 7" stroke="white" stroke-width="3" fill="none" stroke-linecap="round"/></svg>') left center no-repeat;
    background-size: 20px;
    border-bottom: 1px solid #e5ddd2;
}

.produkt-card ul li:last-child {
    border-bottom: none;
}

.card-badge {
    display: inline-block;
    background: #d48c2c;
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 12px;
}

/* ── Produkt CTA ── */
.produkt-cta {
    text-align: center;
    background: #f5efe7;
    padding: 40px 30px;
    border-radius: 24px;
    border: 3px solid #d48c2c;
    margin-top: 20px;
}

.produkt-price {
    margin-bottom: 20px;
}

.produkt-price .price-old {
    font-size: 1.3rem;
}

.produkt-price .price-new {
    font-size: 2.8rem;
}

.produkt-price .price-note {
    font-size: 1.1rem;
}

.produkt-guarantee {
    font-size: 1.05rem;
    color: #2d2a24;
    margin-top: 16px;
}

/* ──────────────────────────────────────────────────────────────
   VORTEILE
   ────────────────────────────────────────────────────────────── */

.vorteile {
    background: #f7f2e9;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vorteil-item {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 20px;
    border: 2px solid #e5ddd2;
    text-align: center;
    transition: transform 0.2s ease;
}

.vorteil-item:hover {
    transform: translateY(-4px);
}

.vorteil-icon {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 12px;
}

.vorteil-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vorteil-item p {
    font-size: 1.05rem;
    color: #2d2a24;
    line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────────
   PARTNER
   ────────────────────────────────────────────────────────────── */

.partner {
    background: #ffffff;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0 30px 0;
}

.partner-card {
    background: #f5efe7;
    padding: 28px 24px;
    border-radius: 20px;
    border: 2px solid #e5ddd2;
    text-align: center;
}

.partner-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 10px;
}

.partner-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.partner-card p {
    font-size: 1.05rem;
    color: #2d2a24;
    margin-bottom: 12px;
}

.partner-margin {
    display: inline-block;
    background: #d48c2c;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
}

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

/* ──────────────────────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────────────────────── */

.faq {
    background: #f7f2e9;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 2px solid #e5ddd2;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f5efe7;
}

.faq-toggle {
    font-size: 1.6rem;
    color: #d48c2c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 1.1rem;
    color: #2d2a24;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ──────────────────────────────────────────────────────────────
   KONTAKT
   ────────────────────────────────────────────────────────────── */

.kontakt {
    background: #ffffff;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.kontakt-item {
    background: #f5efe7;
    padding: 28px 20px;
    border-radius: 20px;
    border: 2px solid #e5ddd2;
    text-align: center;
}

.kontakt-icon {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 8px;
}

.kontakt-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.kontakt-item p {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.kontakt-item a {
    color: #b3761e;
    font-weight: 600;
}

.kontakt-item a:hover {
    text-decoration: underline;
}

.kontakt-hint {
    display: block;
    font-size: 0.95rem;
    color: #4d4438;
    margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */

.footer {
    background: #1a1a1a;
    color: #e5ddd2;
    padding: 50px 0 20px 0;
    border-top: 4px solid #d48c2c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #ffb347;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 1.0rem;
    color: #cfc5b5;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #cfc5b5;
    font-size: 1.0rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #d48c2c;
    text-decoration: none;
}

.footer-bottom {
    border-top: 2px solid #2d2a24;
    padding-top: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #8f8575;
}

.footer-small {
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .produkt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkliste-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .nav {
        justify-content: center;
        gap: 16px;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-price {
        position: static;
        margin-top: 16px;
    }
}

@media (max-width: 550px) {
    .produkt-grid {
        grid-template-columns: 1fr;
    }

    .vorteile-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .form-card {
        padding: 24px 16px;
    }
}