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

:root {
    --cream:       #F7F3F0;
    --navy:         #2D3E65;   /* Haupt-Schriftfarbe statt Grau */
    --navy-light:   #44598A;
    --mauve:       #B7847B;
    --mauve-light: #C9A49C;
    --mauve-deep:  #9C5F54;
    --salbei:      #788C7E;
    --gold:        #C5A059;
    --teal:        #77A5A3;
    --terracotta:  #D06C41;
    --white:       #FFFFFF;
    --card-bg:     #FDFBF9;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247,243,240,0.93);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--mauve-deep);
    text-decoration: none;
    letter-spacing: 0.01em;
}
.nav-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--mauve) 0%, var(--terracotta) 100%);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(208,108,65,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(208,108,65,0.45); }

/* ── LAYOUT ── */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container--wide {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
section { padding: 4.5rem 0; }

/* ── SECTION LABELS (farbige Pills) ── */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 50px;
    padding: 0.45rem 1.3rem;
    margin-bottom: 1.5rem;
}
.label-mauve      { background: var(--mauve); }
.label-salbei     { background: var(--salbei); }
.label-gold       { background: var(--gold); }
.label-navy       { background: var(--navy); }
.label-terracotta { background: var(--terracotta); }

h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--navy);
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--mauve-deep); }
.gold-line {
    width: 54px;
    height: 3px;
    background: var(--gold);
    margin: 0 0 1.75rem;
    border-radius: 2px;
}
.center .gold-line { margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.lede {
    font-size: 1.08rem;
    color: var(--navy);
    opacity: 0.82;
    line-height: 1.75;
}

/* ── HERO ── */
.hero {
    padding: 3.5rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, #FBF0E9 0%, var(--cream) 55%);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.4vw, 3.2rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--mauve-deep); }
.hero-sub {
    font-size: 1.12rem;
    color: var(--navy);
    opacity: 0.82;
    max-width: 580px;
    margin: 0 auto 1.75rem;
    line-height: 1.75;
}
.mockup-area { margin: 3rem auto 1rem; max-width: 780px; }
.hero-mockup-image { width: 100%; height: auto; margin: 0 auto; border-radius: 16px; box-shadow: 0 14px 55px rgba(45,62,101,0.16); }

.badge-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 2rem 0 3rem;
}
.badge-pill {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    background: rgba(197,160,89,0.12);
    border: 1px solid rgba(197,160,89,0.6);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
}

/* ── CTA BUTTON ── */
.cta-btn {
    display: inline-block;
    padding: 1.15rem 3rem;
    background: linear-gradient(135deg, var(--mauve) 0%, var(--terracotta) 100%);
    color: var(--white);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(208,108,65,0.4);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(208,108,65,0.5); }
.hero .cta-btn { margin-top: 0.5rem; }
.cta-note {
    margin-top: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--mauve-deep);
}

/* ── ALLTAGSSITUATION ── */
.situation { background: var(--card-bg); border-top: 1px solid rgba(197,160,89,0.2); border-bottom: 1px solid rgba(197,160,89,0.2); }
.situation-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.situation-photo img { border-radius: 18px; box-shadow: 0 12px 40px rgba(45,62,101,0.14); }
.situation p { margin-bottom: 1rem; font-size: 1.04rem; opacity: 0.85; }

/* ── MIKROPROZESS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin: 2rem 0; }
.process-step {
    background: var(--white);
    border-top: 4px solid var(--mauve);
    border-radius: 16px;
    padding: 1.75rem 1.2rem;
    text-align: center;
    box-shadow: 0 6px 22px rgba(45,62,101,0.08);
}
.process-step:nth-child(2) { border-top-color: var(--salbei); }
.process-step:nth-child(3) { border-top-color: var(--gold); }
.process-step:nth-child(4) { border-top-color: var(--terracotta); }
.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}
.process-step p { font-size: 0.92rem; opacity: 0.85; font-weight: 500; }

/* ── VERSPRECHEN ── */
.promise { background: var(--navy); color: var(--cream); text-align: center; }
.promise .gold-line { background: var(--gold); }
.promise p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.9vw, 1.85rem);
    font-style: italic;
    line-height: 1.55;
    max-width: 720px;
    margin: 0 auto;
}

/* ── PRODUKTVORSTELLUNG ── */
.product-intro { background: var(--card-bg); }
.product-intro-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3rem; align-items: center; }
.product-intro-grid img { border-radius: 18px; box-shadow: 0 12px 40px rgba(45,62,101,0.14); }

/* ── PRODUKTTOUR ── */
.tour-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 2.5rem;
}
.tour-card {
    flex: 0 1 300px;
    max-width: 310px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(45,62,101,0.1);
}
.tour-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem;
    aspect-ratio: 1 / 0.95;
}
.tour-card-img img { width: 100%; height: 100%; object-fit: contain; }
.tour-card:nth-child(1) .tour-card-img { background: rgba(45,62,101,0.1); }
.tour-card:nth-child(2) .tour-card-img { background: rgba(120,140,126,0.14); }
.tour-card:nth-child(3) .tour-card-img { background: rgba(197,160,89,0.16); }
.tour-card:nth-child(4) .tour-card-img { background: rgba(119,165,163,0.16); }
.tour-card:nth-child(5) .tour-card-img { background: rgba(208,108,65,0.13); }
.tour-card-body { padding: 1.4rem 1.4rem 1.75rem; background: var(--white); }
.tour-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.tour-card-body p { font-size: 0.9rem; opacity: 0.8; }
.tour-intro { max-width: 640px; margin: 0 auto 0; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--card-bg); border-top: 1px solid rgba(197,160,89,0.2); border-bottom: 1px solid rgba(197,160,89,0.2); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 2.5rem; }
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    border-top: 4px solid var(--teal);
    box-shadow: 0 8px 28px rgba(45,62,101,0.08);
}
.testimonial-card:nth-child(2) { border-top-color: var(--salbei); }
.testimonial-mark {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}
.testimonial-card p {
    font-size: 1.02rem;
    opacity: 0.86;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.testimonial-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mauve-deep);
    letter-spacing: 0.03em;
}

