/* =====================================
   DEMO PAGE WRAPPER
   ===================================== */
.demo-page {
    overflow: hidden;
    background: #ffffff;
}

.demo-hero {
    position: relative;
    padding: 132px 0 82px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(249, 115, 22, 0.12), transparent 32%),
        radial-gradient(circle at 82% 12%, rgba(59, 130, 246, 0.10), transparent 34%),
        linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.demo-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -44% -10%;
    height: 360px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.10), transparent 64%);
    pointer-events: none;
}

.demo-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 52px;
    align-items: center;
}

.demo-hero-copy {
    max-width: 780px;
}

.demo-hero h1 {
    margin: 16px 0 20px;
    color: #0f172a;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
}

.demo-hero-text {
    max-width: 700px;
    margin: 0;
    color: #475569;
    font-size: 20px;
    line-height: 1.65;
}

.demo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.demo-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.demo-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.demo-hero-card {
    padding: 26px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.demo-mail-mini {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.demo-mail-mini-head {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.demo-mail-mini-head span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5e1;
}

.demo-mail-mini-body {
    padding: 18px;
}

.demo-mail-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
    color: #334155;
    font-size: 14px;
}

.demo-mail-row strong {
    color: #64748b;
    font-size: 13px;
}

.demo-mail-bcc {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    font-weight: 800;
}

.demo-mini-result {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
    border: 1px solid rgba(249, 115, 22, 0.18);
}

.demo-mini-result strong {
    display: block;
    margin-bottom: 8px;
    color: #c2410c;
}

.demo-mini-result p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}

.demo-info-section {
    padding: 92px 0;
    background: #ffffff;
}

.demo-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.demo-info-card {
    padding: 26px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.demo-info-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #fff7ed;
    color: #f97316;
    font-weight: 900;
}

.demo-info-card h2,
.demo-info-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.2;
}

.demo-info-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
}

.demo-cta-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.12), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.demo-cta-box {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.demo-cta-box h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.05;
}

.demo-cta-box p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.65;
}

.demo-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 900px) {
    .demo-hero {
        padding: 104px 0 60px;
    }

    .demo-hero-grid,
    .demo-info-grid {
        grid-template-columns: 1fr;
    }

    .demo-hero-text {
        font-size: 17px;
    }

    .demo-hero-card {
        padding: 18px;
        border-radius: 24px;
    }
}

@media (max-width: 640px) {
    .demo-hero h1 {
        font-size: 42px;
    }

    .demo-hero-actions .btn,
    .demo-cta-actions .btn {
        width: 100%;
    }

    .demo-mail-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .demo-info-section,
    .demo-cta-section {
        padding: 72px 0;
    }
}




/* =====================================
   DEMO PAGE INTRO - TEXT DEMO FOCUS
   ===================================== */
.demo-practice-intro {
    position: relative;
    padding: 126px 0 34px;
    background:
        radial-gradient(circle at 16% 20%, rgba(249,115,22,.10), transparent 34%),
        linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.demo-practice-intro .section-head {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.demo-practice-intro h1 {
    margin: 14px 0 18px;
    color: #0f172a;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.02;
}

.demo-practice-intro p {
    max-width: 760px;
    margin: 0 auto;
    color: #475569;
    font-size: 19px;
    line-height: 1.65;
}

.demo-practice-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.demo-practice-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.08);
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(15,23,42,.05);
}

@media(max-width:700px){
    .demo-practice-intro{
        padding: 104px 0 20px;
    }

    .demo-practice-intro .section-head,
    .demo-practice-intro .section-head h1,
    .demo-practice-intro .section-head p{
        text-align:left;
    }

    .demo-practice-intro p{
        font-size:16.5px;
    }

    .demo-practice-tags{
        justify-content:flex-start;
    }
}


/* =====================================
   PROCESS AXIS CSS
   ===================================== */
.process-story {
    position: relative;
    overflow: clip;
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.08), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.process-scene {
    position: relative;
    height: 260vh;
    margin-top: 18px;
}

.process-pin {
    position: sticky;
    top: 84px;
    z-index: 2;
}

