/* Nexus Studios – Startseite (nur index.php) */

.home-page {
    --home-bg: #07070c;
    --home-surface: rgba(18, 18, 26, 0.72);
    --home-line: rgba(255, 255, 255, 0.09);
    --home-muted: rgba(235, 235, 245, 0.68);
    --home-accent-a: #a855f7;
    --home-accent-b: #6366f1;
    --home-accent-c: #22d3ee;
    --home-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.35), transparent 55%);
}

/* Höhere Spezifität als body / body:has – korrektes Padding inkl. Aktionsbanner */
body.home-page {
    padding-top: calc(var(--header-height) + var(--site-promo-height, 0px));
    background-color: var(--home-bg);
    background-image:
        var(--home-glow),
        radial-gradient(900px 500px at 100% 0%, rgba(99, 102, 241, 0.12), transparent 50%),
        radial-gradient(700px 400px at 0% 100%, rgba(34, 211, 238, 0.08), transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    animation: none;
}

body.home-page section[id],
body.home-page .home-hero,
body.home-page .home-pas,
body.home-page .home-highlights,
body.home-page .home-jump-wrap {
    scroll-margin-top: calc(var(--header-height) + var(--site-promo-height, 0px) + 16px);
}

/* Kein horizontales „Überlaufen“ der Startseite (Flex-Karussell, Karten, 100vw) */
body.home-page main.home-main,
body.home-page .home-wrap,
body.home-page .main-content {
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
}

body.home-page section.home-highlights,
body.home-page section.home-section {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Promobox in der Paket-Sektion */
.home-promo-ribbon {
    margin: 0 0 1.75rem;
    padding: 1.15rem 1.35rem;
    border-radius: calc(var(--border-radius) + 4px);
    border: 1px solid rgba(251, 146, 60, 0.35);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.18), rgba(168, 85, 247, 0.12), rgba(56, 189, 248, 0.08));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.home-promo-ribbon__badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff7ed;
    background: rgba(251, 146, 60, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.65rem;
}

.home-promo-ribbon__text {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.home-promo-ribbon__text strong {
    color: #fde68a;
    font-weight: 800;
}

.home-wrap {
    max-width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
}

/* Hero – nur Botschaft, viel Luft */
.home-hero {
    position: relative;
    padding: clamp(2.75rem, 7vw, 5.5rem) clamp(1.5rem, 4vw, 3.5rem);
    overflow: hidden;
    border-radius: clamp(20px, 3vw, 28px);
    border: 1px solid var(--home-line);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(99, 102, 241, 0.06) 100%);
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 24px 80px rgba(0, 0, 0, 0.45);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 65% at 50% 20%, black 25%, transparent 72%);
    pointer-events: none;
    opacity: 0.55;
}

.home-hero::after {
    content: "";
    position: absolute;
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    right: -18%;
    top: -35%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, transparent 68%);
    pointer-events: none;
    filter: blur(2px);
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .home-hero-inner {
        max-width: 44rem;
    }
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--home-line);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--home-muted);
    margin: 0 auto 1.35rem;
}

.home-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--home-accent-c), var(--home-accent-a));
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.5);
}

