/* Landing-spezifische Layouts (Header, Hero, Trust, Pricing, FAQ) */

/* Landing-Header: gleiche Breite + Seitenabstände wie Hero-Inhalt */
body.landing-page .header-shell__container.container{
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(1.6rem, 5vw, 4.2rem);
    padding-right: clamp(1.6rem, 5vw, 4.2rem);
}

.hero {
    margin-bottom: 1.5rem;
}

/* Hero wie drmueller: großes Cover-Background + Overlay */
#top .card.card-feature.hero{
    position: relative;
    overflow: hidden;
    background-image: url('/assets/landing/hero_big.jpg');
    background-size: cover;
    background-position: center 28%;
    background-repeat: no-repeat;
    color: #fff;
}

/* Overlay für Lesbarkeit – fokussiert den Textbereich */
#top .card.card-feature.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(5,6,12,0.92) 0%,
            rgba(5,6,12,0.82) 32%,
            rgba(5,6,12,0.58) 56%,
            rgba(5,6,12,0.26) 78%,
            rgba(5,6,12,0.0) 100%);
}

/* Dezenter unterer Fade zur Folgesektion – Endfarbe = Start des Body-Verlaufs (keine harte Kante) */
#top .card.card-feature.hero::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    background: linear-gradient(
        180deg,
        rgba(229, 233, 240, 0) 0%,
        rgba(229, 233, 240, 0.08) 35%,
        rgba(229, 233, 240, 0.18) 70%,
        rgba(229, 233, 240, 0.32) 100%
    );
    pointer-events: none;
}

/* Inhalt über Overlay */
#top .card.card-feature.hero .hero-inner{
    position: relative;
    z-index: 1;
}

/* Rechtsbild im Hero ausblenden (sonst doppelt) */
.card.card-feature.hero .hero__right{
    display: none;
}

/* Muted Text im Hero heller */
.card.card-feature.hero .muted{
    color: rgba(255,255,255,.78);
}

/* Mobile: Overlay vertikal + Bildposition etwas nach oben */
@media (max-width: 640px){
    #top .card.card-feature.hero{
        background-position: center 18%;
    }
    #top .card.card-feature.hero::before{
        background:
            radial-gradient(circle at 24% 18%,
                rgba(5,6,12,0.92) 0%,
                rgba(5,6,12,0.85) 26%,
                rgba(5,6,12,0.68) 54%,
                rgba(5,6,12,0.30) 78%,
                rgba(5,6,12,0.0) 100%);
    }
}

/* Full-bleed Hero wie drmueller (Section bricht aus dem .container aus) */
#top.section.section--wide{
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 0;
    padding-right: 0;
    overflow-x: clip; /* verhindert horizontales "Wackeln" */
}

/* Card-Look weg -> wirklich Hero-Fläche */
#top .card.card-feature.hero{
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh; /* Fallback */
    display: flex;
    align-items: flex-start;
    background-position: center 25%;
}

@supports (height: 100dvh) {
    body.landing-page #top .card.card-feature.hero{
        min-height: 100dvh;
    }
}

@supports (height: 100svh) {
    body.landing-page #top .card.card-feature.hero{
        min-height: 100svh;
    }
}

/* Inhalt bleibt in schöner Breite wie Container; fester, ruhiger Abstand nach oben */
#top .card.card-feature.hero .hero-inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(2.0rem, 5vw, 4rem) clamp(1.6rem, 5vw, 4.2rem);
    padding-top: clamp(3.4rem, 6vw, 4.4rem);
}

/* Textblock nicht zu breit + klarer Startpunkt */
#top .hero__left{
    max-width: 620px;
    margin-top: 0.4rem;
}

/* Hero-Titel: dezent „Gold-Folie“ + Glanz nur bei Hover */
#top .hero__left h1{
  /* Fallback */
  color: #d6b56b;

  /* Goldverlauf */
  background: linear-gradient(90deg,
    #b88a2a 0%,
    #f1d48a 22%,
    #d6b56b 45%,
    #fff1c7 58%,
    #c79a3a 78%,
    #d6b56b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Tiefe + dezente Prägung */
  text-shadow:
    0 2px 14px rgba(0,0,0,.55),        /* bestehende Tiefe */
    0 -1px 0 rgba(255,255,255,.08),    /* mini highlight oben */
    0 1px 0 rgba(0,0,0,.20);           /* mini shade unten */

  /* Mobile-first Typografie */
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  max-width: 13.5ch;
  margin: 0;

  /* Hover-Glanz vorbereiten */
  background-size: 180% 100%;
  background-position: 0% 50%;
  transition: background-position 900ms ease;
}