.process-head {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.process-head h2 {
    margin-bottom: 14px;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.04;
}

.process-head p {
    max-width: 760px;
    margin: 0 auto;
}

.process-axis {
    --progress: 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    padding-top: 10px;
}

.process-line {
    position: absolute;
    top: 46px;
    left: 12%;
    right: 12%;
    height: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
    z-index: 0;
}

.process-line-fill {
    display: block;
    width: calc(var(--progress) * 100%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.28);
    transition: width 0.1s linear;
}

.process-step {
    position: relative;
    z-index: 1;
    transform: translateY(42px) scale(0.965);
    opacity: 0.28;
    filter: blur(1.5px);
    transition:
        transform 0.45s cubic-bezier(.22, 1, .36, 1),
        opacity 0.32s ease,
        filter 0.32s ease;
}

.process-step.is-active {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
}

.process-step.is-current .process-icon {
    transform: translateY(-2px) scale(1.08);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow:
        0 18px 38px rgba(249, 115, 22, 0.18),
        0 0 0 10px rgba(249, 115, 22, 0.08);
}

.process-step.is-current .process-content {
    border-color: rgba(249, 115, 22, 0.22);
    box-shadow:
        0 22px 52px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(249, 115, 22, 0.08);
}

.process-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(249, 115, 22, 0.22);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.process-icon svg {
    width: 30px;
    height: 30px;
}

.process-content {
    min-height: 240px;
    padding: 22px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.process-number {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.10em;
    color: var(--orange-dark);
}

.process-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.process-content p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.process-content code {
    display: inline-block;
    margin-bottom: 4px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--navy);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 1100px) {
    .process-scene {
        height: auto;
    }

    .process-pin {
        position: relative;
        top: auto;
    }

    .process-head {
        margin-bottom: 28px;
    }

    .process-axis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .process-line {
        display: none;
    }

    .process-step {
        transform: none;
        opacity: 1;
        filter: none;
    }

    .process-step.is-current .process-icon {
        transform: none;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .process-head h2 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.08;
    }

    .process-axis {
        grid-template-columns: 1fr;
    }

    .process-icon {
        width: 68px;
        height: 68px;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .process-content {
        min-height: auto;
        padding: 20px 18px;
    }
}

.section-head .eyebrow {
    margin-top: 40px;
    margin-bottom: 18px;
}
.badge-control {
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    font-size: 12px;
    font-weight: 700;
}
.process-control-note {
    margin: 46px auto 0;
    max-width: 760px;
    padding: 18px 22px;
    border-radius: 18px;

    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.18);

    color: #ea580c;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;

    text-align: center;
}

@media (max-width: 860px) {
    .process-control-note {
        margin: 22px 0 0;
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.55;
        text-align: left;

    }
}

/* Mobile Fix: Process Section kompakt */
@media (max-width: 700px) {
    .process-story {
        overflow: hidden;
    }

    .process-scene {
        height: auto;
        margin-top: 0;
    }

    .process-pin {
        position: relative;
        top: auto;
    }

    .process-head {
        margin: 0 auto 22px;
        text-align: center;
    }

    .process-head h2 {
        font-size: 30px;
        line-height: 1.08;
        margin-bottom: 12px;
    }

    .process-head p {
        font-size: 16px;
        line-height: 1.55;
        max-width: 94%;
    }

    .process-axis {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 0;
    }

    .process-line {
        display: none;
    }

    .process-step {
        display: block;
        opacity: 1;
        filter: none;
        transform: none;
    }

    .process-icon {
        display: none;
    }

    .process-content {
        min-height: auto;
        padding: 16px 16px 16px 18px;
        border-radius: 18px;
        text-align: left;
        display: grid;
        grid-template-columns: 38px 1fr;
        column-gap: 12px;
        align-items: start;
    }

    .process-number {
        grid-row: 1 / span 2;
        width: 34px;
        height: 34px;
        margin: 2px 0 0;
        border-radius: 999px;
        background: rgba(249, 115, 22, 0.10);
        color: #f97316;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        letter-spacing: 0;
    }

    .process-content h3 {
        margin: 0 0 5px;
        font-size: 18px;
        line-height: 1.2;
    }

    .process-content p {
        margin: 0;
        font-size: 14.5px;
        line-height: 1.45;
    }

    .process-content code {
        margin: 2px 0 5px;
        padding: 5px 8px;
        font-size: 12px;
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }

    .badge-control {
        margin-bottom: 5px;
        font-size: 11px;
        padding: 3px 7px;
    }

    .process-control-note {
        margin: 16px 0 0;
        padding: 12px 14px;
        border-radius: 16px;
        font-size: 13px;
        line-height: 1.45;
        font-weight: 600;
        text-align: left;
    }

    .section-head .eyebrow {
        margin-top: 24px;
        margin-bottom: 14px;
    }
}

/* =====================================
   PROCESS MOBILE LEFT ALIGN FIX
   ===================================== */

@media (max-width: 700px) {

    .process-head{
        text-align:left !important;
        margin-left:0 !important;
        margin-right:0 !important;
    }

    .process-head .eyebrow,
    .process-head h2,
    .process-head p{
        text-align:left !important;
        margin-left:0 !important;
        margin-right:0 !important;
    }

    .process-head p{
        max-width:100% !important;
    }
}

@media (max-width: 700px) {
    .process-head-text {
        display: none;
    }
}

.process-slider-dots {
    display: none;
}

.process-slider-dots span {
    cursor: pointer;
}

@media (max-width: 700px) {

    .process-axis {
        display: flex !important;
        gap: 16px !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch;

        padding: 0 22px 8px 0 !important;
        margin: 24px -22px 0 0 !important;

        scrollbar-width: none;
        touch-action: pan-x pan-y !important;
    }

    .process-axis::-webkit-scrollbar {
        display: none;
    }

    .process-step {
        flex: 0 0 84% !important;
        min-width: 84% !important;
        max-width: 84% !important;

        scroll-snap-align: start !important;

        display: block !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .process-icon {
        display: flex !important;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        margin: 0 0 14px;
        box-shadow: none;
    }

    .process-icon svg {
        width: 22px;
        height: 22px;
    }

    .process-content {
        min-height: 245px;
        display: block !important;
        padding: 20px 18px;
        border-radius: 20px;
        text-align: left;
        box-shadow: none !important;
    }

    .process-number {
        display: inline-flex;
        width: auto;
        height: auto;
        margin: 0 0 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(249, 115, 22, 0.10);
        color: #f97316;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0;
    }

    .process-content h3 {
        margin: 0 0 8px;
        font-size: 20px;
        line-height: 1.2;
    }

    .process-content p {
        margin: 0;
        font-size: 14.5px;
        line-height: 1.5;
    }

    .process-slider-dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 16px;
    }

    .process-slider-dots span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #cbd5e1;
        cursor: pointer;
        transition: width .2s ease, background .2s ease;
    }

    .process-slider-dots span.is-active {
        width: 20px;
        background: #f97316;
    }
}