.home-hero h1 {
    font-size: clamp(1.65rem, 4.2vw + 0.5rem, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: clamp(1rem, 3vw, 1.35rem);
    text-align: center;
    max-width: none;
    text-wrap: balance;
}

.home-hero .home-lead {
    font-size: clamp(0.95rem, 1.2vw + 0.75rem, 1.125rem);
    line-height: 1.75;
    color: var(--home-muted);
    max-width: 42rem;
    margin: 0 auto clamp(1.5rem, 4vw, 2rem);
    text-align: center;
}

@media (max-width: 639.98px) {
    .home-wrap {
        padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
        padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
    }

    .home-hero {
        margin-bottom: 1.2rem;
        padding: clamp(1.2rem, 4vw, 1.5rem) clamp(0.85rem, 3vw, 1rem);
    }

    .home-kicker {
        font-size: 0.68rem;
        padding: 0.32rem 0.65rem;
        margin-bottom: 0.75rem;
    }

    .home-hero h1 {
        font-size: clamp(1.2rem, 5.2vw + 0.35rem, 1.55rem);
        line-height: 1.18;
        margin-bottom: 0.75rem;
    }

    .home-hero .home-lead {
        font-size: 0.86rem;
        line-height: 1.62;
        margin-bottom: 1rem;
    }

    .home-btn-primary,
    .home-btn-ghost {
        min-height: 42px;
        padding: 0.65rem 1.1rem;
        font-size: 0.8rem;
    }

    .home-pill {
        font-size: 0.65rem;
        padding: 0.32rem 0.6rem;
    }

    .home-section {
        padding: 1.1rem 0.85rem 1.2rem;
        margin-bottom: 1.35rem;
    }

    .home-section h2 {
        font-size: clamp(1.05rem, 4vw, 1.28rem);
        margin-bottom: 0.45rem;
    }

    .home-section .home-sub {
        font-size: 0.84rem;
        margin-bottom: 0.85rem;
    }

    .home-pas-card {
        padding: 1rem 1rem 1.1rem;
    }

    .home-pas-title {
        font-size: 0.95rem;
    }

    .home-pas-text {
        font-size: 0.84rem;
    }

    .home-promo-ribbon {
        padding: 0.75rem 0.85rem;
        margin-bottom: 1rem;
    }

    .home-promo-ribbon__text {
        font-size: 0.82rem;
    }
}

/* PAS: Problem – Agitate – Solution */
.home-pas {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.home-pas-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .home-pas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.15rem;
        align-items: stretch;
    }
}

.home-pas-card {
    padding: 1.35rem 1.4rem 1.5rem;
    border-radius: calc(var(--border-radius) + 2px);
    border: 1px solid var(--home-line);
    background: var(--home-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    text-align: left;
}

.home-pas-card--problem {
    border-color: rgba(251, 146, 60, 0.22);
    background: linear-gradient(165deg, rgba(251, 146, 60, 0.08), rgba(18, 18, 26, 0.85));
}

.home-pas-card--agitate {
    border-color: rgba(248, 113, 113, 0.2);
    background: linear-gradient(165deg, rgba(248, 113, 113, 0.07), rgba(18, 18, 26, 0.85));
}

.home-pas-card--solution {
    border-color: rgba(34, 211, 238, 0.22);
    background: linear-gradient(165deg, rgba(34, 211, 238, 0.1), rgba(99, 102, 241, 0.08), rgba(18, 18, 26, 0.88));
}

.home-pas-step {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--home-muted);
    margin-bottom: 0.65rem;
}

.home-pas-card--solution .home-pas-step {
    color: #a5f3fc;
}

.home-pas-title {
    font-family: var(--font-family-heading);
    font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    color: var(--color-text-primary);
}

.home-pas-text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--home-muted);
    flex: 1;
}

.home-pas-cta {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #a5f3fc;
    text-decoration: none;
    border-bottom: 1px solid rgba(165, 243, 252, 0.35);
    align-self: flex-start;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-pas-cta:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

@keyframes home-btn-glow {
    0%, 100% {
        box-shadow:
            0 12px 44px rgba(99, 102, 241, 0.4),
            0 0 0 0 rgba(168, 85, 247, 0.35);
    }
    50% {
        box-shadow:
            0 16px 52px rgba(168, 85, 247, 0.45),
            0 0 28px 2px rgba(34, 211, 238, 0.12);
    }
}

.home-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.95rem 1.65rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #fff;
    background: linear-gradient(125deg, var(--home-accent-a) 0%, var(--home-accent-b) 55%, #4f46e5 100%);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 44px rgba(99, 102, 241, 0.4);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    animation: home-btn-glow 4s ease-in-out infinite;
}

.home-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 56px rgba(168, 85, 247, 0.5);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .home-btn-primary {
        animation: none;
    }
}

