/*
 * Startseite (index.php) — Story-Landing mit full-width Farbbändern.
 * Farben: Eagle-Amber + neutrale Flächen (kein Regenbogen-Layout).
 */

body.home-page {
    --home-gap-outer: clamp(48px, 7vw, 88px);
    --home-gap-inner: clamp(32px, 4.5vw, 56px);
    --home-gap-band-y: clamp(56px, 6vw, 80px);
    background: var(--bg-app);
}

body.home-page .home-main {
    display: flex;
    flex-direction: column;
    gap: var(--home-gap-outer);
    min-height: 0;
    padding-bottom: var(--home-gap-outer);
}

/* .shell hat global min-height:100dvh — auf der Startseite pro Block deaktivieren */
body.home-page .shell,
body.home-page .home-shell {
    min-height: 0;
    gap: 0;
}

body.home-page .home-shell {
    display: flex;
    flex-direction: column;
    gap: var(--home-gap-inner);
    padding: 0 24px;
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
}

body.home-page .home-main > .home-shell:first-child {
    padding-top: 28px;
}

body.home-page .home-shell--footer {
    padding-top: 0;
    padding-bottom: 0;
    gap: 0;
    margin-top: calc(var(--home-gap-outer) * -0.35);
}

body.home-page .home-band .shell {
    padding: 0 24px;
    gap: var(--home-gap-inner);
}

/* -------------------------------------------------------------------------
 * Full-width Farbbänder
 * ------------------------------------------------------------------------- */

body.home-page .home-band {
    width: 100%;
    padding: var(--home-gap-band-y) 0;
    margin: 0;
}

body.home-page .home-band__inner {
    display: flex;
    flex-direction: column;
    gap: var(--home-gap-inner);
}

body.home-page .home-band__inner--center {
    align-items: center;
    text-align: center;
    gap: calc(var(--home-gap-inner) * 0.75);
}

body.home-page .home-band__head {
    margin-bottom: 4px;
}

body.home-page .home-band__head h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--text-heading);
}

body.home-page .home-band__head p {
    margin: 0;
    max-width: 58ch;
    line-height: 1.6;
    font-size: 16px;
    color: var(--text-secondary);
}

