/* =================================================================
   FEDERLEICHT — Salespage styles.css
   Kopf aus, Herz an. Schreibwerkstatt für ein leiseres Leben.
   ================================================================= */

/* ----- Design Tokens (aus der Live-Seite übernommen) -------------- */
:root {
    --cream:           #FAF7F2;   /* Body-Hintergrund */
    --cream-soft:      #FFFCF8;   /* Helle Sektionen */
    --cream-warm:      #FFF9F0;   /* Karten warm */
    --sand:            #F5EFE6;   /* Akzent-Sand */
    --terracotta:      #D97757;   /* Brand-Akzent */
    --terracotta-dark: #C26649;
    --cta-orange:      #FF6B35;   /* GRELL Orange CTA */
    --cta-orange-dark: #FF5722;
    --soft-green:      #E8F1DA;   /* Stimmen-Hintergrund */
    --soft-green-2:    #DFEBCB;
    --ink:             #2A2522;   /* Haupttext */
    --ink-soft:        #4A413A;
    --muted:           #6B6259;
    --line:            rgba(217, 119, 87, 0.15);
}

/* ----- Reset & Basis ---------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* ============================================================== */
/*  KOPF: Kreativ-Factory-Branding-Header                          */
/* ============================================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    transition: opacity 0.2s ease;
}

.brand-link:hover {
    opacity: 0.85;
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
}

.brand-claim {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

/* ----- Hero-Pain-Box (Schmerz im Header) -------------------------- */
.hero-pain-box {
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--cta-orange);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px auto 28px;
    max-width: 680px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hero-pain {
    font-size: clamp(17px, 1.9vw, 20px);
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 14px;
}

.hero-pain:last-child {
    margin-bottom: 0;
}

.hero-pain strong {
    color: var(--terracotta);
    font-weight: 700;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* ----- Layout-Container (slim — 900px für Conversion) ------------- */
.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

@media (max-width: 700px) {
    .section {
        padding: 60px 0;
    }
}

/* ----- Typografie ------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 18px;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    letter-spacing: -0.5px;
}

h2 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    margin: 0 0 24px;
}

h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    margin: 0 0 10px;
}

p {
    margin: 0 0 1em;
}

.heart {
    color: #E74C3C;
    display: inline-block;
    font-style: normal;
    text-shadow:
        1px 1px 0 #fff,
       -1px -1px 0 #fff,
        1px -1px 0 #fff,
       -1px  1px 0 #fff,
        0    1px 0 #fff,
        1px  0   0 #fff,
        0   -1px 0 #fff,
       -1px  0   0 #fff;
}

.accent-terracotta {
    color: var(--terracotta);
}

/* ----- Pill-Badge ------------------------------------------------- */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: var(--muted);
    font-size: 23px;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 28px;
}

/* ----- CTA-Button (GRELL Orange) ---------------------------------- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cta-orange);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 800;
    padding: 20px 42px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.32), 0 1px 3px rgba(255, 107, 53, 0.45);
    filter: saturate(1.15);
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
    cursor: pointer;
    border: 2px solid var(--cta-orange);
}

.cta-button:hover {
    background: var(--cta-orange-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.45), 0 2px 6px rgba(255, 107, 53, 0.5);
    color: #fff;
}

.cta-subtext {
    margin: 14px 0 0;
    font-size: 17px;
    color: var(--text-2, #6E5C50);
    text-align: center;
}

/* ----- Hero-Claim (neuer Identitäts-Trigger) ---------------------- */
.hero-claim {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 2.4vw, 28px);
    font-style: italic;
    color: var(--terracotta);
    margin: 0 0 20px;
    line-height: 1.4;
}

/* ----- Killer-Satz (sanfter Atemzug) ------------------------------ */
.killer-satz {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
}

.killer-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.6;
    color: var(--ink);
    max-width: 720px;
    margin: 0 auto;
}

.killer-text em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}

.killer-cta {
    margin-top: 40px;
    text-align: center;
}

/* ----- Preis-Anker + Splitter pro Woche --------------------------- */
.preis-vergleich {
    font-size: 17px;
    color: var(--muted);
    font-style: italic;
    margin: 0 0 20px;
    line-height: 1.5;
}

.preis-info-mini {
    font-size: 16px;
    color: var(--text-2, #6E5C50);
    margin: 8px 0 18px;
}

/* ----- Knappheit: Bild + Text nebeneinander ----------------------- */
.knappheit-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: stretch;
}

.knappheit-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.knappheit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 700px) {
    .knappheit-grid {
        grid-template-columns: 1fr;
    }
    .knappheit-image {
        max-height: 280px;
    }
}

.knappheit-box {
    background: #FFF6E8;
    border-left: 4px solid var(--cta-orange);
    border-radius: 12px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.knappheit-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 2.8vw, 32px);
    color: var(--ink);
    margin: 0 0 20px;
}

.knappheit-text {
    font-size: 19px;
    color: var(--ink);
    line-height: 1.65;
    margin: 0 0 16px;
}