.home-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: clamp(0.88rem, 1.4vw, 0.95rem);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.home-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.home-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: clamp(1.35rem, 3vw, 2rem);
    justify-content: center;
}

.home-pill {
    font-size: clamp(0.7rem, 1.5vw, 0.78rem);
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--home-line);
    color: var(--home-muted);
}

/* Highlights – eigene Sektion, Desktop Grid / Mobile horizontal */
.home-highlights {
    margin-bottom: clamp(2rem, 5vw, 3rem);
    min-width: 0;
    max-width: 100%;
}

.home-highlights-title {
    font-family: var(--font-family-heading), system-ui, sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: clamp(1.15rem, 3vw, 1.75rem);
    letter-spacing: -0.01em;
}

.home-highlights-track {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .home-highlights-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Schmal: horizontal wischen, ohne negativen Außenrand (vermeidet Seiten-Overflow / „Springen“) */
@media (max-width: 767.98px) {
    .home-highlights-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.85rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.25rem 0 0.65rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        scrollbar-width: thin;
        scrollbar-color: rgba(168, 85, 247, 0.35) transparent;
    }

    .home-highlights-track::-webkit-scrollbar {
        height: 5px;
    }

    .home-highlights-track::-webkit-scrollbar-thumb {
        background: rgba(168, 85, 247, 0.35);
        border-radius: 999px;
    }

    .home-highlights .home-stat {
        flex: 0 0 min(17.5rem, calc(100% - 0.5rem));
        max-width: min(17.5rem, calc(100% - 0.5rem));
        scroll-snap-align: start;
        min-height: auto;
        box-sizing: border-box;
    }
}

.home-stat {
    padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.15rem, 3vw, 1.4rem);
    border-radius: calc(var(--border-radius) + 2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

@media (min-width: 768px) {
    .home-stat:hover {
        border-color: rgba(168, 85, 247, 0.28);
        transform: translateY(-2px);
    }
}

.home-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 0.85rem;
    font-size: 1.05rem;
    color: var(--home-accent-c);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-stat strong {
    display: block;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    margin-bottom: 0.45rem;
    color: var(--color-text-primary);
}

.home-stat span {
    font-size: clamp(0.82rem, 1.5vw, 0.9rem);
    color: var(--home-muted);
    line-height: 1.58;
}

/* Sprungmarken: unter ~640px nicht sticky (mehrzeilige Leiste hat sonst dauerhaft viel Viewport blockiert) */
.home-jump-wrap {
    position: static;
    z-index: 1;
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.65rem;
}

.home-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
    .home-jump-wrap {
        border-bottom: none;
        padding-bottom: 0;
    }

    .home-jump {
        gap: 0.55rem;
    }
}

.home-jump li {
    flex: 0 0 auto;
}

.home-jump a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid var(--home-line);
    color: var(--home-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}

@media (min-width: 640px) {
    .home-jump a {
        min-height: 44px;
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

.home-jump a:hover,
.home-jump a:focus-visible {
    color: #fff;
    border-color: rgba(168, 85, 247, 0.45);
    background: rgba(168, 85, 247, 0.1);
    outline: none;
}

.home-jump a:active {
    transform: scale(0.98);
}

/* Sections */
.home-section {
    margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
    padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.35rem, 3.5vw, 2.5rem);
    border-radius: calc(var(--border-radius) * 1.5);
    border: 1px solid var(--home-line);
    background: var(--home-surface);
    backdrop-filter: blur(16px);
    text-align: left;
}

.home-section h2 {
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    margin-bottom: clamp(0.65rem, 2vw, 0.85rem);
    text-align: left;
    letter-spacing: -0.02em;
}

.home-section .home-sub {
    color: var(--home-muted);
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    line-height: 1.65;
    max-width: 58ch;
    margin: 0 0 clamp(1.35rem, 3vw, 2rem);
    text-align: left;
}

/* Bento grid */
.home-bento {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.25rem);
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .home-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .home-bento {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-bento .home-tile {
    grid-column: span 1;
}

.home-bento .home-tile--wide {
    grid-column: 1 / -1;
}

@media (min-width: 700px) {
    .home-bento .home-tile--wide {
        grid-column: span 2;
    }
}

.home-tile {
    padding: clamp(1.25rem, 3vw, 1.6rem);
    border-radius: calc(var(--border-radius) + 2px);
    border: 1px solid var(--home-line);
    background: rgba(10, 10, 16, 0.5);
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

a.home-tile:hover {
    border-color: rgba(168, 85, 247, 0.35);
    transform: translateY(-2px);
}

.home-tile h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0 0.5rem;
}

.home-tile p {
    font-size: 0.9rem;
    color: var(--home-muted);
    margin: 0;
    max-width: none;
}

.home-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(99, 102, 241, 0.15));
    border: 1px solid var(--home-line);
}