body.home-page .home-band__head--center {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

body.home-page .home-band__head--center p {
    max-width: 52ch;
}

/* Trust — neutral, dezente Tiefe */
body.home-page .home-band--trust {
    background: var(--bg-surface);
    border-block: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] body.home-page .home-band--trust {
    background: var(--bg-surface);
    border-block-color: var(--border-color);
}

body.home-page .home-band--trust .home-band__head h2 {
    color: var(--text-heading);
}

body.home-page .home-trust__item {
    background: var(--bg-surface-2);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

body.home-page .home-trust__icon {
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent);
    border: 1px solid rgba(217, 119, 6, 0.18);
}

[data-theme="dark"] body.home-page .home-trust__icon {
    background: rgba(217, 119, 6, 0.15);
    color: #fbbf24;
    border-color: rgba(217, 119, 6, 0.3);
}

body.home-page .home-trust__title {
    color: var(--text-heading);
}

body.home-page .home-trust__desc {
    color: var(--text-secondary);
    opacity: 1;
}

/* Szenario — dezente Warnfläche */
body.home-page .home-band--scenario {
    background: var(--bg-surface-2);
    border-block: 1px solid var(--border-color);
}

body.home-page .home-band--scenario .home-scenario {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

body.home-page .home-band--scenario .home-scenario__item {
    background: var(--bg-surface);
}

/* Phasen — App-Hintergrund */
body.home-page .home-band--phases {
    background: var(--bg-app);
    border-block: 1px solid var(--border-color);
}

body.home-page .home-band--phases .home-phase {
    background: var(--bg-surface);
}

/* Gründer — neutrale Fläche mit dezenter Wärme */
body.home-page .home-band--founder {
    background: var(--bg-surface);
    border-block: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] body.home-page .home-band--founder {
    background: var(--bg-surface-2);
    border-block-color: var(--border-color);
}

body.home-page .home-band--founder .home-band__eyebrow,
body.home-page .home-band--founder .eyebrow {
    color: var(--accent);
}

body.home-page .home-band--founder .home-founder {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

body.home-page .home-band--founder .home-founder__quote,
body.home-page .home-band--founder .home-founder__cite {
    color: var(--text-heading);
}

body.home-page .home-band--founder .home-founder__body,
body.home-page .home-band--founder .home-founder__role {
    color: var(--text-secondary);
}

/* Abschluss-CTA — Design-Kit Gradient */
body.home-page .home-band--cta {
    background-image: var(--mkt-cta-bg), linear-gradient(135deg, #b45309 0%, var(--accent) 55%, #f59e0b 100%);
    background-size: cover, auto;
    background-position: center, center;
    color: #fffbeb;
    padding: calc(var(--home-gap-band-y) * 1.1) 0;
}

[data-theme="dark"] body.home-page .home-band--cta {
    background: linear-gradient(135deg, #78350f 0%, #b45309 100%);
}

body.home-page .home-band--cta h2 {
    margin: 0;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    max-width: 22ch;
    color: #fff;
}

body.home-page .home-band--cta .home-band__inner > p {
    margin: 0;
    max-width: 46ch;
    font-size: 17px;
    line-height: 1.6;
    color: #fffbeb;
    opacity: 0.95;
}

body.home-page .home-band-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 4px;
}

body.home-page .home-band-cta__btn {
    min-width: 200px;
}

body.home-page .home-band-cta__btn.btn--primary {
    background: #fff;
    color: #9a3412;
    border-color: #fff;
}

body.home-page .home-band-cta__btn.btn--primary:hover {
    background: #fff7ed;
    border-color: #fff7ed;
    color: #7c2d12;
}

body.home-page .home-band-cta__btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

body.home-page .home-band-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

body.home-page .home-band-cta__badges {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fffbeb;
    opacity: 0.92;
}

body.home-page .home-band-cta__badges li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

body.home-page .home-band-cta__badges li::before {
    content: "✓";
    font-size: 12px;
    opacity: 0.85;
}

/* -------------------------------------------------------------------------
 * Trust-Grid
 * ------------------------------------------------------------------------- */

body.home-page .home-trust__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    body.home-page .home-trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

body.home-page .home-trust__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 20px;
    border-radius: 14px;
}

body.home-page .home-trust__icon {
    display: none;
}

body.home-page .home-trust__title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: inherit;
}

body.home-page .home-trust__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    opacity: 0.92;
}

/* -------------------------------------------------------------------------
 * Hero & Sektionen (schmal)
 * ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
 * Hero — zweispaltig mit Produkt-Mockup
 * ------------------------------------------------------------------------- */

body.home-page .home-hero {
    padding-block: clamp(16px, 2.5vw, 36px);
}

body.home-page .home-hero__grid {
    display: grid;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

@media (min-width: 900px) {
    body.home-page .home-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 44%);
        column-gap: clamp(48px, 5vw, 80px);
    }
}

body.home-page .home-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.home-page .home-hero__visual {
    position: relative;
    padding-inline: clamp(4px, 1vw, 12px);
}

@media (max-width: 899px) {
    body.home-page .home-hero__visual {
        margin-top: clamp(24px, 5vw, 40px);
        padding-inline: 0;
    }
}

@media (min-width: 900px) {
    body.home-page .home-hero__visual {
        padding-inline-start: clamp(16px, 2.5vw, 32px);
        padding-inline-end: 0;
    }

    body.home-page .home-hero__visual .mkt-hero-visual {
        margin-inline: auto 0;
        max-width: min(100%, 520px);
    }

    body.home-page .home-hero__visual .mkt-hero-visual__aurora {
        inset: -6% 0 -4% 4%;
        width: calc(100% + 8%);
    }
}

body.home-page .home-hero h1 {
    max-width: 22ch;
    font-size: clamp(32px, 4.8vw, 52px);
    line-height: 1.08;
}

body.home-page .home-hero__bullets {
    list-style: none;
    margin: 2px 0 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 56ch;
}

body.home-page .home-hero__bullets li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-primary);
    font-weight: 500;
}