/* =====================================
   USE CASE DEMO CSS
   ===================================== */

.use-case-text-toggle{
    display:none;
}
.use-case-section {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #ffffff;
}

.use-case-head {
    max-width: 760px;
}

.use-case-flow {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.use-case-simple,
.use-case-result {
    width: 100%;
}

.use-case-box-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.use-case-box-label-dark {
    background: rgba(249, 115, 22, 0.14);
    color: #fdba74;
}

.mail-demo-compact {
    width: 100%;
    max-width: none;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 24px 26px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.mail-demo-compact > div {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 15px;
    color: #0f172a;
}

.mail-demo-compact > div:last-child {
    border-bottom: none;
}

.mail-demo-compact strong {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.mail-demo-code {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.10);
    color: #c2410c;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 700;
}

.mail-demo-message {
    display: block !important;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: none !important;
}

.mail-demo-message p {
    margin: 0 0 12px;
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.mail-demo-message p:last-child {
    margin-bottom: 0;
}

.use-case-flow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.use-case-flow-divider::before,
.use-case-flow-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0),
        rgba(15, 23, 42, 0.12),
        rgba(15, 23, 42, 0)
    );
}

.use-case-flow-divider span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    white-space: nowrap;
}

.use-case-result {
    width: 100%;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 12%, rgba(249, 115, 22, 0.18) 0%, rgba(249, 115, 22, 0.08) 24%, transparent 55%),
        radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.14) 0%, rgba(34, 211, 238, 0.06) 26%, transparent 58%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.use-case-result h3 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 600;
    color: #ffffff;
    max-width: 820px;
}

.use-case-result-copy {
    margin: 0 0 18px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}

.use-case-variants {
    display: grid;
    gap: 14px;
}

.variant {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(6px);
}

.variant strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.35;
    color: #ffffff;
}

.variant p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14.5px;
    line-height: 1.7;
}

