/* ============================================================
   RESET & GRUNDLAGEN
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #2D5016;
    --green-light: #1a3009;
    --gold: #C9A227;
    --gold-light: #E8D9B0;
    --gold-hover: #e8c96a;
    --cream: #F5EDD6;
    --white: #FFFFFF;
    --text-dark: #3B2008;
    --text-muted: #8aaa70;
    --shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
    --shadow-lg: 0 20px 50px rgba(201, 162, 39, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #c9a227, #e8c96a, #c9a227);
    background-size: 200% 200%;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--green-dark);
    transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
}

.btn-gold:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--green-dark);
    border-radius: 8px;
    font-weight: 600;
    color: var(--green-dark);
    transition: background 0.3s, color 0.3s;
    text-align: center;
}

.btn-outline:hover {
    background: var(--green-dark);
    color: var(--cream);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--green-dark);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 2px 12px rgba(45, 80, 22, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--cream);
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-dot {
    color: var(--gold);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-desktop a {
    color: var(--cream);
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-desktop a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--cream);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 20px 24px;
    background: var(--green-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 12px;
}

.nav-mobile a {
    color: var(--cream);
    font-weight: 600;
    padding: 6px 0;
}

.nav-mobile.open {
    display: flex;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 60px 0 40px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--green-dark);
}

.hero-text .highlight {
    color: #C4622D;
    font-style: italic;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    background: var(--green-dark);
    color: var(--gold);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Lora', serif;
    color: var(--green-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 420px;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(45, 80, 22, 0.25);
    transform: rotate(-3deg);
}

.hero-stamp {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: 0 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-tag::before {
    right: 100%;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-tag::after {
    left: 100%;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--green-dark);
    margin-top: 8px;
}

.section-header p {
    color: var(--text-dark);
    max-width: 600px;
    margin: 8px auto 0;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
    padding: 70px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #FAF6EC;
    border: 1px solid var(--gold-light);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px) rotate(0.5deg);
    box-shadow: var(--shadow-lg);
}

.product-emoji {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.product-card p {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.product-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    padding: 70px 0;
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1050px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gold-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-card .badge {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
    margin-top: -44px;
    margin-bottom: 12px;
    align-self: center;
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--green-dark);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Lora', serif;
    color: #C4622D;
    margin: 8px 0 20px;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 24px;
    flex: 1;
}

.pricing-card ul li {
    font-size: 0.9rem;
    padding: 4px 0;
    color: var(--text-dark);
}

/* Business Box */
.business-box {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--green-dark);
    border: 2px solid var(--green-dark);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    text-align: center;
    color: var(--cream);
}

.business-box .business-icon {
    font-size: 2.6rem;
}

.business-box h3 {
    font-size: 1.3rem;
    margin: 6px 0 10px;
    color: var(--cream);
}

.business-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 18px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 70px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-icon {
    font-size: 2.4rem;
}

.step-number {
    font-size: 2.6rem;
    font-weight: 700;
    font-family: 'Lora', serif;
    color: var(--gold-light);
    margin: -4px 0 4px;
}

.step h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
}

.step p {
    font-size: 0.92rem;
    color: var(--text-dark);
    max-width: 260px;
    margin: 4px auto 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 70px 0;
    background: #FAF6EC;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1050px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin: 10px 0 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--cream);
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green-dark);
}

.author-city {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    padding: 70px 0;
    background: var(--green-dark);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box .cta-icon {
    font-size: 3.2rem;
}

.cta-box h2 {
    font-size: 2.4rem;
    color: var(--cream);
    margin: 6px 0 12px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 24px;
}

.cta-footer {
    font-size: 0.8rem !important;
    margin-top: 16px !important;
    color: #6a8a50 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--green-light);
    color: var(--cream);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 10px;
}

.footer-logo .logo-dot {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-satire {
    font-size: 0.75rem;
    color: #5a7a40;
    margin-top: 12px;
}

.footer h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 14px;
}

.footer ul li {
    margin-bottom: 6px;
}

.footer ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-bottom .highlight {
    color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image img {
        max-width: 340px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .business-box {
        padding: 24px 20px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-image img {
        max-width: 280px;
    }

    .hero-stamp {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}
/* ============================================================
   WIDERRUFSBUTTON WIE HEADER-BUTTON (NUR IN ROT)
   ============================================================ */
.btn-widerruf {
    display: inline-block;
    background: linear-gradient(135deg, #cc0000, #ff3333, #cc0000);
    background-size: 200% 200%;
    padding: 8px 20px;  /* Gleiche Größe wie Header-Button */
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;  /* Gleiche Schriftgröße wie Header */
    color: #ffffff !important;
    text-decoration: none;
    text-align: center;
    transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
}

.btn-widerruf:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
    color: #ffffff !important;
}