/**
 * CaEFT marketing landing page - modern layout and components.
 * Scoped under .landing-modern to limit bleed into global Material/Bootstrap rules.
 */

.landing-modern {
    --lp-surface: #ffffff;
    --lp-bg: #f4f6f8;
    --lp-bg-deep: #0c0f12;
    --lp-text: #1a1d21;
    --lp-text-muted: #5c6370;
    --lp-border: rgba(15, 20, 25, 0.08);
    --lp-accent: #009103;
    --lp-accent-bright: #00c90e;
    --lp-accent-soft: rgba(0, 145, 3, 0.12);
    --lp-radius: 16px;
    --lp-radius-sm: 10px;
    --lp-shadow: 0 4px 24px rgba(15, 20, 25, 0.06);
    --lp-shadow-lg: 0 24px 48px rgba(15, 20, 25, 0.12);
    --lp-font-sans: "Instrument Sans", system-ui, sans-serif;
    --lp-font-display: "Fraunces", Georgia, serif;
    color: var(--lp-text);
    background: var(--lp-bg);
    font-family: var(--lp-font-sans);
    scroll-behavior: smooth;
}

.landing-modern .lp-container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* ----- Nav (full-width bar) ----- */

.landing-modern .lp-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    background: color-mix(in srgb, var(--lp-surface) 88%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lp-border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.landing-modern .lp-navbar {
    width: 100%;
}

.landing-modern .lp-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.landing-modern .lp-navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.65rem;
    text-decoration: none;
}

.landing-modern .lp-navbar-brand img {
    height: 40px;
    width: auto;
}

.landing-modern .lp-navbar-brand-name {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--lp-text);
}

.landing-modern .lp-nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-wrap: wrap;
    justify-content: center;
}

.landing-modern .lp-nav-links a {
    color: var(--lp-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    position: relative;
}

.landing-modern .lp-nav-links a:hover {
    color: var(--lp-text);
    background: rgba(15, 20, 25, 0.04);
}

.landing-modern .lp-nav-links a.is-active {
    color: var(--lp-accent);
    font-weight: 600;
}

@media (min-width: 992px) {
    .landing-modern .lp-nav-links a.is-active::after {
        content: "";
        position: absolute;
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.2rem;
        height: 2px;
        border-radius: 1px;
        background: linear-gradient(90deg, var(--lp-accent-bright), var(--lp-accent));
    }
}

@media (max-width: 991px) {
    .landing-modern .lp-nav-links a.is-active {
        background: var(--lp-accent-soft);
    }
}

.landing-modern .lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.landing-modern .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.landing-modern .lp-btn-nav {
    padding: 0.5rem 1.05rem;
    font-size: 0.875rem;
}

.landing-modern .lp-btn:active {
    transform: scale(0.98);
}

.landing-modern .lp-btn-ghost {
    background: transparent;
    color: var(--lp-text);
    border: 1px solid var(--lp-border);
}

.landing-modern .lp-btn-ghost:hover {
    background: var(--lp-bg);
}

.landing-modern .lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent-bright) 0%, var(--lp-accent) 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 145, 3, 0.28);
}

.landing-modern .lp-btn-primary:hover {
    color: #fff;
    filter: brightness(1.05);
}

.landing-modern .lp-nav-toggle {
    display: none;
    border: 1px solid rgba(15, 20, 25, 0.1);
    background: rgba(244, 246, 248, 0.92);
    background: color-mix(in srgb, var(--lp-bg) 90%, transparent);
    border-radius: var(--lp-radius-sm);
    padding: 0.45rem 0.65rem;
    cursor: pointer;
}

.landing-modern .lp-nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lp-text);
    margin: 5px 0;
    border-radius: 1px;
}

@media (max-width: 991px) {
    .landing-modern .lp-nav-toggle {
        display: block;
    }

    .landing-modern .lp-navbar-inner {
        flex-wrap: wrap;
    }

    .landing-modern .lp-nav-collapse {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0.75rem 0 0.25rem;
        border-top: 1px solid var(--lp-border);
    }

    .landing-modern .lp-nav-collapse.is-open {
        display: flex;
    }

    .landing-modern .lp-nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .landing-modern .lp-nav-item {
        width: 100%;
    }

    .landing-modern .lp-nav-dd-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .landing-modern .lp-nav-mega-row {
        width: 100%;
    }

    .landing-modern .lp-nav-links a {
        padding: 0.65rem 0.5rem;
    }

    .landing-modern .lp-nav-actions {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        gap: 0.5rem;
        padding-top: 0.25rem;
    }

    .landing-modern .lp-nav-actions .lp-btn-nav {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .landing-modern .lp-nav-collapse {
        display: flex !important;
        flex: 1;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .landing-modern .lp-nav-links {
        align-items: center;
    }
}

/* ----- Nav: dropdowns & mega menu ----- */

.landing-modern .lp-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.landing-modern .lp-nav-dd-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--lp-text-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-family: inherit;
    transition: color 0.2s, background 0.2s;
}

.landing-modern .lp-nav-dd-trigger:hover {
    color: var(--lp-text);
    background: rgba(15, 20, 25, 0.04);
}

.landing-modern .lp-nav-dd-icon {
    font-size: 1.125rem !important;
    opacity: 0.75;
    transition: transform 0.2s;
}

.landing-modern .lp-nav-item--dropdown.is-open .lp-nav-dd-icon {
    transform: rotate(180deg);
}

.landing-modern .lp-nav-dd-panel {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.35rem 0;
    min-width: 12rem;
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    box-shadow: var(--lp-shadow-lg);
}

.landing-modern .lp-nav-dd-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--lp-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
}

