:root {
    --bg: #05060a;
    --bg-elevated: rgba(10, 11, 18, 0.96);
    --bg-soft: rgba(15, 16, 24, 0.96);
    --primary: #e0243b;
    --primary-soft: rgba(224, 36, 59, 0.18);
    --text: #f3f4f6;
    --text-soft: #9ca3af;
    --border-soft: #27272f;
    --radius: 14px;
    --radius-lg: 18px;
    --container-width: 1200px;
    --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.85);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, #151623 0, #05060a 55%, #000 100%);
}

/* Hintergrund-Canvas */

#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: -2;
}

/* Overlay, damit der Hintergrund etwas gedeckter wirkt */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(224, 36, 59, 0.06), transparent 55%);
    pointer-events: none;
    z-index: -1;
}

/* Layout */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.75rem;
}

.page-main {
    padding: 3.5rem 0 3.5rem;
}

/* Header / Navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 8, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.2rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, #f97373 0, #e11d48 35%, #7f1d1d 72%, #020617 100%);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
}

.logo-text .logo-main {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.logo-text .logo-sub {
    font-size: 0.7rem;
    color: var(--text-soft);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    font-size: 0.86rem;
}

.main-nav a {
    position: relative;
    color: var(--text-soft);
    text-decoration: none;
    padding: 0.1rem 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f97373, #e11d48);
    transition: width 0.18s ease-out;
}

.main-nav a:hover {
    color: var(--text);
}
.main-nav a:hover::after {
    width: 100%;
}

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;      /* Text vertikal mittig im Bild */
    padding: 4rem 0 3rem;     /* oben/unten etwas Luft */
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.85)
    );
    z-index: -1;
}


.hero h1 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: clamp(1.8rem, 3vw, 2.1rem);
}

.hero-sub {
    font-size: 1.05rem;
    max-width: 34rem;
    color: var(--text-soft);
    margin-top: 0.5rem;
}

.hero-actions {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-meta {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.86rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease-out;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #e11d48, #b91c1c);
    border-color: #b91c1c;
    color: #fef2f2;
    box-shadow: 0 14px 35px rgba(185, 28, 28, 0.75);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 18px 42px rgba(185, 28, 28, 0.9);
}

.btn-outline {
    border-color: rgba(148, 163, 184, 0.7);
    background: rgba(10, 11, 18, 0.96);
    color: var(--text-soft);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--text);
    background: rgba(15, 23, 42, 0.96);
}

.full-width {
    width: 100%;
}

/* WhatsApp Button */

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25d366;
    color: #fff;
    padding: 0.6rem 1.05rem;
    border-radius: 999px;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
    z-index: 30;
}

/* Sections */

.section {
    padding: 3.2rem 1rem 3.4rem 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.7);
}

.section:first-of-type {
    border-top: none;
}

.section.section-dark {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(5, 6, 13, 0.98));
    box-shadow: 0 -1px 0 rgba(148, 163, 184, 0.12) inset;
}

/* Typografie innerhalb der Sections */

.section h2 {
    margin: 0 0 0.6rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.section-intro {
    max-width: 40rem;
    font-size: 0.92rem;
    color: var(--text-soft);
    margin-bottom: 1.8rem;
}

/* Card-Grids */

.cards-3,
.cards-2 {
    display: grid;
    gap: 1.4rem;
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Karten / Panels */

.card,
.portfolio-item,
.contact-form,
.auth-form {
    position: relative;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1rem;
    border: 1px solid rgba(39, 39, 47, 0.95);
    overflow: hidden;
    font-size: 0.9rem;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(224, 36, 59, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.card h3 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
}

.card-sub {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-top: 0.1rem;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
}

.card ul li {
    margin-bottom: 0.25rem;
    color: var(--text-soft);
}

.highlight {
    border-color: rgba(248, 113, 113, 0.85);
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.09), rgba(15, 23, 42, 0.98));
}

.price {
    margin: 0.4rem 0 0.7rem;
    font-weight: 600;
    color: #fecaca;
}

/* Steps */

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.step {
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid rgba(39, 39, 47, 0.95);
    padding: 0.9rem;
    font-size: 0.85rem;
}

.step-number {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 0.45rem;
}

/* CTA unter Sections */

.section-cta {
    margin-top: 1.6rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

/* Pill-Liste (Zielgruppen) */

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.4rem;
    font-size: 0.82rem;
}

.pill {
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(39, 39, 47, 0.95);
    background: rgba(10, 11, 18, 0.96);
    color: var(--text-soft);
    white-space: nowrap;
}

/* Portfolio / Pricing Grids auf Unterseiten */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

/* Formulare */

.contact-form input,
.contact-form textarea,
.auth-form input,
.auth-form textarea {
    width: 100%;
    margin-bottom: 0.7rem;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: #050509;
    color: var(--text);
    padding: 0.45rem 0.55rem;
    font: inherit;
}

.contact-form textarea,
.auth-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.auth-form input:focus,
.auth-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary-soft);
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(39, 39, 47, 0.9);
    padding: 0.9rem 0 1rem;
    background: #050509;
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: auto;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.site-footer a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.8rem;
}
.site-footer a:hover {
    color: var(--text);
}

/* Kleine Fade-Up-Animation für Sections */

.section,
.hero {
    animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 1024px) {
    .cards-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .main-nav {
        gap: 0.9rem;
        flex-wrap: wrap;
    }

    .hero {
        min-height: auto;
        padding-top: 2.6rem;
    }

    .cards-3,
    .cards-2,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .site-footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .pill {
        white-space: normal;
    }
}

/* PORTFOLIO-SEITE */

.page-portfolio .section-hero {
    padding: 4rem 8vw 2rem;
}

.section-portfolio-grid {
    padding: 0 8vw 4rem;
}