.use-case-bottom-note {
    margin-top: 18px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

@media (max-width: 768px) {
    .use-case-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .use-case-flow {
        margin-top: 28px;
        gap: 16px;
    }

    .mail-demo-compact {
        padding: 18px;
        border-radius: 20px;
    }

    .mail-demo-compact > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 9px 0;
        font-size: 14px;
    }

    .mail-demo-message {
        display: block !important;
    }

    .mail-demo-message p {
        font-size: 14px;
        line-height: 1.6;
    }

    .use-case-flow-divider {
        gap: 10px;
        font-size: 11px;
    }

    .use-case-flow-divider span {
        min-height: 28px;
        padding: 0 10px;
    }

    .use-case-result {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .use-case-result h3 {
        font-size: 23px;
        margin-bottom: 14px;
    }

    .use-case-result-copy {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .variant {
        padding: 15px 16px;
        border-radius: 16px;
    }

    .variant strong {
        font-size: 14px;
    }

    .variant p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .use-case-bottom-note {
        font-size: 14px;
        margin-top: 14px;
    }
    
        .use-case-text-toggle{
        width:100%;
        min-height:46px;
        margin:4px 0 14px;

        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;

        border-radius:14px;
        border:1px solid rgba(255,255,255,.14);
        background:rgba(255,255,255,.10);
        color:#ffffff;

        font-family:inherit;
        font-size:14px;
        font-weight:800;

        cursor:pointer;
    }

    .use-case-variants{
        display:none;
    }

    .use-case-variants.is-open{
        display:grid;
    }
}



.variant-note {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(249, 115, 22, 0.10),
        rgba(255, 255, 255, 0.05)
    );
    border: 1px solid rgba(249, 115, 22, 0.18);
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.mail-demo-alias-note{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-top:10px;
    color:#64748b;
    font-size:12px;
    line-height:1.4;
}

.mail-demo-alias-note code{
    padding:3px 7px;
    border-radius:999px;
    background:rgba(15,23,42,.05);
    color:#334155;
    font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size:11.5px;
    font-weight:700;
}

.mail-demo-alias-note em{
    font-style:normal;
    color:#94a3b8;
}

/* Mobile Toggle Orange Override */
@media (max-width: 768px) {

    .use-case-text-toggle{
        color:#f97316 !important;
        border:1px solid rgba(249,115,22,.22) !important;
        background:rgba(249,115,22,.08) !important;
    }

    .use-case-text-toggle span{
        color:#f97316 !important;
    }

}

/* =====================================
   USE CASE LIGHT CARD
   ===================================== */

.use-case-result{

    background:#ffffff !important;

    border:1px solid #e5e7eb;

    box-shadow:
        0 20px 50px rgba(15,23,42,.08);

    color:#0f172a !important;
}

.use-case-result h3{
    color:#0f172a !important;
}

.use-case-result-copy{
    color:#64748b !important;
}

.variant{

    background:#f8fafc !important;

    border:1px solid #e2e8f0 !important;

    color:#334155 !important;

    box-shadow:none !important;
}

.variant strong{
    color:#0f172a !important;
}

.variant p{
    color:#475569 !important;
}

.variant-note{

    background:#fff7ed !important;

    border:1px solid rgba(249,115,22,.20) !important;

    color:#9a3412 !important;
}

.use-case-box-label-dark {
    background: #fff7ed;
    border: 1px solid rgba(249,115,22,.18);
    color: #c2410c;
}

.use-case-result-mockup{
    display:grid;
    grid-template-columns:minmax(0, .9fr) minmax(340px, .8fr);
    gap:56px;
    align-items:center;
    padding:52px;
    overflow:hidden;
}

.use-case-copy{
    max-width:560px;
}

.use-case-result-mockup h3{
    font-size:clamp(32px, 4vw, 52px);
    line-height:1.05;
    margin:18px 0 22px;
}

.use-case-result-copy{
    font-size:20px;
    line-height:1.55;
    color:#64748b;
    max-width:520px;
}

.use-case-text-toggle{
    margin-top:28px;
    width:min(340px, 100%);
    height:50px;
    border-radius:8px;
    border:1px solid rgba(249,115,22,.55);
    background:#fff;
    color:#f97316;
    font-weight:800;
    font-size:16px;
    cursor:pointer;
}

.use-case-text-toggle span{
    margin-left:18px;
}

.use-case-variants{
    margin-top:34px;
    display:grid;
    gap:18px;
}

.variant-preview{
    display:flex;
    align-items:center;
    gap:22px;
    padding:24px;
    border-radius:14px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 14px 34px rgba(15,23,42,.08);
}

.variant-number{
    flex:0 0 42px;
    width:42px;
    height:42px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#ff8a00,#ff5a00);
    color:#fff;
    font-weight:900;
    font-size:20px;
}

.variant-preview strong{
    display:block;
    font-size:18px;
    color:#0f172a;
}

.variant-subline{
    margin:6px 0 0;
    color:#64748b;
    line-height:1.45;
}

.mail-send-hint{
    margin-top:34px;
    display:flex;
    gap:20px;
    padding:24px;
    border-radius:14px;
    background:linear-gradient(135deg,rgba(249,115,22,.08),rgba(249,115,22,.02));
    border:1px solid rgba(249,115,22,.24);
}

.mail-send-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    display:grid;
    place-items:center;
    background:rgba(249,115,22,.14);
    color:#f97316;
    font-size:22px;
    flex:0 0 42px;
}

.mail-send-hint strong{
    color:#f97316;
    font-size:18px;
}

.mail-send-hint p{
    margin:8px 0 0;
    color:#334155;
    line-height:1.5;
}

.use-case-phone-wrap{
    position:relative;
    display:flex;
    justify-content:center;
}

.use-case-phone{
    width:min(390px, 100%);
    border-radius:46px;
    padding:10px;

}

.use-case-phone img{
    display:block;
    width:100%;
    border-radius:36px;
}

.phone-callout{
    position:absolute;
    left:-34px;
    bottom:24%;
    display:flex;
    align-items:center;
    gap:12px;
    color:#f97316;
    font-weight:900;
    font-size:17px;
}

.phone-callout span{
    width:120px;
    height:2px;
    background:#f97316;
    transform:rotate(-18deg);
    transform-origin:right center;
}

.phone-callout span::after{
    content:"";
    position:absolute;
    right:-2px;
    top:-5px;
    width:10px;
    height:10px;
    border-top:2px solid #f97316;
    border-right:2px solid #f97316;
    transform:rotate(45deg);
}

/* Mobil */
@media (max-width:860px){

    .use-case-result-mockup{
        grid-template-columns:1fr;
        gap:34px;
        padding:30px 20px;
    }

    .use-case-copy{
        max-width:none;
    }

    .use-case-result-mockup h3{
        font-size:34px;
    }

    .use-case-result-copy{
        font-size:17px;
    }

    .variant-preview{
        padding:20px;
    }

    .mail-send-hint{
        padding:20px;
    }

    .use-case-phone-wrap{
        order:2;
    }

    .use-case-phone{
        width:min(310px, 100%);
        border-radius:38px;
    }

    .use-case-phone img{
        border-radius:30px;
    }

    .phone-callout{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:18px;
        justify-content:center;
        font-size:15px;
    }

    .phone-callout span{
        width:54px;
        transform:rotate(0deg);
    }
}

.use-case-phone-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
}

.use-case-phone-img{
    display:block;
    width:min(430px, 100%);
    height:auto;
    filter:drop-shadow(0 34px 70px rgba(15,23,42,.22));
}