.landing-modern .lp-nav-dd-link:hover {
    color: var(--lp-text);
    background: rgba(15, 20, 25, 0.04);
}

.landing-modern .lp-nav-dd-link.is-active {
    color: var(--lp-accent);
    font-weight: 600;
}

@media (min-width: 992px) {
    .landing-modern .lp-nav-dd-panel {
        position: absolute;
        top: calc(100% + 0.2rem);
        left: 0;
        z-index: 1050;
        padding: 0.5rem;
    }
}

@media (max-width: 991px) {
    .landing-modern .lp-nav-dd-panel {
        margin-left: 0.5rem;
        margin-top: 0.15rem;
        margin-bottom: 0.35rem;
        border: 1px solid var(--lp-border);
        box-shadow: none;
    }
}

.landing-modern .lp-nav-mega-row {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 2.5rem;
}

.landing-modern .lp-nav-mega-primary {
    flex: 1;
    color: var(--lp-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

@media (min-width: 992px) {
    .landing-modern .lp-nav-mega-primary {
        flex: 0 1 auto;
    }
}

.landing-modern .lp-nav-mega-primary:hover {
    color: var(--lp-text);
    background: rgba(15, 20, 25, 0.04);
}

.landing-modern .lp-nav-mega-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--lp-text-muted);
    padding: 0.35rem;
    border-radius: 6px;
}

.landing-modern .lp-nav-mega-toggle .material-icons-round {
    font-size: 1.35rem;
    transition: transform 0.2s;
}

.landing-modern .lp-nav-item--mega.is-open .lp-nav-mega-toggle .material-icons-round {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .landing-modern .lp-nav-mega-toggle {
        display: none;
    }
}

.landing-modern .lp-nav-mega-panel {
    padding: 0.75rem;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    box-shadow: var(--lp-shadow-lg);
}

.landing-modern .lp-nav-mega-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
}

@media (min-width: 576px) {
    .landing-modern .lp-nav-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .landing-modern .lp-nav-mega-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.25rem;
    }

    .landing-modern .lp-nav-mega-panel {
        position: absolute;
        top: calc(100% + 0.2rem);
        left: 0;
        z-index: 1050;
        width: min(42rem, calc(100vw - 2.5rem));
        padding: 0.85rem;
    }
}

@media (max-width: 991px) {
    .landing-modern .lp-nav-mega-panel {
        margin-left: 0.35rem;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
        box-shadow: none;
    }
}

.landing-modern .lp-nav-mega-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.55rem 0.65rem;
    border-radius: var(--lp-radius-sm);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

.landing-modern .lp-nav-mega-item:hover {
    background: rgba(0, 145, 3, 0.06);
    border-color: rgba(0, 145, 3, 0.15);
}

.landing-modern .lp-nav-mega-item.is-active {
    background: var(--lp-accent-soft);
    border-color: rgba(0, 145, 3, 0.22);
}

.landing-modern .lp-nav-mega-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 145, 3, 0.1);
    color: var(--lp-accent);
}

.landing-modern .lp-nav-mega-icon .material-icons-round {
    font-size: 1.35rem;
}

.landing-modern .lp-nav-mega-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.landing-modern .lp-nav-mega-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lp-text);
    line-height: 1.25;
}

.landing-modern .lp-nav-mega-desc {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    line-height: 1.3;
}

.landing-modern .lp-nav-item.is-active > .lp-nav-dd-trigger,
.landing-modern .lp-nav-item.is-active > .lp-nav-mega-row .lp-nav-mega-primary {
    color: var(--lp-accent);
    font-weight: 600;
}

@media (min-width: 992px) {
    .landing-modern .lp-nav-item--dropdown.is-active > .lp-nav-dd-trigger::after,
    .landing-modern .lp-nav-item--mega.is-active > .lp-nav-mega-row .lp-nav-mega-primary::after {
        content: "";
        position: absolute;
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.2rem;
        height: 2px;
        border-radius: 1px;
        background: linear-gradient(90deg, var(--lp-accent-bright), var(--lp-accent));
    }

    .landing-modern .lp-nav-dd-trigger,
    .landing-modern .lp-nav-mega-row {
        position: relative;
    }
}

/* ----- Hero ----- */

.landing-modern .lp-hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.25rem 4rem;
    margin: 0 0 0;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
}

.landing-modern .lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(8, 12, 16, 0.88) 0%, rgba(12, 24, 18, 0.75) 50%, rgba(8, 12, 16, 0.85) 100%);
}

.landing-modern .lp-hero.lp-hero--brand {
    background:
        radial-gradient(1100px 650px at 15% 20%, rgba(0, 200, 117, 0.35) 0%, rgba(0, 200, 117, 0.16) 35%, rgba(0, 200, 117, 0.0) 70%),
        radial-gradient(900px 520px at 85% 25%, rgba(34, 197, 94, 0.28) 0%, rgba(34, 197, 94, 0.14) 40%, rgba(34, 197, 94, 0.0) 70%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.15) 0%, rgba(2, 6, 23, 0.35) 55%, rgba(2, 6, 23, 0.25) 100%),
        url("/img/practice-area-image1.webp");
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
}