/* 3-Spalten-Grid für Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 0, 120, 0.5);
}

.portfolio-card-thumb {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.portfolio-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.portfolio-card-body h2 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.portfolio-card-category {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.4rem;
}

.portfolio-card-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ZENTRIERTER INHALT WIE STARTSEITE */
.page-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 8vw 5rem;
}

/* HERO-BEREICH PROJEKT */
.section-project-hero {
    margin-bottom: 3rem;
}

.project-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.project-hero-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.project-hero-text h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.project-category {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-services li {
    font-size: 0.95rem;
    opacity: 0.95;
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.project-services li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff2b7a;
}

.project-back-link {
    display: inline-block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

/* GALERIE-GRID */
.section-project-gallery {
    margin-top: 2rem;
}

.section-project-gallery h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    justify-items: center;
}

.project-gallery-item {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.project-gallery-item img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.project-gallery-item:hover img {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    filter: brightness(1.05);
}

/* LIGHTBOX OVERLAY */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.open {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%),
                rgba(0, 0, 0, 0.92);
}

.lightbox-content {
    position: relative;
    max-width: min(90vw, 1200px);
    max-height: 90vh;
    padding: 1rem 3.5rem;
    box-sizing: border-box;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
}

/* LIGHTBOX BUTTONS */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: none;
    background: rgba(10, 10, 15, 0.9);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.lightbox-close {
    top: 1rem;
    right: 1.4rem;
}

.lightbox-prev {
    top: 50%;
    left: 0.6rem;
    transform: translateY(-50%);
}

.lightbox-next {
    top: 50%;
    right: 0.6rem;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 43, 122, 0.95);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}

.lightbox-close:hover {
    transform: scale(1.05);
}

/* BODY SCROLL SPERREN, WENN LIGHTBOX OFFEN */
body.no-scroll {
    overflow: hidden;
}

/* RESPONSIVE FÜR PROJEKTSEITEN */
@media (max-width: 900px) {
    .project-hero-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .project-hero-image {
        order: -1;
    }

    .project-gallery-item img {
        height: 220px;
    }

    .lightbox-content {
        padding: 0.75rem 2.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .page-inner {
        padding-inline: 1.2rem;
    }

    .project-gallery-item img {
        height: 200px;
    }

    .lightbox-content {
        padding: 0.5rem 1.8rem;
    }
}

/* ===========================
   PREISE-SEITE LAYOUT
   =========================== */

.page-prices main,
.page-prices .page-main {
    padding: 4rem 0 5rem;
}

/* Alle Sections auf der Preise-Seite in eine „mittige Spalte“ holen */
.page-prices .section-intro,
.page-prices .section-offers,
.page-prices .section-process,
.page-prices .section-for-whom,
.page-prices .section-faq,
.page-prices .section-cta {
    max-width: none;
    width: 100%;
    padding-inline: 1rem;
}

.page-prices .section-intro .container,
.page-prices .section-offers .container,
.page-prices .section-process .container,
.page-prices .section-for-whom .container,
.page-prices .section-faq .container,
.page-prices .section-cta .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Einleitung auf der Preise-Seite optisch wie Textblock */

.page-prices .section-intro {
    border-top: 1px solid rgba(15, 23, 42, 0.7);
}

.page-prices .section-intro h2 {
    font-size: 1.3rem;
}

.page-prices .highlight-box {
    margin-top: 2rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(39, 39, 47, 0.95);
    padding: 1.1rem 1rem;
}

.page-prices .highlight-box .checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.page-prices .highlight-box .checklist li {
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1.1rem;
}

.page-prices .highlight-box .checklist li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
}

/* Fokus-Leistungen / Angebote */

.offers-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 2.5rem;
}

.offer-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(39, 39, 47, 0.95);
    padding: 1.6rem 1.4rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    font-size: 0.92rem;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(224, 36, 59, 0.14), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    pointer-events: none;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card h3 {
    margin: 0.4rem 0 0.4rem;
    font-size: 1.1rem;
}

.offer-lead {
    color: var(--text-soft);
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
}

.offer-content h4 {
    margin: 0.9rem 0 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.offer-content ul {
    margin: 0.25rem 0 0.7rem;
    padding-left: 1.1rem;
}

.offer-price-hint {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-soft);
}

/* Badges / Tags */

.badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(224, 36, 59, 0.16);
    color: #fecaca;
}

.badge-secondary {
    background: rgba(59, 130, 246, 0.16);
    color: #bfdbfe;
}

.badge-accent {
    background: rgba(16, 185, 129, 0.16);
    color: #a7f3d0;
}

.tags {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.tags li {
    padding: 0.24rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--text-soft);
}

/* Prozess-Section */

.section-process h2 {
    margin-bottom: 1.6rem;
}

.process-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid rgba(39, 39, 47, 0.95);
    padding: 1.1rem 1rem;
    font-size: 0.9rem;
}

.process-step .step-number {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}

/* Für wen-Section */

.section-for-whom .container {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
}

@media (max-width: 900px) {
    .section-for-whom .container {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* FAQ-Section */

.faq-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.faq-item {
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid rgba(39, 39, 47, 0.95);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 500;
}

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

.faq-item summary::after {
    content: "+";
    float: right;
    opacity: 0.7;
}

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

.faq-item p {
    margin-top: 0.45rem;
    color: var(--text-soft);
}

/* CTA unten */

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

.section-cta h2 {
    margin-bottom: 0.6rem;
}

.section-cta p {
    margin-bottom: 1.4rem;
}

.section-cta .hero-actions {
    justify-content: center;
}

.site-footer .footer-col {
    flex: 1 1 0;
}
@media (max-width: 720px) {
    .site-footer .footer-col {
        width: 100%;
    }
}