/* Pfeil/Callout sicher entfernen */
.phone-callout,
.phone-arrow,
.use-case-phone-callout{
    display:none !important;
}

@media (max-width:860px){
    .use-case-phone-wrap{
        margin-top:10px;
    }

    .use-case-phone-img{
        width:min(320px, 92vw);
    }
}

.use-case-phone-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
}

.use-case-phone-device{
    position:relative;
    width:420px;
    max-width:100%;
}

.use-case-phone-screen{
    position:absolute;

    top:12px;
    left:14px;

    width:392px;
    height:848px;

    overflow:hidden;
    border-radius:48px;
    z-index:1;
}

.use-case-phone-screen video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.use-case-phone-frame{
    position:relative;
    z-index:2;
    pointer-events:none;
}

.use-case-phone-frame img{
    display:block;
    width:100%;
    height:auto;
}

@media(max-width:860px){

    .use-case-phone-device{
        width:300px;
    }

    .use-case-phone-screen{
        top:8px;
        left:10px;

        width:280px;
        height:606px;

        border-radius:34px;
    }
}

.use-case-phone-screen{
    position:absolute;

    top:2.35%;
    left:6.9%;

    width:86.2%;
    height:95.3%;

    overflow:hidden;
    border-radius:8%;
}

.use-case-phone-screen video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.use-case-phone-device{
    position:relative;
    width:420px;
}

.use-case-phone-frame img{
    width:100%;
    display:block;
}

.variant-toggle{
    margin-top:14px;
    padding:10px 14px;
    border:none;
    border-radius:12px;
    background:#f97316;
    color:#fff;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}

.variant-content{
    display:none;
    margin-top:16px;
    padding-top:16px;
    border-top:1px solid rgba(15,23,42,.08);
    line-height:1.8;
    color:#475569;
}

.variant-content.is-open{
    display:block;
}
.use-case-video-wrap{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Hero Glow Hintergrund */
.use-case-video-wrap::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;

    background:
        radial-gradient(
            circle,
            rgba(249,115,22,.12) 0%,
            transparent 65%
        );

    filter:blur(50px);
    z-index:0;
}

.use-case-video{
    position:relative;
    z-index:1;

    width:100%;
    max-width:380px;

    border-radius:24px;

    transform:translateY(-30px);


    overflow:hidden;
}

@media(max-width:860px){

    .use-case-video{
        max-width:280px;
        border-radius:20px;
    }

    .use-case-video-wrap::before{
        width:320px;
        height:320px;
    }
}

.use-case-result-mockup{
    align-items:start;
}

.use-case-video-wrap{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    height:100%;
}

.use-case-video{
    margin-top:20px;
}

@media(max-width:860px){

    .use-case-video{
        width:100%;
        max-width:none;

        margin-top:50px;

        border-radius:16px;
    }

}

.use-case-video{
    width:100%;
    max-width:340px;

    margin-top:20px;
}

.use-case-video-wrap::before{
    display:none;
}

.use-case-benefits{
    display:flex;
    flex-direction:column;
    gap:16px;

    margin-top:40px;
}

.use-case-benefit{
    display:flex;
    gap:16px;

    padding:20px;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:16px;

    box-shadow:
        0 10px 30px rgba(15,23,42,.05);
}

.use-case-benefit span{
    width:34px;
    height:34px;

    flex:0 0 34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#fff7ed;

    color:#f97316;

    font-weight:800;
}

.use-case-benefit strong{
    display:block;
    margin-bottom:4px;

    color:#0f172a;
}

.use-case-benefit p{
    margin:0;

    color:#64748b;

    font-size:14px;
    line-height:1.5;
}

.use-case-result-mockup{
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(380px,.8fr);
    gap:48px;
    align-items:start;
}

.use-case-preview-card{
    background:#ffffff;

    border:1px solid #e2e8f0;
    border-radius:24px;

    padding:24px;

    box-shadow:
        0 20px 50px rgba(15,23,42,.08);

    position:sticky;
    top:30px;
}

.use-case-preview-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.preview-badge{
    padding:8px 12px;
    border-radius:999px;

    background:#fff7ed;
    color:#c2410c;

    font-size:13px;
    font-weight:800;
}

.preview-status{
    color:#16a34a;
    font-size:13px;
    font-weight:700;
}

.use-case-preview-mail{
    border:1px solid #e2e8f0;
    border-radius:18px;
    overflow:hidden;
}

.preview-mail-line{
    padding:12px 16px;
    border-bottom:1px solid #e2e8f0;

    font-size:14px;
    color:#334155;
}

.preview-mail-body{
    padding:18px;

    color:#334155;
    line-height:1.8;
    font-size:15px;

    background:#fafafa;
}

.preview-actions{
    margin-top:20px;
}

.preview-send-btn{
    width:100%;
    height:52px;

    border:none;
    border-radius:14px;

    background:#f97316;
    color:#fff;

    font-weight:800;
    font-size:16px;

    cursor:pointer;
}

.preview-meta{
    margin-top:12px;

    text-align:center;

    color:#64748b;
    font-size:13px;
}

@media(max-width:860px){

    .use-case-result-mockup{
        grid-template-columns:1fr;
    }

    .use-case-preview-card{
        position:relative;
        top:auto;
    }

}

.use-case-result-mockup{
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(360px,.75fr);
    gap:46px;
    align-items:start;
}

.use-case-preview-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:22px;
    box-shadow:0 20px 50px rgba(15,23,42,.08);
}