.landing-modern .lp-hero.lp-hero--brand::before {
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.72) 0%, rgba(2, 6, 23, 0.55) 55%, rgba(2, 6, 23, 0.72) 100%),
        radial-gradient(850px 520px at 20% 30%, rgba(0, 200, 117, 0.22) 0%, rgba(0, 200, 117, 0.10) 55%, rgba(0, 200, 117, 0.0) 75%);
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-inner {
    max-width: 1120px;
    text-align: left;
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: start;
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-cta {
    justify-content: flex-start;
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-right {
    padding-top: 0.25rem;
    padding-left: clamp(0.75rem, 2vw, 1.5rem);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-badge {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.landing-modern .lp-hero.lp-hero--brand h1 {
    color: #fff;
    text-shadow: 0 12px 30px rgba(2, 6, 23, 0.40);
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-lead {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
    text-shadow: 0 10px 26px rgba(2, 6, 23, 0.35);
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-points {
    max-width: 920px;
    margin: 0;
    text-align: left;
    padding: 0;
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-points li {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.05rem;
    gap: 0.75rem;
    text-shadow: 0 10px 24px rgba(2, 6, 23, 0.40);
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-points li:last-child {
    margin-bottom: 0;
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-points .material-icons-round {
    font-size: 1.35rem;
    margin-top: 0.15rem;
    color: rgba(0, 200, 117, 0.95);
    filter: drop-shadow(0 10px 18px rgba(2, 6, 23, 0.35));
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-cta {
    margin-top: 0.25rem;
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-scroll svg path {
    fill: rgba(255, 255, 255, 0.55);
    fill-opacity: 1;
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-scroll svg path[fill-opacity] {
    fill-opacity: 1;
}

@media (max-width: 991px) {
    .landing-modern .lp-hero.lp-hero--brand .lp-hero-inner {
        text-align: center;
    }

    .landing-modern .lp-hero.lp-hero--brand .lp-hero-grid {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .landing-modern .lp-hero.lp-hero--brand .lp-hero-cta {
        justify-content: center;
    }

    .landing-modern .lp-hero.lp-hero--brand .lp-hero-points {
        margin: 0 auto;
        text-align: left;
    }

    .landing-modern .lp-hero.lp-hero--brand .lp-hero-right {
        padding-left: 0;
        border-left: 0;
    }
}

.landing-modern .lp-hero.lp-hero--brand .lp-btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.landing-modern .lp-hero.lp-hero--brand .lp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.landing-modern .lp-hero.lp-hero--brand .lp-hero-scroll {
    color: rgba(255, 255, 255, 0.55);
}

.landing-modern .lp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.landing-modern .lp-hero-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.landing-modern .lp-hero h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.landing-modern .lp-hero-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 2rem;
    max-width: 640px;
}

.landing-modern .lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.landing-modern .lp-hero .lp-btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.landing-modern .lp-hero .lp-btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.landing-modern .lp-hero .lp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.landing-modern .lp-hero-scroll {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ----- Section chrome ----- */

.landing-modern .lp-section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    scroll-margin-top: 5.5rem;
}

.landing-modern .lp-section-alt {
    background: var(--lp-surface);
}

.landing-modern .lp-section-head {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.landing-modern .lp-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-accent);
    margin: 0 0 0.5rem;
}

.landing-modern .lp-section-head h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.landing-modern .lp-section-head p {
    font-size: 1.0625rem;
    color: var(--lp-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ----- Feature grid ----- */

.landing-modern .lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.landing-modern .lp-feature-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem 1.35rem;
    box-shadow: var(--lp-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.landing-modern .lp-feature-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.landing-modern .lp-feature-card-link {
    position: relative;
}

.landing-modern .lp-feature-card-corner {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 20, 25, 0.55);
    transition: transform 0.2s, color 0.2s, background 0.2s, border-color 0.2s;
}

.landing-modern .lp-feature-card-corner .material-icons-round {
    font-size: 18px;
    line-height: 1;
}

.landing-modern .lp-feature-card-link:hover .lp-feature-card-corner {
    transform: translate(2px, -2px);
    color: var(--lp-accent);
    border-color: rgba(0, 145, 3, 0.22);
    background: rgba(0, 145, 3, 0.06);
}

.landing-modern .lp-feature-card-link:focus-visible .lp-feature-card-corner {
    color: var(--lp-accent);
    border-color: rgba(0, 145, 3, 0.28);
    background: rgba(0, 145, 3, 0.06);
}

.landing-modern .lp-feature-card-link:focus-visible {
    outline: 3px solid rgba(0, 145, 3, 0.28);
    outline-offset: 3px;
}

.landing-modern .lp-wizard {
    --lp-wizard-track: #e1e5ea;
    --lp-wizard-fill: var(--lp-accent);
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    box-shadow: var(--lp-shadow);
    overflow: hidden;
}

.landing-modern .lp-wizard-steps {
    padding: 1.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--lp-border);
    background: linear-gradient(180deg, #fafbfb 0%, var(--lp-surface) 100%);
}

.landing-modern .lp-wizard-steps-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
}

.landing-modern .lp-wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: 4.5rem;
    color: var(--lp-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-modern .lp-wizard-step-bubble {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 2px solid var(--lp-wizard-track);
    background: var(--lp-surface);
    color: var(--lp-text-muted);
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1;
    transition:
        border-color 0.2s,
        background 0.2s,
        color 0.2s,
        box-shadow 0.2s;
}

.landing-modern .lp-wizard-step-label {
    display: block;
    max-width: 6rem;
    line-height: 1.25;
}

.landing-modern .lp-wizard-step.is-complete .lp-wizard-step-bubble {
    border-color: var(--lp-accent);
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
}

.landing-modern .lp-wizard-step.is-complete .lp-wizard-step-bubble::after {
    content: '';
    display: block;
    width: 0.45rem;
    height: 0.7rem;
    border: solid var(--lp-accent);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.landing-modern .lp-wizard-step.is-complete .lp-wizard-step-num {
    display: none;
}

.landing-modern .lp-wizard-step.is-active {
    color: var(--lp-text);
}

.landing-modern .lp-wizard-step.is-active .lp-wizard-step-bubble {
    border-color: var(--lp-accent);
    background: linear-gradient(145deg, var(--lp-accent-bright), var(--lp-accent));
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 145, 3, 0.35);
}

.landing-modern .lp-wizard-step.is-active .lp-wizard-step-bubble::after {
    content: none;
}

.landing-modern .lp-wizard-step.is-active .lp-wizard-step-num {
    display: inline;
}

.landing-modern .lp-wizard-connector {
    flex: 1 1 2rem;
    min-width: 1.5rem;
    max-width: 5rem;
    height: 3px;
    border-radius: 2px;
    background: var(--lp-wizard-track);
    margin-top: 1.2rem;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

.landing-modern .lp-wizard-connector::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-bright));
    transition: width 0.35s ease;
}

.landing-modern .lp-wizard-connector.is-complete::after {
    width: 100%;
}

.landing-modern .lp-wizard-panels {
    padding: 0;
}

.landing-modern .lp-wizard-panel {
    display: none;
}

.landing-modern .lp-wizard-panel.is-active {
    display: block;
}

.landing-modern .lp-wizard-panel-center {
    max-width: 560px;
    margin: 0 auto;
    padding: 2rem 1.5rem 2.25rem;
    text-align: center;
}

.landing-modern .lp-wonga-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 20, 25, 0.08);
    padding: 2rem 1.75rem 1.75rem;
    text-align: left;
}

.landing-modern .lp-wonga-question {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #3d4a57;
    margin: 0 0 1rem;
    line-height: 1.45;
}

.landing-modern .lp-wonga-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--lp-accent);
    text-align: center;
    margin-bottom: 1.25rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.landing-modern .lp-wonga-slider-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-modern .lp-wonga-nudge {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--lp-border);
    background: var(--lp-surface);
    color: var(--lp-accent);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color 0.15s,
        background 0.15s,
        box-shadow 0.15s;
}

.landing-modern .lp-wonga-nudge:hover {
    border-color: var(--lp-accent);
    background: var(--lp-accent-soft);
    box-shadow: 0 2px 8px rgba(0, 145, 3, 0.15);
}

.landing-modern .lp-wonga-nudge:active {
    transform: scale(0.96);
}

.landing-modern .lp-wonga-track-wrap {
    --lp-range-pct: 0%;
    position: relative;
    flex: 1;
    min-width: 0;
    height: 3.25rem;
    display: flex;
    align-items: center;
    touch-action: none;
}

.landing-modern .lp-wonga-track-rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    border-radius: 999px;
    background: var(--lp-wizard-track);
    box-shadow:
        inset 0 1px 2px rgba(15, 20, 25, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.landing-modern .lp-wonga-track-fill {
    height: 100%;
    width: var(--lp-range-pct, 0%);
    max-width: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-bright));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    pointer-events: none;
    transition: width 0.04s linear;
}

.landing-modern .lp-wonga-range {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 3.25rem;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.landing-modern .lp-wonga-range:focus {
    outline: none;
}

.landing-modern .lp-wonga-range:focus-visible {
    outline: 2px solid rgba(0, 145, 3, 0.4);
    outline-offset: 6px;
    border-radius: 10px;
}

.landing-modern .lp-wonga-range::-webkit-slider-runnable-track {
    height: 12px;
    border-radius: 999px;
    background: transparent;
}

.landing-modern .lp-wonga-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 2.75rem;
    height: 2.75rem;
    margin-top: calc((2.75rem - 12px) / -2);
    border-radius: 50%;
    background: var(--lp-surface)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpolyline stroke='%23009103' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' points='11 7 7 12 11 17'/%3E%3Cpolyline stroke='%23009103' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' points='13 7 17 12 13 17'/%3E%3C/svg%3E")
        center / 22px 22px no-repeat;
    box-shadow:
        0 2px 12px rgba(15, 20, 25, 0.12),
        0 0 0 1px rgba(15, 20, 25, 0.06);
    border: none;
}

.landing-modern .lp-wonga-range::-moz-range-track {
    height: 12px;
    border-radius: 999px;
    background: transparent;
}

.landing-modern .lp-wonga-range::-moz-range-progress {
    height: 12px;
    border-radius: 999px;
    background: transparent;
}

.landing-modern .lp-wonga-range::-moz-range-thumb {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--lp-surface)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpolyline stroke='%23009103' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' points='11 7 7 12 11 17'/%3E%3Cpolyline stroke='%23009103' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' points='13 7 17 12 13 17'/%3E%3C/svg%3E")
        center / 22px 22px no-repeat;
    box-shadow:
        0 2px 12px rgba(15, 20, 25, 0.12),
        0 0 0 1px rgba(15, 20, 25, 0.06);
    border: none;
}

.landing-modern .lp-wizard-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.landing-modern .lp-wizard-actions--center {
    justify-content: center;
}

.landing-modern .lp-wizard-panel--tiers {
    padding: 1.25rem 1.25rem 1.5rem;
}

.landing-modern .lp-wizard-actions--tiers {
    justify-content: center;
    margin-top: 1.5rem;
}

.landing-modern .lp-wizard-summary {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    margin: 0 0 1.25rem;
    text-align: center;
}

.landing-modern .lp-wizard-panel--tiers .lp-pricing-grid {
    margin-top: 0;
}

.landing-modern .lp-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-lg);
}

.landing-modern .lp-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.landing-modern .lp-feature-icon .material-icons-round {
    font-size: 24px;
}

.landing-modern .lp-feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--lp-text);
}

.landing-modern .lp-feature-card p {
    font-size: 0.9375rem;
    color: var(--lp-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ----- Deep dive (screenshots) ----- */

.landing-modern .lp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.landing-modern .lp-split:last-child {
    margin-bottom: 0;
}

/**
 * Reverse column order when markup is visual-then-copy but layout should be text-left first.
 * Prefer alternating copy/visual in markup where possible; use this for legacy rows.
 */
.landing-modern .lp-split--reverse .lp-split-copy {
    order: 1;
}

.landing-modern .lp-split--reverse .lp-split-visual {
    order: 2;
}

.landing-modern .lp-shot {
    border-radius: var(--lp-radius);
    overflow: hidden;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    background: #e8eaed;
}

.landing-modern .lp-shot img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.landing-modern .lp-split-copy h3 {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.landing-modern .lp-split-copy p {
    color: var(--lp-text-muted);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.landing-modern .lp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-modern .lp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--lp-text);
}

.landing-modern .lp-check-list .material-icons-round {
    font-size: 1.125rem;
    color: var(--lp-accent);
    margin-top: 2px;
}

@media (max-width: 767px) {
    .landing-modern .lp-split {
        grid-template-columns: 1fr;
    }

    .landing-modern .lp-split .lp-split-visual,
    .landing-modern .lp-split .lp-split-copy {
        order: unset !important;
    }
}

/* ----- Testimonials ----- */

.landing-modern .lp-quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.landing-modern .lp-quote {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    box-shadow: var(--lp-shadow);
}

.landing-modern .lp-quote-stars {
    color: #e3a008;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.landing-modern .lp-quote blockquote {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--lp-text);
}

.landing-modern .lp-quote footer {
    font-size: 0.875rem;
    color: var(--lp-text-muted);
}

.landing-modern .lp-quote strong {
    color: var(--lp-text);
    display: block;
    font-size: 0.9375rem;
}

/* ----- Pricing ----- */

.landing-modern .lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.landing-modern .lp-price-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.landing-modern .lp-price-card.is-featured {
    border-color: var(--lp-accent);
    box-shadow: 0 12px 40px rgba(0, 145, 3, 0.18);
}

.landing-modern .lp-price-card .lp-badge-featured {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--lp-accent);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.landing-modern .lp-price-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
}

.landing-modern .lp-price-card .lp-tier-desc {
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    margin: 0 0 1.25rem;
}

.landing-modern .lp-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--lp-border);
    font-size: 0.875rem;
}