/* ----- Final-CTA-Sub --------------------------------------------- */
.final-cta-sub {
    font-size: 18px;
    color: var(--text-2, #6E5C50);
    margin: 0 0 28px;
    text-align: center;
}

@media (max-width: 480px) {
    .cta-button {
        padding: 16px 28px;
        font-size: 17px;
    }
}

/* ----- Karte (allgemein) ------------------------------------------ */
.card {
    background: var(--cream-warm);
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: 0 8px 24px rgba(42, 37, 34, 0.06);
    border: 1px solid var(--line);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(42, 37, 34, 0.09);
}

/* ============================================================== */
/*  1. HERO                                                         */
/* ============================================================== */
.hero {
    position: relative;
    padding: 90px 0 70px;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(217, 119, 87, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 15%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
    text-align: center;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    margin: 18px 0 18px;
    line-height: 1.05;
    /* Wichtig: der visible Stack ist die Letter-Span; sichtbarer Inhalt darf das Layout NICHT springen lassen */
    perspective: 800px;
}

/* ---- Federleicht-Animation: Buchstaben schweben staggered rein ---- */
.federleicht-letters {
    display: inline-block;
    white-space: nowrap;
    color: var(--ink);
}

.fl-letter {
    display: inline-block;
    color: var(--ink);
    /* Default state: SICHTBAR. backwards-fill macht 0%-Keyframe vor Animation aktiv */
    animation: federleicht-drop 1.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: calc(0.3s + var(--i) * 0.14s);
    will-change: transform, opacity, filter;
}

.fl-letter.fl-dot {
    color: var(--terracotta);
}

@keyframes federleicht-drop {
    0% {
        opacity: 0;
        transform: translateY(-60px) rotate(-12deg);
        filter: blur(8px);
    }
    55% {
        opacity: 1;
        transform: translateY(8px) rotate(2deg);
        filter: blur(0);
    }
    80% {
        transform: translateY(-3px) rotate(-0.5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }
}

/* ---- Aquarell-Feder schwingt in geschwungenem Bogen durchs Hero ---- */
.hero-feather-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.hero-feather {
    position: absolute;
    top: 8%;
    left: 100%;
    width: 85px;
    height: auto;
    opacity: 0;
    transform: rotate(35deg);
    filter: drop-shadow(0 8px 16px rgba(42, 37, 34, 0.12));
    will-change: transform, opacity, top, left;
    /* Kurzer Weg von rechts, langsam und sanft, Halt am Anführungszeichen */
    animation: feather-arc-path 10s linear 0.6s forwards;
}

/* Kurzer Weg von RECHTS → ganz minimaler Schwung → Halt am schließenden Anführungszeichen */
@keyframes feather-arc-path {
    0% {
        top: 8%;
        left: 100%;
        opacity: 0;
        transform: rotate(35deg) scale(0.9);
    }
    15% {
        opacity: 1;
    }
    50% {
        top: 11%;
        left: 88%;
        transform: rotate(25deg) scale(1);
    }
    100% {
        top: 8%;
        left: 73%;
        opacity: 1;
        transform: rotate(15deg) scale(0.95);
    }
}

/* leises Atmen nach der Landung am „t" */
@keyframes feather-breathe {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50%      { transform: rotate(11deg) translateY(-6px); }
}

@media (max-width: 700px) {
    .hero-feather {
        width: 75px;
    }
}

/* prefers-reduced-motion: ALLE Animationen aus, Endzustand sichtbar */
@media (prefers-reduced-motion: reduce) {
    .fl-letter {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
    .hero-feather {
        animation: none;
        opacity: 1;
        top: 18%;
        left: 70%;
        transform: rotate(20deg);
    }
}

.hero-sub {
    font-size: clamp(18px, 1.8vw, 22px);
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.55;
    font-weight: 500;
}

.hero-image-wrap {
    width: 100%;
    max-width: 520px;
    margin: 36px auto 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(42, 37, 34, 0.12);
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================== */
/*  2. PAIN-SECTION                                                 */
/* ============================================================== */
.pain {
    background: var(--cream-soft);
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.pain-card {
    background: var(--cream-warm);
    border-radius: 18px;
    padding: 26px 26px;
    border: 1px solid var(--line);
    text-align: left;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    box-shadow: 0 6px 18px rgba(42, 37, 34, 0.05);
}

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

/* ============================================================== */
/*  3. KONZEPT — „Das ist Federleicht"                              */
/* ============================================================== */
.konzept {
    background: var(--cream);
    text-align: center;
}

.konzept-text {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 720px;
    margin: 0 auto 36px;
}

.pull-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 30px);
    color: var(--terracotta);
    line-height: 1.4;
    max-width: 720px;
    margin: 30px auto 0;
    padding: 26px 30px;
    background: var(--cream-warm);
    border-left: 4px solid var(--terracotta);
    border-radius: 0 16px 16px 0;
    text-align: left;
}

/* ============================================================== */
/*  4. DAS BEKOMMST DU                                              */
/* ============================================================== */
.features {
    background: var(--cream-soft);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 36px;
    text-align: left;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 8px 22px rgba(42, 37, 34, 0.06);
    border: 1px solid var(--line);
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 6px;
    color: var(--ink);
}

.feature-card p {
    font-size: 15.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
}

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

/* ============================================================== */
/*  5. STIMMEN                                                      */
/* ============================================================== */
.stimmen {
    background: linear-gradient(180deg, var(--soft-green) 0%, var(--soft-green-2) 60%, var(--soft-green) 100%);
    text-align: center;
}

.stimmen-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

.video-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(42, 37, 34, 0.08);
    border: 1px solid var(--line);
}

.video-wrap {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--sand);
    aspect-ratio: 16 / 9;
    margin-bottom: 14px;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    margin: 0;
}

.video-role {
    font-size: 15px;
    color: var(--muted);
    text-align: left;
    margin: 2px 0 0;
}

.text-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 30px;
}

.text-testimonial {
    background: #fff;
    border-radius: 18px;
    padding: 26px 26px;
    text-align: left;
    box-shadow: 0 8px 22px rgba(42, 37, 34, 0.06);
    border: 1px solid var(--line);
}

.text-testimonial .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    line-height: 0.4;
    color: var(--terracotta);
    display: block;
    margin-bottom: 10px;
}