/* Glanz fährt nur bei Hover drüber */
#top .hero__left h1:hover{
  background-position: 100% 50%;
}

/* Unterüberschrift im Hero: ruhige, silbergraue H3-Ebene */
#top .hero__left .hero__subtitle{
  color: #d3d8e8; /* silbergrau, gut lesbar auf dunklem Hintergrund */
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  line-height: 1.3;
  font-weight: 500;
  margin-top: 0.45rem;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

/* Hero-Lead unter dem Titel: etwas helleres Silber nur im Hero */
#top .hero__left p.lead{
  /* Fallback */
  color: #e3e7f5;

  /* Silber-Verlauf (heller) */
  background: linear-gradient(90deg,
    #c5cad8 0%,
    #edf1ff 28%,
    #ffffff 50%,
    #dde1f0 74%,
    #c0c5d3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* ganz leichtes Embossing für Lesbarkeit */
  text-shadow:
    0 1px 8px rgba(0,0,0,.55),
    0 -1px 0 rgba(255,255,255,.10),
    0 1px 0 rgba(0,0,0,.35);

  /* Mobile-first Typografie für Fließtext – leicht unter der Unterüberschrift */
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  line-height: 1.5;
  max-width: 35ch;
  margin-top: 0.55rem;
  margin-bottom: 0;
}

/* CTA-Block + Hinweis im Hero: vertikale Rhythmik aus CSS statt Inline-Styling */
#top .hero__cta-row{
  margin-top: 1.1rem;
}

#top .hero__note{
  font-size: 0.78rem;
  margin-top: 0.55rem;
  text-align: left;
  max-width: 34ch;
  margin-left: 0;
  margin-right: 0;
  opacity: 0.74;
}

/* Desktop: Fließtext minimal ruhiger führen */
@media (min-width: 960px){
  #top .hero__left p.lead{
    line-height: 1.6;
    max-width: 38ch;
  }
}

/* CTA im Hero: dezenter, goldener Premium-Button passend zum Hero-Look */
#top .hero__cta-row .btn-primary{
  background: linear-gradient(135deg,
    #b88a2a 0%,
    #f1d48a 38%,
    #d6b56b 68%,
    #a8742a 100%);
  color: #111827;
  border-color: rgba(248, 250, 252, 0.35);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.45),
    0 0 0 1px rgba(15,23,42,0.48);
}

#top .hero__cta-row .btn-primary:hover{
  background: linear-gradient(135deg,
    #c89a32 0%,
    #ffe4a8 40%,
    #e0bf73 75%,
    #b77c2e 100%);
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.55),
    0 0 0 1px rgba(15,23,42,0.5);
}

/* Mobile: Textblock schmaler, ruhiger zentriert */
@media (max-width: 640px){
    #top .hero__left{
        margin-top: 3.4rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 32ch;
    }
    #top .card.card-feature.hero{
        background-position: center top;
    }
}

/* Mobile: bewusst mehr Luft zwischen Lead und CTA + ruhiger Hinweisabstand */
@media (max-width: 640px){
  #top .hero__cta-row{
    margin-top: 1.3rem;
  }

  #top .hero__note{
    margin-top: 0.55rem;
  }
}

#top .hero-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

#top .hero__left,
#top .hero__right {
    flex: 1 1 260px;
    min-width: 0;
}

#top .hero__image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 640px) {
    #top .hero-inner {
        align-items: flex-start;
        padding: 1.35rem 1.4rem 1.1rem;
    }
}

/* Weicher vertikaler Verlauf für die gesamte Landingpage (Body) – sichtbar, aber dezent */
body.landing-page {
    min-height: 100vh;
    background: linear-gradient(
        180deg,
        #e5e9f0 0%,
        #eef1f6 18%,
        #f4f6fa 40%,
        #f9fafc 65%,
        #fafbfe 80%,
        #fbfcff 88%,
        #fcfdff 93%,
        #fdfdff 97%,
        #ffffff 100%
    );
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Konzept-Block: luftige 2-Spalten-Sektion unter dem Hero */
.section--concept {
    margin-top: 2.25rem;
}

.concept {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.concept .concept-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    border-top: none;
    padding-top: 1.75rem;
}

.concept__left,
.concept__right {
    flex: 1 1 260px;
    min-width: 0;
}

.concept__left {
    max-width: 620px;
}

.concept-list {
    margin: 0.85rem 0 0.5rem;
    padding-left: 1.1rem;
    font-size: 0.96rem;
}

.concept-list li + li {
    margin-top: 0.25rem;
}

.concept__note {
    margin-top: 0.5rem;
}

.concept__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

@media (max-width: 720px) {
    .concept .concept-inner {
        align-items: flex-start;
        border-top: none;
        padding-top: 1.25rem;
    }
}

/* B4E Explorer: interaktive Bühne direkt unter dem Hero */
.section--b4e-explorer {
    margin-top: 1.25rem;
}

.b4e-explorer {
    border-radius: var(--ui-radius-md);
    /* background: var(--ui-surface); */
    padding: 1.4rem 1.5rem 1.6rem;
    color: var(--ui-text);
    border: 1px solid var(--ui-border);
    box-shadow: var(--ui-shadow-soft);
}

.b4e-explorer__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ui-text-muted);
    margin: 0 0 0.25rem;
}