.landing-modern .lp-price-row:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.landing-modern .lp-price-row span:first-child {
    color: var(--lp-text-muted);
}

.landing-modern .lp-price-row .lp-amount {
    font-weight: 700;
    color: var(--lp-text);
    white-space: nowrap;
}

.landing-modern .lp-price-note {
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
    margin-top: auto;
    padding-top: 0.5rem;
}

/* ----- CTA band ----- */

.landing-modern .lp-cta-band {
    margin: 0 1.25rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #0f1812 0%, #1a2e1f 100%);
    border-radius: var(--lp-radius);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--lp-shadow-lg);
}

.landing-modern .lp-cta-band h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin: 0 0 0.75rem;
}

.landing-modern .lp-cta-band p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.landing-modern .lp-cta-band .lp-hero-cta {
    margin-top: 0;
}

/*
 * CTA band uses a dark gradient; "ghost" and outline-light buttons must not use dark text.
 * (.lp-btn-outline-light was previously only defined under .lp-hero, so band-only CTAs had no light styling.)
 */
.landing-modern .lp-cta-band .lp-btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.landing-modern .lp-cta-band .lp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.landing-modern .lp-cta-band .lp-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.landing-modern .lp-cta-band .lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ----- Footer ----- */

.landing-modern .lp-footer {
    background: var(--lp-bg-deep);
    color: rgba(255, 255, 255, 0.78);
    margin-top: 0;
    padding: 3rem 0 1.5rem;
}