.use-case-preview-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:18px;
}

.preview-badge{
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;
    background:#fff7ed;
    border:1px solid rgba(249,115,22,.22);
    color:#c2410c;
    font-size:13px;
    font-weight:800;
}

.preview-status{
    color:#16a34a;
    font-size:13px;
    font-weight:800;
}

.use-case-preview-mail{
    overflow:hidden;
    border:1px solid #e2e8f0;
    border-radius:18px;
    background:#ffffff;
}

.preview-mail-line{
    padding:12px 16px;
    border-bottom:1px solid #e2e8f0;
    color:#334155;
    font-size:14px;
    line-height:1.5;
}

.preview-mail-line strong{
    margin-right:6px;
    color:#64748b;
}

.preview-mail-body{
    min-height:300px;
    padding:18px;
    background:#f8fafc;
    color:#334155;
    font-size:15px;
    line-height:1.8;
}

.variant-preview-text{
    display:none;
}

.variant-preview-text.is-active{
    display:block;
}

.variant-toggle.is-active{
    background:#0f172a;
}

.preview-send-btn{
    width:100%;
    min-height:52px;
    margin-top:18px;
    border:0;
    border-radius:14px;
    background:#f97316;
    color:#ffffff;
    font-family:inherit;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
}

.preview-meta{
    margin-top:12px;
    text-align:center;
    color:#64748b;
    font-size:13px;
    line-height:1.4;
}

@media(max-width:860px){
    .use-case-result-mockup{
        grid-template-columns:1fr;
        gap:28px;
        padding:30px 20px;
    }

    .preview-mail-body{
        min-height:auto;
    }
}

@media(max-width:860px){

    .use-case-result-mockup{
        grid-template-columns:1fr;
        gap:22px;
        padding:24px 18px;
    }

    .use-case-copy{
        display:flex;
        flex-direction:column;
    }

    .use-case-preview-card{
        order:2;
        padding:18px;
        border-radius:20px;
    }

    .mail-send-hint{
        order:3;
        margin-top:22px;
    }

    .preview-mail-body{
        max-height:260px;
        overflow:auto;
        font-size:14px;
        line-height:1.65;
    }

    .preview-send-btn{
        min-height:48px;
        font-size:14px;
    }
}

.mobile-variant-content{
    display:none;
}

@media(max-width:860px){

    .use-case-preview-card{
        display:none;
    }

    .mobile-variant-content{
        display:none;
        margin-top:14px;
        padding-top:14px;
        border-top:1px solid rgba(15,23,42,.08);
        color:#475569;
        font-size:14px;
        line-height:1.7;
    }

    .mobile-variant-content.is-open{
        display:block;
    }
}

@media (min-width: 861px) {

    .use-case-result-mockup {
        align-items: stretch;
    }

    .use-case-preview-card {
        height: 100%;
        align-self: stretch;
        display: flex;
        flex-direction: column;
    }

    .use-case-preview-mail {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .preview-mail-body {
        flex: 1;
    }

}


/* =====================================
   MANUAL / VOICE FOLLOWUP CSS
   ===================================== */
.demo-trust-badges{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:28px 0 36px;
}

.demo-trust-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 14px;

    border-radius:999px;

    background:#ecfdf5;
    border:1px solid #a7f3d0;

    color:#065f46;

    font-size:.95rem;
    font-weight:600;
}

.demo-trust-badge svg{
    width:16px;
    height:16px;
    flex-shrink:0;
}

@media (max-width:768px){

    .demo-trust-badges{
        gap:10px;
    }

    .demo-trust-badge{
        width:100%;
        justify-content:center;
    }

}
   
   
.manual-followup-section{
    background:#ffffff;
}

.manual-followup-grid{
    display:grid;
    grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
    gap:48px;
    align-items:center;
}

.manual-followup-copy h2{
    margin:14px 0 18px;
    color:#0f172a;
    font-size:clamp(34px,4vw,54px);
    line-height:1.05;
}

.manual-followup-lead{
    max-width:620px;
    color:#475569;
    font-size:19px;
    line-height:1.7;
}

.manual-followup-points{
    display:grid;
    gap:16px;
}

.manual-followup-point{
    display:flex;
    gap:16px;
    padding:20px;
    border-radius:20px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    box-shadow:0 12px 32px rgba(15,23,42,.05);
}

.manual-followup-point span{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:#fff7ed;
    font-size:22px;
}

.manual-followup-point strong{
    display:block;
    margin-bottom:5px;
    color:#0f172a;
    font-size:17px;
}

.manual-followup-point p{
    margin:0;
    color:#64748b;
    font-size:15px;
    line-height:1.55;
}

.manual-followup-example{
    margin-top:46px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:22px;
    align-items:stretch;
}