.b4e-explorer__headline {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    letter-spacing: 0.01em;
}

.b4e-explorer__intro {
    margin: 0.55rem 0 0.9rem;
    max-width: 46ch;
    color: var(--ui-text-muted);
    font-size: 0.98rem;
}

.b4e-explorer__body {
    margin-top: 0.6rem;
}

.b4e-explorer__rail {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: absolute;
    z-index: 2;
    top: 1.4rem;
    left: var(--b4e-explorer-rail-left, 1.4rem);
    max-width: 240px;
}

.b4e-explorer__pills {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.b4e-explorer__pill {
    border: 1px solid var(--ui-border);
    background: var(--ui-surface);
    color: var(--ui-text-muted);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-size: 0.84rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    white-space: nowrap;
    transition:
        background-color var(--ui-transition-fast),
        border-color var(--ui-transition-fast),
        color var(--ui-transition-fast),
        box-shadow var(--ui-transition-fast),
        transform 160ms ease-out;
}

.b4e-explorer__pill:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--ui-shadow-soft);
    transform: translateY(-0.5px);
}

.b4e-explorer__pill.is-active {
    background: #e5e9f0;
    border-color: rgba(72, 74, 77, 0.25);
    color: var(--ui-primary-strong);
    font-weight: bolder;
}

.b4e-explorer__pill:focus-visible {
    outline: 2px solid #facc15;
    outline-offset: 2px;
}

.b4e-explorer__stage {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 520px;
    background: linear-gradient(135deg, #e5e9f0 0%, #f7fafc 35%, #ffffff 100%);
    isolation: isolate;
    /* Desktop-Anker für linke Navigationsspalte (Pills + Detail-Navigation) */
    --b4e-explorer-rail-left: 1.4rem;
    --b4e-explorer-rail-column-width: 220px;
    --b4e-explorer-rail-gap: 0.6rem;
    --b4e-explorer-detail-nav-left: calc(
        var(--b4e-explorer-rail-left) +
        var(--b4e-explorer-rail-column-width) +
        var(--b4e-explorer-rail-gap)
    );
}

.b4e-explorer__visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.b4e-explorer__visual-inner {
    width: 100%;
    height: 100%;
}

[data-b4e-explorer-image] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.b4e-explorer__panel {
    border-radius: var(--ui-radius-md);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.45);
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    backdrop-filter: blur(6px);
}

.b4e-explorer__panel-title {
    margin: 0;
    font-size: 1.02rem;
    color: var(--ui-text);
    display: none;
}

.b4e-explorer__panel-text {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--ui-text-muted);
}

.b4e-explorer__close {
    position: absolute;
    top: 0.85rem;
    right: 0.9rem;
    z-index: 3;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ui-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
    transition:
        background-color var(--ui-transition-fast),
        color var(--ui-transition-fast),
        box-shadow var(--ui-transition-fast),
        transform 120ms ease-out;
}

.b4e-explorer__close:hover {
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
    transform: translateY(-1px);
}

.b4e-explorer__close:focus-visible {
    outline: 2px solid #facc15;
    outline-offset: 2px;
}

.b4e-explorer__detail-nav {
    position: absolute;
    top: 50%;
    left: var(--b4e-explorer-detail-nav-left, calc(1.4rem + 220px + 0.6rem));
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    z-index: 2;
}

.b4e-explorer__detail-nav-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ui-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
    transition:
        background-color var(--ui-transition-fast),
        color var(--ui-transition-fast),
        box-shadow var(--ui-transition-fast),
        transform 120ms ease-out;
}

.b4e-explorer__detail-nav-icon {
    display: inline-block;
}

.b4e-explorer__detail-nav-icon--prev {
    transform: rotate(0deg);
}