.landing-modern .lp-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.landing-modern .lp-footer a:hover {
    color: var(--lp-accent-bright);
}

.landing-modern .lp-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-modern .lp-footer-brand img {
    height: 40px;
    margin-bottom: 0.75rem;
}

.landing-modern .lp-footer h4 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1rem;
}

.landing-modern .lp-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-modern .lp-footer li {
    margin-bottom: 0.5rem;
}

.landing-modern .lp-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
    .landing-modern .lp-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Contact page ----- */

.landing-modern .lp-alert-success {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--lp-radius-sm);
    background: var(--lp-accent-soft);
    border: 1px solid rgba(0, 145, 3, 0.25);
    color: var(--lp-text);
    font-size: 0.9375rem;
}

.landing-modern .lp-field-error {
    font-size: 0.8125rem;
    color: #b42318;
    margin: 0.35rem 0 0;
}

.landing-modern .lp-input.is-invalid,
.landing-modern .lp-textarea.is-invalid {
    border-color: rgba(180, 35, 24, 0.45);
}

.landing-modern .lp-contact-page {
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.landing-modern .lp-contact-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.landing-modern .lp-contact-head h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--lp-text);
}

.landing-modern .lp-contact-head p {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

.landing-modern .lp-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.landing-modern .lp-contact-aside {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    box-shadow: var(--lp-shadow);
}

.landing-modern .lp-contact-aside h2 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-text-muted);
    margin: 0 0 1rem;
}

.landing-modern .lp-contact-aside p,
.landing-modern .lp-contact-aside a {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0 0 0.75rem;
    color: var(--lp-text);
}

