/* ============================================
   LANDING PAGE ERGÄNZUNGEN
   Für die Branchen-Landingpages (Pizzeria, Imbiss,
   Restaurant, Lieferdienst) und homepage.html.
   Ergänzt css/style.css – überschreibt nichts.
   ============================================ */

/* TOP BAR */
.topbar {
    background: var(--dark);
    color: #eee;
    font-size: 0.85rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar strong { color: var(--secondary); }
.topbar .topbar-right { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #eee; }
.topbar a:hover { color: var(--secondary); }
@media (max-width: 640px) { .topbar .container { justify-content: center; text-align: center; } }

/* USP-LISTE im Hero */
.usp-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.usp-list li { font-size: 0.98rem; color: #ddd; display: flex; align-items: flex-start; gap: 9px; }
.usp-list li i { color: #37d67a; font-style: normal; font-weight: 800; }
@media (max-width: 900px) { .usp-list { grid-template-columns: 1fr; text-align: left; } }

/* PREIS-BOX rechts im Hero */
.price-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 34px 30px;
    text-align: center;
    color: #fff;
}
.price-box .pb-label { font-size: 0.9rem; color: #cfcfcf; margin-bottom: 4px; }
.price-box .pb-price { font-size: 3rem; font-weight: 800; color: var(--secondary); line-height: 1.1; }
.price-box .pb-note { font-size: 0.8rem; color: #bfbfbf; margin-bottom: 20px; }
.price-box ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.price-box li { font-size: 0.92rem; color: #eaeaea; padding: 6px 0; display: flex; gap: 9px; }
.price-box li i { color: var(--secondary); font-style: normal; font-weight: 800; }

/* ABLAUF / SCHRITTE */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 10px; }
.step { position: relative; background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 30px 24px 24px; }
.step .step-no { position: absolute; top: -18px; left: 24px; width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(169,0,114,0.35); }
.step h3 { font-size: 1.15rem; margin: 6px 0 10px; color: var(--dark); }
.step p { font-size: 0.93rem; color: #444; line-height: 1.6; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

/* FAQ AKKORDEON */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; text-align: left; background: var(--light); border: none; cursor: pointer; padding: 18px 20px; font-size: 1.02rem; font-weight: 700; color: var(--dark); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q:hover { background: #eef0f2; }
.faq-q .faq-icon { color: var(--primary); transition: transform 0.25s ease; font-weight: 800; }
.faq-a { display: none; padding: 18px 20px; font-size: 0.95rem; color: #444; line-height: 1.65; border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* Demo-Grid: 3 Spalten fixes Layout auf Landingpages */
.landing-demos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .landing-demos { grid-template-columns: 1fr; } }

/* BREADCRUMB */
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--gray); margin-bottom: 18px; }
.breadcrumb li + li::before { content: '\203A'; margin-right: 8px; color: #b0b0b0; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--dark); font-weight: 600; }

/* TEXT + BILD (2 Spalten) */
.media-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.media-grid h2 { font-size: 1.6rem; margin-bottom: 14px; color: var(--primary); }
.media-grid p { margin-bottom: 14px; color: #444; }
.media-figure { margin: 0; background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06); }
.media-figure figcaption { padding: 10px 14px; font-size: 0.82rem; color: var(--gray); }
@media (max-width: 900px) { .media-grid { grid-template-columns: 1fr; gap: 26px; } }

/* CHECKLISTE auf hellem Hintergrund */
.check-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.96rem; color: #444; }
.check-list li i { font-style: normal; font-weight: 800; color: #1f9d55; }
@media (max-width: 640px) { .check-list { grid-template-columns: 1fr; } }

/* HINWEIS-BOX */
.notice-box { margin-top: 30px; padding: 20px 24px; border: 1px solid #ffd54f; border-left: 4px solid var(--secondary); border-radius: 8px; background: #fff8e1; color: #5c4a12; font-size: 0.95rem; }
.notice-box strong { color: #3d3100; }