body.home-page .home-hero__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #29abe2;
    box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.2);
}

[data-theme="dark"] body.home-page .home-hero__bullets li::before {
    background: #67e8f9;
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.15);
}

body.home-page .home-hero__lead {
    max-width: 58ch;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-secondary);
}

body.home-page .home-hero__lead p {
    margin: 0;
}

body.home-page .home-hero__chips {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.home-page .home-chip {
    font-size: 13px;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] body.home-page .home-chip {
    background: var(--bg-surface-2);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

body.home-page .home-sec__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 52ch;
    margin-bottom: 8px;
}

body.home-page .home-sec__head + .home-problems__grid,
body.home-page .home-sec__head + .home-audiences__grid,
body.home-page .home-sec__head + .home-faq__list {
    margin-top: 4px;
}

body.home-page .home-problems,
body.home-page .home-audiences,
body.home-page .home-faq,
body.home-page .home-hero,
body.home-page .cards,
body.home-page .pricing {
    padding-block: 4px;
}

body.home-page .home-sec__head h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--text-heading);
}

body.home-page .home-problems__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    body.home-page .home-problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

body.home-page .home-problem {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: var(--card-shadow);
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

body.home-page .home-problem:hover {
    border-color: var(--border-color-strong);
    box-shadow: var(--card-shadow-hover);
}

body.home-page .home-problem__title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-heading);
}

body.home-page .home-problem__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-secondary);
}

body.home-page .home-scenario {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.home-page .home-scenario__title {
    margin: 0;
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 700;
    color: var(--text-heading);
}

body.home-page .home-scenario__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.home-page .home-scenario__item {
    display: grid;
    gap: 4px 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--bg-surface-2);
    border: 1px solid var(--border-color);
}

@media (min-width: 640px) {
    body.home-page .home-scenario__item {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }
}

body.home-page .home-scenario__when {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

body.home-page .home-scenario__text {
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.45;
}

body.home-page .home-scenario__loss {
    font-size: 13px;
    font-weight: 600;
    color: #b45309;
}

[data-theme="dark"] body.home-page .home-scenario__loss {
    color: #fbbf24;
}

body.home-page .home-scenario__foot {
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
}

body.home-page .home-audiences__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 640px) {
    body.home-page .home-audiences__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

body.home-page .home-audiences__grid > li {
    display: flex;
    min-height: 100%;
}

body.home-page .home-audience-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0;
    box-shadow: var(--card-shadow);
    transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

body.home-page .home-audience-card__illus {
    display: block;
    width: 100%;
    height: 172px;
    object-fit: contain;
    object-position: center;
    padding: 14px 18px;
    box-sizing: border-box;
    background: var(--bg-surface-2);
    border-bottom: 1px solid var(--border-color);
}

body.home-page .home-audience-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
    padding: 20px;
    min-height: 0;
}

body.home-page .home-audience-card__label,
body.home-page .home-audience-card__title,
body.home-page .home-audience-card__pain,
body.home-page .home-audience-card__link {
    padding-inline: 0;
}

body.home-page .home-audience-card:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow-hover);
    text-decoration: none;
}

body.home-page .home-audience-card__label {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

body.home-page .home-audience-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.35;
    min-height: calc(2 * 1.35 * 1em);
}

body.home-page .home-audience-card__pain {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    flex: 1 1 auto;
    min-height: 1.5em;
}

body.home-page .home-audience-card__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    padding-top: 4px;
}

body.home-page .home-phases__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.home-page .home-phase {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: var(--card-shadow);
    display: grid;
    gap: 8px;
}

body.home-page .home-phase__step {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
}

body.home-page .home-phase__title {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-heading);
}

body.home-page .home-phase__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-secondary);
}

body.home-page .home-phase__ideal {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.45;
}

body.home-page .home-founder {
    display: grid;
    gap: 24px;
    align-items: start;
}

@media (min-width: 720px) {
    body.home-page .home-founder {
        grid-template-columns: minmax(200px, 260px) 1fr;
    }
}