.text-testimonial p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 12px;
}

.text-testimonial .author {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

@media (max-width: 700px) {
    .stimmen-videos,
    .text-testimonials {
        grid-template-columns: 1fr;
    }
}

/* ============================================================== */
/*  6. PREIS-BLOCK                                                  */
/* ============================================================== */
.preis {
    background: var(--cream);
    text-align: center;
}

.preis-box {
    background: var(--cream-warm);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 16px 40px rgba(42, 37, 34, 0.08);
    border: 1px solid var(--line);
    max-width: 640px;
    margin: 0 auto;
}

.preis-zahl {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1.1;
    margin: 0 0 12px;
}

.preis-info {
    font-size: 17px;
    color: var(--muted);
    margin: 0 0 30px;
}

.preis-micro {
    font-size: 15.5px;
    color: var(--muted);
    margin: 22px 0 0;
    line-height: 1.5;
}

/* ============================================================== */
/*  7. GARANTIE                                                     */
/* ============================================================== */
.garantie {
    background: var(--cream-soft);
    text-align: center;
}

.garantie-box {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    padding: 36px 36px;
    box-shadow: 0 10px 26px rgba(42, 37, 34, 0.06);
    border: 1px solid var(--line);
}

.garantie-box h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    margin-bottom: 14px;
}

.garantie-box p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================== */
/*  8. FAQ                                                          */
/* ============================================================== */
.faq {
    background: var(--cream);
    text-align: center;
}

.faq-list {
    max-width: 760px;
    margin: 36px auto 0;
    text-align: left;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px 26px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(42, 37, 34, 0.05);
    border: 1px solid var(--line);
}

.faq-item summary {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    padding-right: 30px;
    position: relative;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--terracotta);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 14px 0 0;
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ============================================================== */
/*  9. PERSÖNLICHE NACHRICHT                                        */
/* ============================================================== */
.persoenlich {
    background: var(--cream-soft);
}

.persoenlich-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.persoenlich-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(42, 37, 34, 0.12);
    background: #fff;
    padding: 10px;
}

.persoenlich-image img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.persoenlich-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 14px;
}

.persoenlich-text p:first-child {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ink);
    line-height: 1.45;
}

@media (max-width: 700px) {
    .persoenlich-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .persoenlich-image {
        max-width: 240px;
        margin: 0 auto;
    }

    .persoenlich-text {
        text-align: left;
    }
}

/* ============================================================== */
/*  10. FINAL CTA                                                   */
/* ============================================================== */
.final-cta {
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--sand) 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 28px;
}

/* ============================================================== */
/*  11. FOOTER                                                      */
/* ============================================================== */
.site-footer {
    background: var(--ink);
    color: rgba(250, 247, 242, 0.72);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

.site-footer a {
    color: rgba(250, 247, 242, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(217, 119, 87, 0.6);
    text-underline-offset: 3px;
}

.site-footer a:hover {
    color: var(--terracotta);
}

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    margin: 0 10px;
}

.footer-meta {
    font-size: 13px;
    color: rgba(250, 247, 242, 0.55);
    margin-top: 8px;
}

/* === Termin-Badge (Start-Termin sichtbar machen) === */
.termin-badge {
    display: inline-block;
    margin: 18px auto 24px;
    padding: 12px 26px;
    background: #FFF6E8;
    border: 2px solid #FF6B35;
    border-radius: 999px;
    color: #2B1B0E;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.12);
}
.preis-termin {
    margin-top: 8px;
    padding: 10px 18px;
    background: #FFF6E8;
    border-radius: 12px;
    color: #2B1B0E;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}