/* ── INVESTITION ── */
.invest { background: linear-gradient(180deg, var(--card-bg) 0%, #F3E9DE 100%); border-top: 1px solid rgba(197,160,89,0.2); border-bottom: 1px solid rgba(197,160,89,0.2); }
.price-box {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 24px;
    padding: 2.75rem 2rem;
    text-align: center;
    box-shadow: 0 14px 50px rgba(45,62,101,0.14);
}
.intro-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--terracotta);
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    margin-bottom: 1.25rem;
}
.delivery-note {
    background: rgba(45,62,101,0.06);
    border: 1px solid rgba(45,62,101,0.18);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.92rem;
    color: var(--navy);
    opacity: 0.85;
    line-height: 1.6;
}
.delivery-note strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mauve-deep);
    opacity: 1;
    margin-bottom: 0.3rem;
}
.price-old {
    font-size: 1.4rem;
    color: rgba(45,62,101,0.4);
    text-decoration: line-through;
    margin-right: 0.7rem;
}
.price-new {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 8vw, 4.5rem);
    background: linear-gradient(135deg, var(--mauve-deep) 0%, var(--terracotta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}
.price-unit { font-size: 0.95rem; font-weight: 600; opacity: 0.7; margin-bottom: 1.75rem; }
.pay-icons { font-size: 0.83rem; opacity: 0.6; margin-top: 1.1rem; }

/* ── BONUS ── */
.bonus-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin: 2.75rem 0 0.5rem;
    color: var(--gold);
}
.bonus-arrow span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
}
.bonus-box {
    max-width: 720px;
    margin: 1.5rem auto 0;
    background: linear-gradient(160deg, #FFFDF8 0%, #FBF1DD 100%);
    border: 3px solid var(--gold);
    border-radius: 26px;
    padding: 3.25rem 2.5rem 2.75rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(197,160,89,0.28);
}
.bonus-seal {
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #E4C888 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(197,160,89,0.45), 0 0 0 6px var(--white);
}
.bonus-seal-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.bonus-seal-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
}
.bonus-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 600;
    margin: 1.5rem 0 1.1rem;
    text-align: center;
}
.bonus-box p { font-size: 1.08rem; opacity: 0.85; text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.bonus-box .fine-print { font-size: 0.83rem; opacity: 0.6; margin-top: 1.25rem; font-style: italic; text-align: center; }

/* ── UEBER MICH ── */
.about { background: var(--card-bg); }
.about-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 3rem; align-items: center; }
.about-photo img { border-radius: 18px; box-shadow: 0 12px 40px rgba(45,62,101,0.14); }
.about-text p:not(.about-quote) { margin-bottom: 1rem; }
.about-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--mauve-deep);
    font-size: 1.2rem;
    margin-top: 1.25rem;
    line-height: 1.5;
}

/* ── QUALIFIZIERUNG ── */
.qualify { background: rgba(120,140,126,0.08); }
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.qualify-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    border-left: 5px solid var(--salbei);
    box-shadow: 0 6px 22px rgba(45,62,101,0.07);
}
.qualify-card:nth-child(2) { border-left-color: var(--mauve); }
.qualify-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.qualify-card p { font-size: 0.96rem; opacity: 0.82; }
.qualify-card p.affirm { margin-top: 0.75rem; color: var(--mauve-deep); font-weight: 600; }

/* ── RECAP ── */
.recap { background: var(--navy); color: var(--cream); text-align: center; border-top: 1px solid rgba(197,160,89,0.2); border-bottom: 1px solid rgba(197,160,89,0.2); }
.recap h2 { color: var(--cream); }
.recap h2 em { color: var(--gold); }
.recap p { font-size: 1.12rem; opacity: 0.88; max-width: 660px; margin: 0 auto 1rem; }
.recap p:last-child { margin-bottom: 0; }

/* ── FAQ ── */
.faq-item {
    border-bottom: 1px solid rgba(45,62,101,0.12);
    padding: 1.4rem 0;
}
.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.faq-item p { font-size: 0.95rem; opacity: 0.82; }

/* ── FINAL CTA ── */
.final-cta { text-align: center; background: linear-gradient(180deg, var(--cream) 0%, #F3E4DC 100%); }
.final-cta .sub {
    font-size: 1.02rem;
    color: var(--navy);
    opacity: 0.75;
    margin-bottom: 2.25rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ── FOOTER ── */
footer {
    padding: 2rem 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(45,62,101,0.55);
    border-top: 1px solid rgba(45,62,101,0.1);
}
footer a { color: var(--mauve-deep); text-decoration: underline; }
footer a:hover { color: var(--terracotta); }

/* ── MOBILE ── */
@media (max-width: 860px) {
    .situation-grid, .product-intro-grid, .about-grid { grid-template-columns: 1fr; }
    .situation-photo, .about-photo { order: -1; max-width: 320px; margin: 0 auto; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .qualify-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    section { padding: 3rem 0; }
    .hero { padding: 2.5rem 0 2rem; }
    nav { padding: 0.8rem 1.25rem; }
    .process-steps { grid-template-columns: 1fr; }
    .tour-card { flex: 1 1 100%; max-width: 360px; }
    .price-new { font-size: 3rem; }
}