.landing-modern .lp-contact-aside a {
    color: var(--lp-accent);
    font-weight: 600;
    text-decoration: none;
}

.landing-modern .lp-contact-aside a:hover {
    text-decoration: underline;
}

.landing-modern .lp-contact-form-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: clamp(1.5rem, 4vw, 2rem);
    box-shadow: var(--lp-shadow);
}

.landing-modern .lp-field {
    margin-bottom: 1.15rem;
}

.landing-modern .lp-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: 0.35rem;
}

.landing-modern .lp-input,
.landing-modern .lp-textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
    font-family: var(--lp-font-sans);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    background: var(--lp-bg);
    color: var(--lp-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-modern .lp-textarea {
    min-height: 140px;
    resize: vertical;
}

.landing-modern .lp-input:focus,
.landing-modern .lp-textarea:focus {
    outline: none;
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px var(--lp-accent-soft);
}

.landing-modern .lp-contact-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    .landing-modern .lp-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Highlight “browser” frames ----- */

.landing-modern .lp-browser {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    background: var(--lp-surface);
}

.landing-modern .lp-browser-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #eef1f4 0%, #e4e8ec 100%);
    border-bottom: 1px solid var(--lp-border);
}

.landing-modern .lp-browser-chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c5ccd4;
}

.landing-modern .lp-browser-chrome span:nth-child(1) {
    background: #ff5f57;
}

.landing-modern .lp-browser-chrome span:nth-child(2) {
    background: #febc2e;
}

.landing-modern .lp-browser-chrome span:nth-child(3) {
    background: #28c840;
}

.landing-modern .lp-browser-title {
    margin-left: auto;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
}

.landing-modern .lp-browser-body {
    line-height: 0;
    background: #f0f2f5;
}

.landing-modern .lp-browser-body img {
    width: 100%;
    height: auto;
    display: block;
}

.landing-modern .lp-browser-body--demo {
    line-height: normal;
}

.landing-modern .lp-time-mock {
    padding: 1.25rem 1.5rem 1.5rem;
    background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 100%);
    min-height: 220px;
}

.landing-modern .lp-time-mock-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 0.65rem;
    max-width: 55%;
}

.landing-modern .lp-time-mock-bar.short {
    max-width: 35%;
}

.landing-modern .lp-time-widget {
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.landing-modern .lp-time-widget .material-icons-round {
    font-size: 2rem;
    color: var(--lp-accent);
    flex-shrink: 0;
}

.landing-modern .lp-time-widget-main {
    flex: 1;
    min-width: 0;
}

.landing-modern .lp-time-readout {
    font-family: ui-monospace, monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.landing-modern .lp-time-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.landing-modern .lp-time-meta {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
}

.landing-modern .lp-billable-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
    border: 1px solid rgba(0, 145, 3, 0.22);
    line-height: 1;
}

.landing-modern .lp-demo-diary-strip {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: rgba(0, 145, 3, 0.06);
    border: 1px solid rgba(0, 145, 3, 0.14);
    font-size: 0.6875rem;
    line-height: 1.35;
    color: var(--lp-text);
}

.landing-modern .lp-demo-diary-strip .material-icons-round {
    font-size: 1rem;
    color: var(--lp-accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.landing-modern .lp-demo-diary-strip strong {
    font-weight: 700;
    color: var(--lp-text);
}

/* ----- Demo reporting (home highlight) ----- */

.landing-modern .lp-demo-reporting {
    display: grid;
    grid-template-columns: 56px 1fr;
    min-height: 240px;
    background: linear-gradient(145deg, #f1f5f9 0%, #e8edf3 100%);
    line-height: normal;
}

.landing-modern .lp-demo-reporting-nav {
    background: #1e293b;
    padding: 0.65rem 0.45rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.landing-modern .lp-demo-reporting-nav .material-icons-round {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.45);
}

.landing-modern .lp-demo-reporting-nav .material-icons-round.is-active {
    color: var(--lp-accent-bright);
}

.landing-modern .lp-demo-reporting-main {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.landing-modern .lp-demo-reporting-title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
}

.landing-modern .lp-demo-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .landing-modern .lp-demo-kpis {
        grid-template-columns: repeat(4, 1fr);
    }
}

.landing-modern .lp-demo-kpi {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 0.5rem 0.55rem;
    box-shadow: 0 1px 2px rgba(15, 20, 25, 0.04);
}

.landing-modern .lp-demo-kpi-label {
    font-size: 0.625rem;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.landing-modern .lp-demo-kpi-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-text);
    font-variant-numeric: tabular-nums;
}

.landing-modern .lp-demo-chart {
    flex: 1;
    height: 88px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    box-shadow: 0 1px 2px rgba(15, 20, 25, 0.04);
}

.landing-modern .lp-demo-chart-bar {
    flex: 1;
    min-width: 0;
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, var(--lp-accent-bright) 0%, var(--lp-accent) 100%);
    opacity: 0.85;
}

.landing-modern .lp-demo-chart-bar:nth-child(1) {
    height: 42%;
}

.landing-modern .lp-demo-chart-bar:nth-child(2) {
    height: 68%;
}

.landing-modern .lp-demo-chart-bar:nth-child(3) {
    height: 52%;
}

.landing-modern .lp-demo-chart-bar:nth-child(4) {
    height: 88%;
}

.landing-modern .lp-demo-chart-bar:nth-child(5) {
    height: 61%;
}

.landing-modern .lp-demo-chart-bar:nth-child(6) {
    height: 74%;
}

.landing-modern .lp-demo-chart-bar:nth-child(7) {
    height: 55%;
}

/* ----- Demo payments (home highlight) ----- */

.landing-modern .lp-demo-payments {
    padding: 0.85rem 1rem 1rem;
    background: linear-gradient(180deg, #fafbfc 0%, #f1f4f8 100%);
    line-height: normal;
    min-height: 240px;
}

.landing-modern .lp-demo-payments-caption {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
    margin-bottom: 0.35rem;
}

.landing-modern .lp-demo-payments-flow {
    font-size: 0.625rem;
    color: var(--lp-text-muted);
    margin: 0 0 0.65rem;
    line-height: 1.4;
}

.landing-modern .lp-demo-payments-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.6875rem;
}

.landing-modern .lp-demo-payments-table th {
    text-align: left;
    padding: 0.35rem 0.4rem;
    color: var(--lp-text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--lp-border);
}

.landing-modern .lp-demo-payments-table td {
    padding: 0.45rem 0.4rem;
    border-bottom: 1px solid rgba(15, 20, 25, 0.06);
    color: var(--lp-text);
    font-variant-numeric: tabular-nums;
}

.landing-modern .lp-demo-payments-table tr:last-child td {
    border-bottom: none;
}

.landing-modern .lp-demo-pay-amount {
    font-weight: 600;
    color: var(--lp-accent);
}

.landing-modern .lp-demo-pay-status {
    display: inline-block;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.landing-modern .lp-demo-pay-status--done {
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
}

.landing-modern .lp-demo-pay-status--pend {
    background: rgba(226, 163, 14, 0.15);
    color: #a15c07;
}

/* ----- Generic demo components (service pages) ----- */

.landing-modern .lp-demo-panel {
    padding: 1rem 1.1rem 1.15rem;
    background: linear-gradient(180deg, #fafbfc 0%, #f1f4f8 100%);
    min-height: 240px;
    line-height: normal;
}

.landing-modern .lp-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.landing-modern .lp-demo-title {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
}

.landing-modern .lp-demo-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.landing-modern .lp-demo-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 20, 25, 0.10);
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lp-text-muted);
    line-height: 1;
}