.b4e-explorer__detail-nav-icon--next {
    transform: rotate(180deg);
}

.b4e-explorer__detail-nav-btn:hover {
    background: #ffffff;
    color: var(--ui-primary-strong);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
    transform: translateY(-1px);
}

.b4e-explorer__detail-nav-btn:focus-visible {
    outline: 2px solid #facc15;
    outline-offset: 2px;
}

.b4e-explorer__panel[hidden],
[data-b4e-explorer-detail][hidden] {
    display: none;
}

.b4e-explorer--preview .b4e-explorer__panel {
    display: none;
}

.b4e-explorer--open .b4e-explorer__panel {
    display: flex;
}

.b4e-explorer--open .b4e-explorer__detail-nav {
    display: flex;
}

.b4e-explorer--open .b4e-explorer__close {
    display: inline-flex;
}

.b4e-explorer--image-only .b4e-explorer__panel {
    display: none;
}

.b4e-explorer--image-only .b4e-explorer__detail-nav {
    display: none;
}

.b4e-explorer--image-only .b4e-explorer__close {
    display: inline-flex;
}

@media (min-width: 721px) {
    .b4e-explorer__stage {
        --b4e-explorer-nav-offset-x: 0px;
        /* Desktop-Varianten der Anker explizit setzen */
        --b4e-explorer-rail-left: 1.4rem;
        --b4e-explorer-rail-column-width: 220px;
        --b4e-explorer-rail-gap: 0.6rem;
        --b4e-explorer-detail-nav-left: calc(
            var(--b4e-explorer-rail-left) +
            var(--b4e-explorer-rail-column-width) +
            var(--b4e-explorer-rail-gap)
        );
    }

    .b4e-explorer__stage::before {
        content: "";
        position: absolute;
        top: 0.9rem;
        left: 1.0rem;
        bottom: 0.9rem;
        width: min(320px, 65%);
        border-radius: 18px;
        background: linear-gradient(
            135deg,
            rgba(35, 59, 84, 0.16),
            rgba(205, 217, 233, 0.26)
        );
        /* border: 1px solid rgba(148, 163, 184, 0.45); */
        box-shadow: 0 18px 380px rgba(9, 130, 250, 0.35);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(14px);
        opacity: 0;
        pointer-events: none;
        z-index: 1;
        transition:
            opacity var(--ui-transition-fast),
            transform var(--ui-transition-fast);
        transform: translateX(var(--b4e-explorer-nav-offset-x, 0px));
    }

    .b4e-explorer--open .b4e-explorer__stage::before {
        opacity: 1;
    }

    .b4e-explorer__panel {
        box-sizing: border-box;
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        margin-top: 0.15rem;
        background: #ffffff;
        border-radius: var(--ui-radius-md);
        border: 1px solid rgba(148, 163, 184, 0.55);
        padding: 0.55rem 0.75rem;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    }

    .b4e-explorer__panel-text {
        color: var(--ui-text);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .b4e-explorer__pill--slot-hidden {
        display: none;
    }

    .b4e-explorer__rail {
        transform: translateX(var(--b4e-explorer-nav-offset-x, 0px));
    }

    /* Desktop: Close-X im offenen Zustand innerhalb der vertikalen Detail-Navigation stapeln */
    .b4e-explorer--open .b4e-explorer__detail-nav {
        align-items: center;
    }

    .b4e-explorer--open .b4e-explorer__detail-nav .b4e-explorer__close {
        position: static;
        margin-bottom: 0.5rem;
    }

    .b4e-explorer__rail-draggable {
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
        will-change: transform;
    }

    .b4e-explorer__rail-draggable--dragging {
        cursor: grabbing;
    }


}

@media (max-width: 720px) {
    .b4e-explorer {
        padding: 1.1rem 1rem 1.3rem;
    }

    .b4e-explorer__stage {
        min-height: 280px;
    }

    .b4e-explorer__rail {
        position: absolute;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: none;
        padding: 0.6rem 0.7rem 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        z-index: 2;
    }

    .b4e-explorer__pills {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.45rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        -webkit-overflow-scrolling: touch;
    }

    .b4e-explorer__pill {
        flex: 0 0 auto;
        white-space: nowrap;
        text-align: center;
        padding: 0.5rem 0.8rem;
    }

    .b4e-explorer__panel {
        position: relative;
        margin-top: 0.35rem;
        padding-bottom: 3rem;
    }

    .b4e-explorer--open .b4e-explorer__pills {
        display: none;
    }

    .b4e-explorer__detail-nav {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.4rem;
        top: auto;
        transform: none;
        display: none;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 0.55rem;
        pointer-events: none;
    }

    .b4e-explorer__detail-nav-btn {
        pointer-events: auto;
    }

    .b4e-explorer__detail-nav-icon--prev {
        transform: rotate(-90deg);
    }

    .b4e-explorer__detail-nav-icon--next {
        transform: rotate(90deg);
    }

    .b4e-explorer--open .b4e-explorer__detail-nav {
        display: flex;
    }
}

/* Feature-Reihen: Text/Bild abwechselnd wie bei drmueller */
.section--feature {
    margin-top: 1.75rem;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.feature-row.feature-row--reverse {
    flex-direction: row-reverse;
}

.feature-row__content,
.feature-row__media {
    flex: 1 1 260px;
    min-width: 0;
}

.feature-row__content {
    max-width: 640px;
}

.feature-list {
    margin: 0.9rem 0 0.4rem;
    padding-left: 1.1rem;
    font-size: 0.96rem;
}

.feature-list li + li {
    margin-top: 0.25rem;
}

.feature-steps {
    margin: 0.75rem 0 0.25rem;
    padding-left: 1.25rem;
    font-size: 0.96rem;
}

.feature-steps li + li {
    margin-top: 0.3rem;
}

.feature-row__image-placeholder {
    width: 100%;
    min-height: 210px;
    border-radius: 14px;
    background: radial-gradient(circle at 0% 0%, #1f2937 0%, #020617 40%, #020617 80%);
    opacity: 0.9;
}

.feature-row__image-placeholder--alt {
    background: radial-gradient(circle at 100% 0%, #0f172a 0%, #020617 50%, #020617 90%);
}

@media (max-width: 720px) {
    .feature-row,
    .feature-row.feature-row--reverse {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Trust Row */

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.82rem;
    color: var(--ui-text-muted);
    margin-bottom: 0.75rem;
}

.trust-row__item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.trust-row__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--ui-accent);
}

/* Pricing / Pakete */

.section--pricing {
    margin-top: 2rem;
}

.pricing {
    margin-top: 0.25rem;
}

.pricing__intro {
    margin-top: 0.3rem;
}

.pricing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin: 1.1rem 0 0.6rem;
}

.pricing-box {
    border-radius: var(--ui-radius-md);
    background: var(--ui-surface);
    border: 1px solid var(--ui-border);
    padding: 0.9rem 1rem;
}

.pricing-box h3 {
    margin-top: 0;
    margin-bottom: 0.15rem;
}

.pricing-box p.muted {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
}

.pricing-box ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.95rem;
}

.pricing-box ul li + li {
    margin-top: 0.25rem;
}

.pricing-box--highlight {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--ui-shadow-soft);
}