body.home-page .home-founder__photo-wrap {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

body.home-page .home-founder__photo {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

body.home-page .home-founder__cite {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
}

body.home-page .home-founder__role {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

body.home-page .home-founder__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.home-page .home-founder__quote {
    margin: 0;
    font-size: clamp(18px, 2.4vw, 22px);
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: -0.01em;
}

body.home-page .home-founder__quote::before {
    content: "\201E";
}

body.home-page .home-founder__quote::after {
    content: "\201C";
}

body.home-page .home-founder__body {
    font-size: 16px;
    line-height: 1.6;
}

body.home-page .home-founder__body p {
    margin: 0 0 12px;
}

body.home-page .home-founder__body p:last-child {
    margin-bottom: 0;
}

body.home-page .home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.home-page .home-faq__item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0 16px;
}

body.home-page .home-faq__q {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-heading);
    padding: 16px 0;
    list-style: none;
}

body.home-page .home-faq__q::-webkit-details-marker {
    display: none;
}

body.home-page .home-faq__a {
    padding: 0 0 16px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-secondary);
}

body.home-page .home-faq__a p {
    margin: 0;
}

/* Produkt-Feature-Grid */
body.home-page .home-product {
    padding-block: 4px;
}

body.home-page .home-product__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    body.home-page .home-product__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    body.home-page .home-product__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

body.home-page .home-product__item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

body.home-page .home-product__item:hover {
    border-color: rgba(217, 119, 6, 0.35);
    box-shadow: var(--card-shadow-hover);
}

body.home-page .home-product__item h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-heading);
}

body.home-page .home-product__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* Free-Tool Teaser (Preiskalkulator) */
body.home-page .home-free-tool {
    margin: 8px 0 0;
}

body.home-page .home-free-tool__card {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--card-shadow, 0 10px 28px rgba(15, 23, 42, 0.06));
}

@media (min-width: 800px) {
    body.home-page .home-free-tool__card {
        grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
        gap: 2rem;
    }
}

body.home-page .home-free-tool__copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

body.home-page .home-free-tool__copy h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-heading);
}

body.home-page .home-free-tool__lead {
    margin: 0;
    max-width: 48ch;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

body.home-page .home-free-tool__points {
    list-style: none;
    margin: 0.15rem 0 0.35rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

body.home-page .home-free-tool__points li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text-primary);
}

body.home-page .home-free-tool__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #16a34a;
}