.landing-modern .lp-demo-chip.is-accent {
    background: var(--lp-accent-soft);
    border-color: rgba(0, 145, 3, 0.22);
    color: var(--lp-accent);
}

.landing-modern .lp-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.landing-modern .lp-demo-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 0.65rem 0.7rem;
    box-shadow: 0 1px 2px rgba(15, 20, 25, 0.04);
    min-width: 0;
}

.landing-modern .lp-demo-card-label {
    font-size: 0.625rem;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.landing-modern .lp-demo-card-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-modern .lp-demo-lines {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.5rem;
}

.landing-modern .lp-demo-line {
    height: 10px;
    border-radius: 6px;
    background: #e2e8f0;
    max-width: 100%;
}

.landing-modern .lp-demo-line.w-90 { width: 90%; }
.landing-modern .lp-demo-line.w-75 { width: 75%; }
.landing-modern .lp-demo-line.w-60 { width: 60%; }
.landing-modern .lp-demo-line.w-45 { width: 45%; }

.landing-modern .lp-demo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.6875rem;
    margin-top: 0.25rem;
}

.landing-modern .lp-demo-table th {
    text-align: left;
    padding: 0.35rem 0.4rem;
    color: var(--lp-text-muted);
    font-weight: 700;
    border-bottom: 1px solid var(--lp-border);
}

.landing-modern .lp-demo-table td {
    padding: 0.45rem 0.4rem;
    border-bottom: 1px solid rgba(15, 20, 25, 0.06);
    color: var(--lp-text);
    font-variant-numeric: tabular-nums;
}

.landing-modern .lp-demo-table tr:last-child td {
    border-bottom: none;
}

.landing-modern .lp-demo-status {
    display: inline-block;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.landing-modern .lp-demo-status.is-ok {
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
}

.landing-modern .lp-demo-status.is-warn {
    background: rgba(226, 163, 14, 0.15);
    color: #a15c07;
}

.landing-modern .lp-demo-status.is-private {
    background: rgba(30, 41, 59, 0.10);
    color: #1e293b;
}

/* ----- Inner marketing pages (Maatora content refresh) ----- */

.landing-modern .lp-inner-hero {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
}

.landing-modern .lp-inner-hero h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    color: var(--lp-text);
}

.landing-modern .lp-inner-hero-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--lp-text-muted);
    max-width: 720px;
    margin: 0;
}

.landing-modern .lp-pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.landing-modern .lp-pill-list li {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-text);
}

.landing-modern .lp-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .landing-modern .lp-two-col {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.landing-modern .lp-legal-callout {
    margin-top: 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: var(--lp-radius-sm);
    border: 1px solid rgba(0, 145, 3, 0.25);
    background: var(--lp-accent-soft);
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--lp-text);
}

.landing-modern .lp-legal-callout a {
    color: var(--lp-accent);
    font-weight: 600;
}

.landing-modern .lp-prose {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--lp-text-muted);
}

.landing-modern .lp-prose p {
    color: var(--lp-text-muted);
}

.landing-modern .lp-trust-strip {
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.65);
}

.landing-modern .lp-trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    padding: 1rem 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
}

.landing-modern .lp-trust-inner span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.landing-modern .lp-trust-inner .material-icons-round {
    font-size: 1.1rem;
    color: var(--lp-accent);
}

.landing-modern .lp-service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .landing-modern .lp-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.landing-modern .lp-service-card {
    position: relative;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    padding: 1.25rem 1.35rem;
    height: 100%;
}