.home-tile-icon img {
    width: 26px;
    height: 26px;
}

.home-tile-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--home-accent-c);
}

a.home-tile .home-tile-link {
    color: var(--home-accent-c);
}

/* Process */
.home-steps {
    display: grid;
    gap: clamp(0.85rem, 2vw, 1.15rem);
    counter-reset: step;
}

@media (min-width: 800px) {
    .home-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-step {
    position: relative;
    padding: clamp(1.1rem, 2.5vw, 1.35rem);
    border-radius: var(--border-radius);
    border: 1px solid var(--home-line);
    background: rgba(0, 0, 0, 0.22);
}

.home-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    background: linear-gradient(135deg, var(--home-accent-b), var(--home-accent-a));
    color: #fff;
}

.home-step h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.home-step p {
    font-size: 0.85rem;
    color: var(--home-muted);
    margin: 0;
    max-width: none;
}

/* Tech strip */
.home-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-start;
}

.home-tech span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--home-line);
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.home-tech i {
    color: var(--home-accent-c);
    font-size: 1.1rem;
}

/* Packages – reuse package-card but tune */
.home-page .packages-grid {
    gap: 1rem;
}

.home-page .package-card summary {
    padding: 1.1rem 1.25rem;
}

.home-page .package-card {
    border-radius: var(--border-radius);
}

/* Trust / honesty block */
.home-trust-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 700px) {
    .home-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.home-trust-item {
    padding: 1.15rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--home-line);
    background: rgba(0, 0, 0, 0.2);
}

.home-trust-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-trust-item p {
    font-size: 0.9rem;
    color: var(--home-muted);
    margin: 0;
    max-width: none;
}

/* FAQ */
.home-faq {
    display: grid;
    gap: 0.5rem;
}

.home-faq details {
    border-radius: var(--border-radius);
    border: 1px solid var(--home-line);
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.home-faq summary {
    padding: 1rem 1.15rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.home-faq summary::-webkit-details-marker {
    display: none;
}

.home-faq summary::after {
    content: "+";
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--home-muted);
}

.home-faq details[open] summary::after {
    content: "–";
}

.home-faq .faq-a {
    padding: 0 1.15rem 1.1rem;
    font-size: 0.9rem;
    color: var(--home-muted);
    line-height: 1.65;
}

/* CTA band */
.home-cta {
    text-align: center;
    padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem);
    border-radius: calc(var(--border-radius) * 1.5);
    border: 1px solid rgba(168, 85, 247, 0.28);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.14), rgba(99, 102, 241, 0.08) 50%, rgba(34, 211, 238, 0.05));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.home-cta h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.home-cta p {
    margin: 0 auto 1.25rem;
    max-width: 48ch;
    color: var(--home-muted);
    text-align: center;
}

.home-cta .home-btn-primary {
    margin: 0 0.35rem;
}

/* Main layout override on home */
.home-page main.home-main {
    display: block;
    max-width: min(1120px, 100%);
    padding-top: clamp(1rem, 3vw, 1.75rem);
}

.home-page .main-content {
    gap: 0;
}

/* animated elements on home */
.home-page .animated-element {
    opacity: 0;
    transform: translateY(24px);
}

.home-page .animated-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .home-page .animated-element {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
