/* ============================================================
   Wisanna Legal – Landing Page v7 (Companies / Demo Request)
   Derived from v6 (lead gen) styles. Adds:
   - Use-case card grid
   - Web-platform screenshot showcase
   - Lawyer-in-the-loop boundary band
   ============================================================ */

@import url("./demo-request-v6.css?v=1.0.222");

/* ── Hero eyebrow (segment tag) ──────────────────────────── */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 183, 0, 0.14);
    border: 1px solid rgba(255, 183, 0, 0.4);
    color: var(--accent-gold, #FFB700);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

/* ── Mobile PMax clarity: show concrete company use cases before form ── */
.hero--split .hero__benefits {
    display: grid;
    gap: 0.55rem;
    margin: 1rem auto 0;
    max-width: 520px;
}

.hero--split .hero__benefits li {
    align-items: flex-start;
    background: rgba(13, 44, 84, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.4;
}

.hero--split .hero__benefits svg {
    margin-top: 0.05rem;
}

@media (min-width: 768px) {
    .hero--split .hero__benefits {
        display: block;
        margin-top: 0;
        max-width: none;
    }

    .hero--split .hero__benefits li {
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        font-size: 0.95rem;
        line-height: 1.45;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .container,
    .lp-header .container,
    .hero--split .container,
    .hero--split .hero__content--split,
    .hero--split .hero__left,
    .hero--split .hero__headline {
        max-width: 100%;
        min-width: 0;
    }

    .lp-header .container {
        gap: 0.75rem;
        width: 100%;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .lp-header__logo img {
        max-width: 132px;
    }

    .lp-header__actions .btn {
        max-width: 158px;
        white-space: normal;
        line-height: 1.15;
        text-align: center;
        padding-inline: 0.75rem;
    }

    .hero--split {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero--split .container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero__eyebrow {
        max-width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
        letter-spacing: 0.045em;
        line-height: 1.25;
    }

    .hero--split h1,
    .hero--split .hero__sub,
    .hero--split .hero__benefits li {
        overflow-wrap: anywhere;
    }

    .hero--split h1 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }
}

/* ── Use-case grid ───────────────────────────────────────── */
.usecase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.usecase-card {
    background: #fff;
    border: 1px solid var(--border-light, rgba(13, 44, 84, 0.08));
    border-radius: 14px;
    padding: 1.15rem 1.15rem 1.05rem;
    box-shadow: 0 4px 18px rgba(13, 44, 84, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usecase-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(13, 44, 84, 0.1);
}

.usecase-card__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13, 44, 84, 0.06), rgba(255, 183, 0, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
}

.usecase-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-navy, #0D2C54);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.usecase-card h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy, #0D2C54);
    margin: 0 0 0.3rem;
    line-height: 1.35;
}

.usecase-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--secondary-slate, #6C7A89);
    margin: 0;
}

@media (min-width: 640px) {
    .usecase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .usecase-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.25rem;
    }

    .usecase-card {
        flex-direction: column;
        padding: 1.5rem 1.4rem 1.35rem;
    }
}

/* ── Product showcase (web-platform screenshots) ─────────── */
.showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.showcase__item {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.showcase__frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-light, rgba(13, 44, 84, 0.08));
    box-shadow: 0 14px 40px rgba(13, 44, 84, 0.14);
    background: #0D2C54;
}

/* Faux browser top bar */
.showcase__frame::before {
    content: "";
    display: block;
    height: 22px;
    background: linear-gradient(180deg, #16395f, #102f52);
}

.showcase__frame::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 11px 0 0 rgba(255, 255, 255, 0.3), 22px 0 0 rgba(255, 255, 255, 0.2);
}

.showcase__frame img {
    display: block;
    width: 100%;
    height: auto;
}

.showcase__caption h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-navy, #0D2C54);
    margin: 0 0 0.3rem;
}

.showcase__caption p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--secondary-slate, #6C7A89);
    margin: 0;
}

@media (min-width: 900px) {
    .showcase {
        gap: 3rem;
    }

    .showcase__item {
        display: grid;
        grid-template-columns: 7fr 5fr;
        align-items: center;
        gap: 2.25rem;
    }

    .showcase__item:nth-child(even) .showcase__frame {
        order: 2;
    }

    .showcase__item:nth-child(even) .showcase__caption {
        order: 1;
    }

    .showcase__caption h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .showcase__caption p {
        font-size: 1rem;
    }
}

/* ── Lawyer-in-the-loop boundary band ────────────────────── */
.boundary {
    background: linear-gradient(135deg, #0D2C54 0%, #16395f 100%);
    border-radius: 18px;
    padding: 1.75rem 1.4rem;
    color: #fff;
}

.boundary__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 183, 0, 0.15);
    border: 1px solid rgba(255, 183, 0, 0.45);
    color: var(--accent-gold, #FFB700);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}

.boundary h2 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: clamp(1.25rem, 4.5vw, 1.7rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 0.75rem;
}

.boundary > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.15rem;
}

.boundary__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.boundary__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.boundary__points svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--accent-gold, #FFB700);
}

@media (min-width: 768px) {
    .boundary {
        padding: 2.5rem 2.5rem;
    }

    .boundary__points {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.25rem;
    }
}

/* ── Office / human photo strip ──────────────────────────── */
.human-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
}

.human-strip__photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(13, 44, 84, 0.16);
}

.human-strip__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.human-strip__text h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-navy, #0D2C54);
    margin: 0 0 0.5rem;
}

.human-strip__text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-slate, #6C7A89);
    margin: 0 0 1.1rem;
}

@media (min-width: 900px) {
    .human-strip {
        grid-template-columns: 5fr 7fr;
        gap: 2.5rem;
    }

    .human-strip__photo {
        max-height: 460px;
    }

    .human-strip__photo img {
        max-height: 460px;
        object-fit: cover;
        object-position: center 35%;
    }

    .human-strip__text h3 {
        font-size: 1.35rem;
    }

    .human-strip__text p {
        font-size: 1rem;
    }
}