.manual-example-card{
    padding:24px;
    border-radius:22px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.manual-example-label{
    display:inline-flex;
    margin-bottom:14px;
    padding:7px 11px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:#334155;
    font-size:12px;
    font-weight:800;
}

.manual-example-card p{
    margin:0;
    color:#334155;
    font-size:16px;
    line-height:1.75;
}

.manual-example-output{
    background:linear-gradient(180deg,#fff7ed 0%,#ffffff 100%);
    border-color:rgba(249,115,22,.22);
}

.manual-example-output .manual-example-label{
    background:#fff7ed;
    border-color:rgba(249,115,22,.22);
    color:#c2410c;
}

.manual-example-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f97316;
    font-size:34px;
    font-weight:900;
}

@media(max-width:860px){
    .manual-followup-grid,
    .manual-followup-example{
        grid-template-columns:1fr;
    }

    .manual-example-arrow{
        transform:rotate(90deg);
    }

    .manual-followup-lead{
        font-size:16px;
    }
}

.manual-followup-note{
    margin-top:20px;
    padding:14px 18px;

    border-radius:16px;

    background:#fff7ed;
    border:1px solid rgba(249,115,22,.18);

    color:#c2410c;

    font-size:15px;
    font-weight:600;
    line-height:1.5;
}

.demo-cta-section {

    padding: 96px 0;

    background:

        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.12),
            transparent 30%
        ),

        radial-gradient(
            circle at 85% 80%,
            rgba(255,255,255,.08),
            transparent 35%
        ),

        linear-gradient(
            180deg,
            #f97316 0%,
            #ea580c 100%
        );
}

.demo-cta-box h2 {

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(34px, 4.8vw, 58px);

    line-height: 1.05;
}

.demo-cta-box p {

    max-width: 680px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.88);

    font-size: 18px;

    line-height: 1.65;
}

.demo-cta-section .btn-primary{

    background:#ffffff !important;
    color:#ea580c !important;

    border:1px solid rgba(255,255,255,.85) !important;

    box-shadow:
        0 18px 42px rgba(154,52,18,.28) !important;
}

.demo-cta-section .btn-secondary{

    background:rgba(255,255,255,.10) !important;

    color:#ffffff !important;

    border:1px solid rgba(255,255,255,.55) !important;
}

.demo-cta-section {
    padding: 96px 0;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255,255,255,.12),
            transparent 22%
        ),

        linear-gradient(
            135deg,
            #fb923c 0%,
            #f58a1f 55%,
            #ea580c 100%
        );
}

/* ==========================================
   DEMO LIVE TEST
========================================== */

.demo-live-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.demo-live-box{
    background:transparent;
    border:0;
    box-shadow:none;
    padding:0;
}