body.home-page .home-free-tool__aside {
    border-radius: 12px;
    padding: 1rem 1.1rem 1.15rem;
    background: var(--bg-muted, rgba(0, 0, 0, 0.04));
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

body.home-page .home-free-tool__aside-label {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

body.home-page .home-free-tool__aside-price {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-heading);
}

body.home-page .home-free-tool__aside-net {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

body.home-page .home-free-tool__ampel {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
    background: rgba(22, 163, 74, 0.1);
}

body.home-page .home-free-tool__ampel-bar {
    display: block;
    height: 7px;
    width: 42%;
    border-radius: 999px;
    background: #16a34a;
    margin-bottom: 0.2rem;
}

body.home-page .home-free-tool__ampel strong {
    color: #15803d;
    font-size: 0.95rem;
}

body.home-page .home-free-tool__ampel span {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

@media (max-width: 799px) {
    body.home-page .home-free-tool__aside {
        order: -1;
    }
}

/* -------------------------------------------------------------------------
 * Relaunch 2026-07 — Screens, Tour, Compare, linked problem cards
 * ------------------------------------------------------------------------- */

.mkt-screen {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-elevated, #fff);
    border: 1px solid var(--border-subtle, rgba(0,0,0,.08));
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.mkt-screen__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: #f1f5f9;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mkt-screen__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mkt-screen__dot:nth-child(1) { background: #f87171; }
.mkt-screen__dot:nth-child(2) { background: #fbbf24; }
.mkt-screen__dot:nth-child(3) { background: #34d399; }

.mkt-screen__url {
    margin-left: 8px;
    flex: 1;
    font-size: 0.72rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt-screen__viewport {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.mkt-screen__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}

.mkt-screen__placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, #1e293b 0%, #334155 55%, #0f172a 100%);
    color: #e2e8f0;
    text-align: center;
    padding: 24px;
}

.mkt-screen__placeholder-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid rgba(251, 191, 36, 0.55);
    background: rgba(251, 191, 36, 0.12);
}

.mkt-screen__placeholder-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.mkt-screen--phone {
    max-width: 280px;
    margin-inline: auto;
    border-radius: 28px;
    padding: 10px;
    background: #0f172a;
}

.mkt-screen--phone .mkt-screen__phone-chrome {
    height: 18px;
    position: relative;
}

.mkt-screen--phone .mkt-screen__phone-notch {
    position: absolute;
    left: 50%;
    top: 4px;
    transform: translateX(-50%);
    width: 72px;
    height: 8px;
    border-radius: 999px;
    background: #1e293b;
}

.mkt-screen--phone .mkt-screen__viewport {
    aspect-ratio: 9 / 16;
    border-radius: 18px;
}

.mkt-screen--phone .mkt-screen__chrome { display: none; }

body.home-page .home-hero__h1-em {
    display: block;
    margin-top: 0.35em;
    color: var(--accent, #c2410c);
}

body.home-page .home-hero__micro {
    margin: 8px 0 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

body.home-page .home-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

body.home-page .home-trust-line li {
    position: relative;
}

body.home-page .home-trust-line li:not(:last-child)::after {
    content: "·";
    position: absolute;
    right: -0.55rem;
    color: var(--text-muted, #94a3b8);
}

body.home-page .home-problem--link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.home-page .home-problem--link:hover,
body.home-page .home-problem--link:focus-visible {
    border-color: var(--accent, #c2410c);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

body.home-page .home-problem__solution {
    margin: 0 0 12px;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text-secondary);
    flex: 1;
}

body.home-page .home-problem__more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent, #c2410c);
}

body.home-page .home-problems__foot {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

body.home-page .home-audiences__foot {
    margin-top: 18px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

body.home-page .home-tour {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 48px);
}

body.home-page .home-tour-block {
    display: grid;
    gap: 24px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 16px;
}

@media (min-width: 860px) {
    body.home-page .home-tour-block {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 36px;
    }
    body.home-page .home-tour-block--flip .home-tour-block__visual {
        order: 2;
    }
}

body.home-page .home-tour-block:hover .home-tour-block__more,
body.home-page .home-tour-block:focus-visible .home-tour-block__more {
    text-decoration: underline;
}

body.home-page .home-tour-block__bullets {
    margin: 12px 0 16px;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.45;
}

body.home-page .home-tour-block__more {
    font-weight: 600;
    color: var(--accent, #c2410c);
}

body.home-page .home-band--compare {
    background: var(--bg-muted, #f8fafc);
}

body.home-page .home-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

body.home-page .home-compare__table th,
body.home-page .home-compare__table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-subtle, rgba(0,0,0,.08));
}

body.home-page .home-compare__table th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

body.home-page .home-compare__range {
    font-size: 0.82em;
    font-weight: 400;
    color: var(--text-secondary, #64748b);
    white-space: nowrap;
}

body.home-page .home-compare__sum td {
    font-weight: 600;
    background: rgba(15, 23, 42, 0.03);
}

body.home-page .home-compare__eom td {
    font-weight: 700;
    color: var(--accent, #c2410c);
    background: rgba(194, 65, 12, 0.06);
}

body.home-page .home-compare__foot {
    margin: 18px auto 0;
    max-width: 52rem;
    text-align: center;
    color: var(--text-secondary);
}

body.home-page .home-compare__cta-wrap,
body.home-page .home-phases__cta {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 700px) {
    body.home-page .home-compare__table thead {
        display: none;
    }
    body.home-page .home-compare__table tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid var(--border-subtle, rgba(0,0,0,.08));
        border-radius: 12px;
        overflow: hidden;
        background: var(--bg-elevated, #fff);
    }
    body.home-page .home-compare__table td {
        display: block;
        border: 0;
        padding: 8px 14px;
    }
    body.home-page .home-compare__table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-secondary);
        margin-bottom: 2px;
    }
}