.landing-modern .lp-service-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.landing-modern .lp-service-card-head h2 {
    font-family: var(--lp-font-display);
    font-size: 1.25rem;
    margin: 0;
    color: var(--lp-text);
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}

.landing-modern .lp-service-card-go {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: -0.15rem;
    border-radius: 10px;
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.9);
    color: var(--lp-accent);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.landing-modern .lp-service-card-go:hover {
    background: var(--lp-accent-soft);
    border-color: rgba(0, 145, 3, 0.35);
    color: var(--lp-accent);
    transform: translate(1px, -1px);
}

.landing-modern .lp-service-card-go:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: 2px;
}

.landing-modern .lp-service-card-go .material-icons-round {
    font-size: 1.35rem;
}

.landing-modern .lp-service-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--lp-text-muted);
    margin-bottom: 0.75rem;
}

.landing-modern .lp-service-card ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.55;
}

.landing-modern .lp-service-card .lp-legal-callout {
    margin-top: 1rem;
}

.landing-modern .lp-pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
}

.landing-modern .lp-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.landing-modern .lp-pricing-table th,
.landing-modern .lp-pricing-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--lp-border);
}

.landing-modern .lp-pricing-table th {
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lp-text-muted);
    background: rgba(15, 20, 25, 0.03);
}

.landing-modern .lp-pricing-table tr:last-child td {
    border-bottom: none;
}

.landing-modern .lp-resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .landing-modern .lp-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .landing-modern .lp-resource-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.landing-modern .lp-resource-card {
    display: block;
    padding: 1.25rem;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
    height: 100%;
}

.landing-modern .lp-resource-card:hover {
    border-color: rgba(0, 145, 3, 0.35);
    background: rgba(0, 145, 3, 0.04);
}

.landing-modern .lp-resource-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.35rem;
    color: var(--lp-text);
}

.landing-modern .lp-resource-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.5;
}

.landing-modern .lp-faq details {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    background: var(--lp-surface);
    padding: 0.85rem 1rem;
    margin-bottom: 0.65rem;
}

.landing-modern .lp-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--lp-text);
    list-style: none;
}

.landing-modern .lp-faq summary::-webkit-details-marker {
    display: none;
}

.landing-modern .lp-faq details[open] summary {
    margin-bottom: 0.5rem;
}

.landing-modern .lp-faq details p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--lp-text-muted);
}

.landing-modern .lp-legal-doc {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.landing-modern .lp-legal-doc h2 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.landing-modern .lp-legal-doc p,
.landing-modern .lp-legal-doc li {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--lp-text-muted);
}

.landing-modern .lp-legal-doc ul.plain {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.landing-modern .lp-legal-doc ul.plain li {
    margin-bottom: 0.5rem;
}

.landing-modern .lp-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    justify-content: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.landing-modern .lp-footer-legal a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.landing-modern .lp-footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ----- Platform overview (flow strip + compact demos) ----- */

.landing-modern .lp-platform-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}

.landing-modern .lp-platform-flow-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 1rem 0.65rem;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    box-shadow: var(--lp-shadow);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
    color: inherit;
    scroll-margin-top: 5.5rem;
}

.landing-modern .lp-platform-flow-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-lg);
}

.landing-modern .lp-platform-flow-link:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: 2px;
}

.landing-modern .lp-platform-flow-step {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-accent);
    margin-bottom: 0.4rem;
}

.landing-modern .lp-platform-flow-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.landing-modern .lp-platform-flow-icon .material-icons-round {
    font-size: 26px;
}

.landing-modern .lp-platform-flow-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--lp-text);
    margin: 0 0 0.25rem;
    line-height: 1.25;
}

.landing-modern .lp-platform-flow-desc {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    margin: 0;
    line-height: 1.35;
}

.landing-modern .lp-demo-onboarding {
    padding: 1rem 1.1rem 1.25rem;
    background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 100%);
    min-height: 200px;
}

.landing-modern .lp-demo-onboarding-head {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-text-muted);
    margin-bottom: 0.75rem;
}

.landing-modern .lp-demo-onboarding-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    margin-bottom: 0.45rem;
    font-size: 0.75rem;
    color: var(--lp-text);
}

.landing-modern .lp-demo-file-tree {
    padding: 1rem 1.1rem 1.25rem;
    background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 100%);
    min-height: 200px;
    font-size: 0.8125rem;
}

.landing-modern .lp-demo-file-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0;
    color: var(--lp-text);
}

.landing-modern .lp-demo-file-row.sub {
    padding-left: 1.25rem;
    color: var(--lp-text-muted);
}

.landing-modern .lp-demo-file-row .material-icons-round {
    font-size: 1.125rem;
    color: var(--lp-accent);
    flex-shrink: 0;
}

.landing-modern .lp-demo-comms {
    padding: 1rem 1.1rem 1.25rem;
    background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 100%);
    min-height: 200px;
}

.landing-modern .lp-demo-comms-msg {
    max-width: 94%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    font-size: 0.75rem;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    color: var(--lp-text);
}

.landing-modern .lp-demo-comms-msg strong {
    font-weight: 700;
    color: var(--lp-text);
}

.landing-modern .lp-demo-comms-msg em {
    font-style: normal;
    font-weight: 600;
    color: var(--lp-accent);
}

.landing-modern .lp-demo-comms-msg.is-in {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
}

.landing-modern .lp-demo-comms-msg.is-out {
    margin-left: auto;
    background: rgba(0, 145, 3, 0.1);
    border: 1px solid rgba(0, 145, 3, 0.22);
}

.landing-modern .lp-split-copy h2[id^="platform-"] {
    scroll-margin-top: 6rem;
}