.demo-live-box h1 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.demo-live-lead {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.demo-live-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.demo-live-form label {
    font-weight: 600;
}

.demo-live-form input[type="email"] {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    font-size: 1rem;
    transition: 0.2s ease;
}

.demo-live-form input[type="email"]:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.demo-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.demo-checkbox input {
    margin-top: 3px;
}

.demo-live-form .btn {
    margin-top: 10px;
}

.demo-live-note {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.demo-preview-intro {
    margin-top: 40px;
    text-align: center;
}

.demo-preview-intro span {
    display: block;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.demo-preview-intro strong {
    font-size: 1.1rem;
}

/* Erfolg */

.demo-generated-box {
    margin-top: 24px;
    padding: 24px;
    border-radius: 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.demo-generated-box h3 {
    margin: 0 0 16px;
}

.demo-address {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px dashed #10b981;
    font-family: monospace;
    font-size: 1rem;
    word-break: break-all;
}

/* Fehler */

.demo-error-box {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Mobile */

@media (max-width: 768px) {

    .demo-live-section {
        padding: 56px 0;
    }

    .demo-live-box {
        border-radius: 18px;
    }

    .demo-live-box h1 {
        font-size: 2rem;
    }

    .demo-live-lead {
        font-size: 1rem;
    }
}

.use-case-section{
    background:
        radial-gradient(circle at 8% 8%, rgba(249,115,22,.09), transparent 30%),
        radial-gradient(circle at 92% 10%, rgba(59,130,246,.07), transparent 32%),
        linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.demo-error-box{
    margin-top:24px;
    margin-bottom:24px;

    padding:18px;

    border-radius:14px;

    background:#fef2f2;
    border:1px solid #fecaca;
    color:#991b1b;
}

.demo-steps{
    display:grid;
    gap:18px;
    margin:28px 0;
}

.demo-steps div{
    display:flex;
    align-items:flex-start;
    gap:14px;
    line-height:1.6;
}

.demo-steps span{
    width:34px;
    height:34px;
    flex:0 0 34px;

    font-size:14px;
    font-weight:800;
}

.demo-address-row{
    display:flex;
    align-items:center;
    gap:12px;
}

.demo-copy-icon{
    width:48px;
    height:48px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border:0;
    border-radius:12px;

    background:#ffffff;

    color:#10b981;

    cursor:pointer;

    transition:.2s ease;
}

.demo-copy-icon svg{
    width:22px;
    height:22px;
}

.demo-copy-icon:hover{
    background:#f0fdf4;
    transform:translateY(-1px);
}

.demo-copy-icon.copied{
    background:#10b981;
    color:#ffffff;
}

.demo-checkbox a {
    color: #f97316;
    font-weight: 600;
}

.demo-checkbox a:hover {
    text-decoration: none;
}

/* =====================================
   DEMO MOBILE WIDTH / BANKEN FIX
   ===================================== */

@media (max-width: 860px) {

    .use-case-section,
    .demo-practice-intro,
    .process-story,
    .demo-live-section {
        overflow-x: hidden;
    }

    .use-case-section .container,
    .demo-practice-intro .container {
        width: 100%;
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
        box-sizing: border-box;
    }

    .use-case-result,
    .use-case-result-mockup {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .use-case-result-mockup {
        padding: 24px 18px !important;
        border-radius: 22px;
        overflow: hidden;
    }

    .mail-demo-compact {
        width: 100%;
        max-width: 100%;
        padding: 16px !important;
        border-radius: 18px;
        box-sizing: border-box;
    }

    .mail-demo-compact > div {
        min-width: 0;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .mail-demo-code,
    .mail-demo-alias-note code {
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .use-case-preview-card,
    .variant-preview,
    .mail-send-hint,
    .use-case-benefit {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .variant-preview {
        gap: 14px;
        padding: 16px !important;
        align-items: flex-start;
    }

    .variant-number {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .variant-preview strong {
        font-size: 16px;
        line-height: 1.25;
    }

    .variant-subline,
    .mobile-variant-content {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .mail-send-hint {
        gap: 14px;
        padding: 16px !important;
        border-radius: 16px;
    }

    .mail-send-icon {
        width: 36px;
        height: 36px;<
        flex-basis: 36px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .use-case-section .container,
    .demo-practice-intro .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .use-case-result-mockup {
        padding: 20px 14px !important;
    }

    .use-case-result-mockup h3 {
        font-size: 30px !important;
        line-height: 1.08;
    }

    .use-case-result-copy {
        font-size: 16px !important;
        line-height: 1.55;
    }

    .variant-preview {
        padding: 14px !important;
    }

    .mail-demo-compact {
        padding: 14px !important;
    }
}

.demo-live-form .btn {
    white-space: normal;
    line-height: 1.3;
}

/* =====================================
   DEMO COMPACT SECTION FINAL
   ===================================== */

.demo-compact-section {
    padding: 92px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(249,115,22,.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.demo-compact-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    gap: 56px;
    align-items: center;

    padding: 54px;
    border-radius: 34px;

    background: #ffffff;
    border: 1px solid rgba(15,23,42,.08);

    box-shadow:
        0 28px 80px rgba(15,23,42,.10);
}

.demo-compact-content {
    max-width: 760px;
}

.demo-compact-content h2 {
    margin: 16px 0 18px;
    color: #0f172a;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.demo-compact-content p {
    max-width: 680px;
    margin: 0;
    color: #475569;
    font-size: 19px;
    line-height: 1.65;
}

.demo-compact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 30px;
}

.demo-compact-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #fff7ed;
    border: 1px solid rgba(249,115,22,.18);
    color: #c2410c;
    font-size: 13px;
    font-weight: 800;
}

.demo-compact-card {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
    box-shadow:
        0 24px 70px rgba(15,23,42,.22);
    color: #ffffff;
    overflow: hidden;
}

.demo-compact-card::before {
    content: "";
    position: absolute;
    inset: -80px -80px auto auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(249,115,22,.32);
    filter: blur(18px);
}

.demo-compact-card-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.demo-compact-card-head span {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 700;
}

.demo-compact-card-head strong {
    color: #86efac;
    font-size: 13px;
    font-weight: 900;
}

.demo-compact-mail-row {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.demo-compact-mail-row span {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.demo-compact-mail-row strong {
    min-width: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.demo-compact-mail-row.is-highlight strong {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(249,115,22,.16);
    border: 1px solid rgba(249,115,22,.28);
    color: #fdba74;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
}

.demo-compact-result {
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.demo-compact-result span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #f97316;
    color: #ffffff;
    font-weight: 900;
}

.demo-compact-result strong {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .demo-compact-section {
        padding: 72px 0;
    }

    .demo-compact-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 22px;
        border-radius: 28px;
    }

    .demo-compact-content h2 {
        font-size: 36px;
        line-height: 1.06;
    }

    .demo-compact-content p {
        font-size: 16.5px;
        line-height: 1.6;
    }

    .demo-compact-badges {
        margin: 22px 0 24px;
    }

    .demo-compact-content .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        line-height: 1.25;
    }

    .demo-compact-card {
        padding: 20px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .demo-compact-box {
        margin-left: -2px;
        margin-right: -2px;
        padding: 26px 18px;
    }

    .demo-compact-content h2 {
        font-size: 32px;
    }

    .demo-compact-badges span {
        width: 100%;
        justify-content: center;
    }

    .demo-compact-mail-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .demo-compact-mail-row.is-highlight strong {
        width: 100%;
    }
}

.demo-compact-section{
    padding:96px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(249,115,22,.08), transparent 30%),
        linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.demo-compact-section .section-head{
    max-width:850px;
}