.pricing__note {
    font-size: 0.85rem;
}

@media (min-width: 720px) {
    .pricing-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* FAQ */

.section--faq {
    margin-top: 2rem;
}

.faq-shell {
    border-radius: var(--ui-radius-md);
    background: var(--ui-surface);
    border: 1px solid var(--ui-border);
    padding: 1rem 1.1rem;
}

.faq__intro {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--ui-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__question {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.faq-item__answer {
    margin: 0;
}

.faq-item .faq-item__answer[hidden] {
    display: none;
}

.faq-item.is-open .faq-item__question {
    color: var(--ui-primary-strong);
}

/* Reveal-on-scroll States */

[data-reveal] {
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity var(--ui-transition-fast),
        transform var(--ui-transition-fast);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero-Bild nicht mehr mit negativen Margins verschieben – Offset kommt über Padding im Inhalt */
.header-shell + .container #top .card.card-feature.hero,
.header-shell.is-scrolled + .container #top .card.card-feature.hero{
  margin-top: 0;
}

/* Footer im Stil von drmueller: dunkler Block mit Spalten */
.site-footer {
    width: 100vw;
    margin: 2.25rem calc(50% - 50vw) 0;
    background: #050608;
    color: #e5e7eb;
    padding: 2rem 0 1.75rem;
    font-size: 0.9rem;
}

.site-footer a {
    color: #a7f3d0;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.1rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.site-footer__col h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.site-footer__col p {
    margin: 0 0 0.4rem;
}

.site-footer__col ul {
    list-style: none;
    margin: 0.1rem 0 0;
    padding: 0;
}

.site-footer__col ul li + li {
    margin-top: 0.2rem;
}

.site-footer__meta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(55, 65, 81, 0.8);
    font-size: 0.8rem;
    color: #9ca3af;
}

@media (min-width: 720px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

