/* -- Google Fonts -- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ================================================
   BRAND PALETTE
   --navy:      #0f0c2e   (deep navy, primary dark)
   --ink:       #1a2740   (slightly lighter navy)
   --brand:     #22088d   (brand purple/blue)
   --mid:       #4f35d6   (mid brand)
   --gold:      #c9a84c   (gold accent)
   --gold-lt:   #d4aa5c   (lighter gold)
   --green:     #10b981   (success/live)
   --light:     #f5f4fb   (off-white tint)
   --border:    #e4e2f0   (subtle border)
   --muted:     #6b6882   (muted text)
   --cream:     #f8f6f1   (warm off-white)
   --warm-grey: #f2f0eb   (warm section bg)
   --white:     #ffffff
================================================ */

:root {
    --navy: #0f0c2e;
    --ink: #1a2740;
    --brand: #22088d;
    --brand-mid: #3b1fbd;
    --mid: #4f35d6;
    --gold: #c9a84c;
    --gold-lt: #d4aa5c;
    --green: #10b981;
    --green-bg: #d1f0e5;
    --amber: #7a5a0f;
    --amber-bg: #fef3c7;
    --cream: #f8f6f1;
    --warm-grey: #f2f0eb;
    --light: #f5f4fb;
    --border: #e4e2f0;
    --muted: #6b6882;
    --white: #ffffff;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ================================================
   HEADER / Z-INDEX FIXES
================================================ */
#header,
#header-wrap,
#logo,
#primary-menu {
    position: relative;
    z-index: 1000;
}

.hero-grid-bg {
    pointer-events: none;
}

.hero-v2,
.hero-v2 * {
    pointer-events: auto;
}


/* ================================================
   CTA BAND
================================================ */
.cta-band {
    background: linear-gradient(180deg, rgba(255,255,255,0.85), var(--white));
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

    .cta-band .cta-inner {
        display: flex;
        align-items: center;
        gap: 28px;
        padding: 18px 0;
    }

.cta-copy small {
    display: block;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.cta-copy h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    color: var(--navy);
    font-weight: 700;
}

.cta-copy p {
    margin: 6px 0 0;
    color: var(--muted);
}

@media (max-width: 992px) {
    .cta-band .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cta-copy h3 {
        font-size: 20px;
    }
}


/* ================================================
   HERO V2 (homepage / pricing style)
================================================ */
.hero-v2 {
    background: var(--white);
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 36px;
    overflow: hidden;
}

.hero-v2-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
    min-height: 760px;
}

.hero-v2 .container,
.hero-sector-row .container {
    max-width: 1380px;
    width: 92%;
}

.hero-copy {
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 28px;
    letter-spacing: .02em;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.02;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin: 0 0 22px 0;
}

    .hero-title .accent {
        color: var(--brand);
        font-style: italic;
        font-weight: 500;
    }

.hero-message {
    font-size: 1.38rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 580px;
    margin: 0 0 34px 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    background: var(--brand);
    color: var(--white) !important;
    border: 1px solid var(--brand);
    border-radius: 14px;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(34,8,141,.22);
    transition: all .2s ease;
    cursor: pointer;
    white-space: nowrap;
}

    .hero-btn-primary:hover {
        background: var(--mid);
        border-color: var(--mid);
        color: var(--white) !important;
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(34,8,141,.28);
    }

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 1.02rem;
    font-weight: 600;
    text-decoration: none;
}

    .hero-btn-secondary:hover {
        color: var(--brand);
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    max-width: 600px;
}

.hero-stat {
    padding-right: 18px;
}

    .hero-stat + .hero-stat {
        padding-left: 28px;
        border-left: 1px solid var(--border);
    }

.hero-stat-value {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.hero-stat-label {
    display: block;
    font-size: 0.98rem;
    line-height: 1.45;
    color: var(--muted);
}


/* ================================================
   HERO VISUAL SIDE
================================================ */
.hero-visual-wrap {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid-bg {
    position: absolute;
    inset: 20px 0 20px 0;
    border-radius: 28px;
    background: linear-gradient(to right, rgba(34,8,141,.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(34,8,141,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    background-color: var(--light);
    opacity: 1;
}

.hero-product-shot {
    max-width: 760px;
    transform: translateX(8px);
    position: relative;
    z-index: 2;
}

    .hero-product-shot img {
        width: 100%;
        height: auto;
        display: block;
        transform: none;
        filter: drop-shadow(0 12px 24px rgba(15,12,46,.22));
    }

    /* Ensure the inline-styled card div always has enough shadow to be visible —
   overrides the very faint inline box-shadow at all viewport widths */
    .hero-product-shot > div {
        box-shadow: 0 16px 48px rgba(34,8,141,0.14), 0 4px 12px rgba(0,0,0,0.07) !important;
        border-color: #d0cce8 !important;
    }

.hero-console {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15,12,46,.12);
    padding: 24px;
}

.hero-console-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.hero-console-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px 0;
}

.hero-console-sub {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
}

.hero-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-bg);
    color: var(--green);
    border: 1px solid #6ee7b7;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.hero-alert-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 18px 16px 18px;
    margin-bottom: 16px;
}

.hero-alert-badge {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    font-size: .8rem;
    font-weight: 800;
    border-radius: 8px;
    padding: 5px 10px;
    margin-bottom: 12px;
}

.hero-alert-text {
    font-size: 1.06rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.hero-metric {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
}

.hero-metric-icon {
    font-size: 1rem;
    margin-bottom: 6px;
}

.hero-metric-label {
    display: block;
    font-size: .86rem;
    color: var(--muted);
    margin-bottom: 3px;
}

.hero-metric-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
}

.hero-progress-row {
    margin: 8px 0 18px 0;
}

.hero-progress-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .92rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.hero-progress-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: var(--border);
    overflow: hidden;
}

.hero-progress-fill {
    width: 87%;
    height: 100%;
    background: var(--brand);
    border-radius: 999px;
}

.hero-people {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
}

.hero-person-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: var(--white);
    font-size: .92rem;
    font-weight: 800;
    flex-shrink: 0;
}

    .hero-avatar.alt {
        background: var(--mid);
    }

    .hero-avatar.alt2 {
        background: var(--gold);
    }

.hero-person-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 2px 0;
}

.hero-person-role {
    font-size: .87rem;
    color: var(--muted);
    margin: 0;
}

.hero-status {
    flex-shrink: 0;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .82rem;
    font-weight: 700;
}

    .hero-status.safe {
        background: var(--green-bg);
        color: var(--green);
        border: 1px solid #6ee7b7;
    }

    .hero-status.pending {
        background: var(--amber-bg);
        color: var(--amber);
        border: 1px solid #fcd34d;
    }

.hero-floating-card {
    position: absolute;
    left: -18px;
    bottom: 34px;
    z-index: 3;
    background: rgba(255,255,255,.97);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(15,12,46,.12);
    padding: 14px 16px;
    min-width: 170px;
}

.hero-floating-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3px;
}

.hero-floating-icon {
    font-size: 1rem;
}

.hero-floating-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hero-floating-label {
    font-size: .86rem;
    color: var(--muted);
}

/* Contact page — hero visual card */
.hero-visual-wrap .contact-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    min-width: unset;
    border-radius: 24px;
    padding: 0;
    border: 1px solid var(--border);
    border-top: 3px solid var(--brand);
    box-shadow: 0 24px 60px rgba(15,12,46,.12);
    background: rgba(255,255,255,.97);
    transition: none;
}

    .hero-visual-wrap .contact-card:hover {
        transform: none;
    }


/* ================================================
   SECTOR ROW  (updated to brand palette)
================================================ */
.hero-sector-row {
    background: var(--navy);
    border-top: none;
    border-bottom: none;
    padding: 20px 0;
}

.hero-sector-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-sector-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-right: 12px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.80);
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

    .hero-chip:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.35);
        color: var(--white);
    }

    .hero-chip.active {
        background: var(--gold);
        color: var(--white);
        border-color: var(--gold);
    }

.category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.07);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.80);
    min-width: 160px;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

    .category:hover {
        background: rgba(255,255,255,0.92);
        border-color: rgba(255,255,255,0.92);
        color: var(--navy);
    }

        .category:hover img {
            filter: brightness(0) invert(0);
            opacity: 0.85;
        }

    .category img {
        width: 24px;
        height: 24px;
        opacity: 0.75;
        filter: brightness(0) invert(1);
        transition: filter 0.2s, opacity 0.2s;
    }

    .category.active {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--white);
        font-weight: 600;
    }

        .category.active img {
            filter: brightness(0) invert(1);
            opacity: 1;
        }

.category-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
}

.category-card {
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.2s ease;
}

    .category-card:hover {
        border-color: var(--brand);
        transform: translateY(-2px);
    }

    .category-card.active {
        border: 2px solid var(--navy);
        background: var(--navy);
        color: var(--white);
    }


/* ================================================
   TIMELINE
================================================ */
.tl-section {
    max-width: 1140px;
    margin: 0 auto;
}

.tl-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s ease forwards;
}

.tl-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    display: block;
    margin-bottom: 0.6rem;
}

.tl-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
}

    .tl-title em {
        font-style: italic;
        color: var(--brand);
        font-weight: 500;
    }

.tl-aside {
    text-align: right;
}

    .tl-aside p {
        font-size: 14px;
        color: var(--muted);
        font-weight: 300;
        line-height: 1.65;
        max-width: 260px;
        margin: 0 0 1rem auto;
    }

.tl-cta {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 11px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .tl-cta:hover {
        background: var(--mid);
        transform: translateY(-1px);
    }

.tl-track {
    position: relative;
}

    .tl-track::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 28px;
        right: 28px;
        height: 2px;
        margin-top: -1px;
        background: linear-gradient( 90deg, var(--brand) 0%, var(--brand) 50%, var(--green) 53%, var(--green) 63%, var(--gold) 66%, var(--gold) 100% );
        opacity: 0.18;
        z-index: 0;
    }

    .tl-track::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 28px;
        height: 2px;
        width: 0;
        margin-top: -1px;
        background: linear-gradient( 90deg, var(--brand) 0%, var(--brand) 50%, var(--green) 53%, var(--green) 63%, var(--gold) 66%, var(--gold) 100% );
        z-index: 0;
        animation: trackGrow 1.8s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

@keyframes trackGrow {
    to {
        width: calc(100% - 56px);
    }
}

.tl-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    position: relative;
    z-index: 1;
    min-height: 360px;
}

.tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.4rem;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

    .tl-step:nth-child(1) {
        animation-delay: 0.30s;
    }

    .tl-step:nth-child(2) {
        animation-delay: 0.45s;
    }

    .tl-step:nth-child(3) {
        animation-delay: 0.60s;
    }

    .tl-step:nth-child(4) {
        animation-delay: 0.75s;
    }

    .tl-step:nth-child(5) {
        animation-delay: 0.90s;
    }

    .tl-step:nth-child(6) {
        animation-delay: 1.05s;
    }

    .tl-step:nth-child(odd) {
        flex-direction: column-reverse;
    }

    .tl-step:nth-child(even) {
        flex-direction: column;
    }

.tl-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 2.5px solid rgba(255,255,255,0.4);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}

.tl-step:hover .tl-node {
    transform: scale(1.14);
}

.tl-step:nth-child(1) .tl-node,
.tl-step:nth-child(2) .tl-node,
.tl-step:nth-child(3) .tl-node {
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(34,8,141,0.3);
}

.tl-step:nth-child(4) .tl-node {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(16,185,129,0.35);
}

.tl-step:nth-child(5) .tl-node,
.tl-step:nth-child(6) .tl-node {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}

.tl-stem {
    width: 1.5px;
    height: 28px;
    flex-shrink: 0;
}

.tl-step:nth-child(1) .tl-stem,
.tl-step:nth-child(2) .tl-stem,
.tl-step:nth-child(3) .tl-stem {
    background: var(--brand);
    opacity: 0.25;
}

.tl-step:nth-child(4) .tl-stem {
    background: var(--green);
    opacity: 0.35;
}

.tl-step:nth-child(5) .tl-stem,
.tl-step:nth-child(6) .tl-stem {
    background: var(--gold);
    opacity: 0.45;
}

.tl-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 1rem 0.9rem;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.tl-step:hover .tl-card {
    box-shadow: 0 10px 32px rgba(34,8,141,0.10);
    transform: translateY(-3px);
}

.tl-step:nth-child(odd) .tl-card {
    border-bottom: 3px solid transparent;
}

.tl-step:nth-child(even) .tl-card {
    border-top: 3px solid transparent;
}

.tl-step:nth-child(1) .tl-card {
    border-bottom-color: var(--brand);
}

.tl-step:nth-child(2) .tl-card {
    border-top-color: var(--brand);
}

.tl-step:nth-child(3) .tl-card {
    border-bottom-color: var(--brand);
}

.tl-step:nth-child(4) .tl-card {
    border-top-color: var(--green);
}

.tl-step:nth-child(5) .tl-card {
    border-bottom-color: var(--gold);
}

.tl-step:nth-child(6) .tl-card {
    border-top-color: var(--gold);
}

.tl-phase {
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.tl-step:nth-child(1) .tl-phase,
.tl-step:nth-child(2) .tl-phase,
.tl-step:nth-child(3) .tl-phase {
    color: var(--brand);
}

.tl-step:nth-child(4) .tl-phase {
    color: var(--green);
}

.tl-step:nth-child(5) .tl-phase,
.tl-step:nth-child(6) .tl-phase {
    color: var(--amber);
}

.tl-card-title {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.3;
}

.tl-card-body {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}

.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: 8px;
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    background: var(--light);
    padding: 2px 8px;
    border-radius: 999px;
}

.tl-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.5s 1.3s ease forwards;
}

.tl-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
}

.tl-pip {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .tl-header {
        grid-template-columns: 1fr;
    }

    .tl-aside {
        text-align: left;
    }

        .tl-aside p {
            margin-left: 0;
        }

    .tl-steps {
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 1.25rem;
        min-height: auto;
    }

    .tl-track::before,
    .tl-track::after {
        display: none;
    }

    .tl-step:nth-child(odd),
    .tl-step:nth-child(even) {
        flex-direction: column;
        justify-content: flex-start;
    }

        .tl-step:nth-child(odd) .tl-card {
            border-bottom: none;
            border-top: 3px solid;
        }

    .tl-step:nth-child(1) .tl-card {
        border-top-color: var(--brand);
    }

    .tl-step:nth-child(3) .tl-card {
        border-top-color: var(--brand);
    }

    .tl-step:nth-child(5) .tl-card {
        border-top-color: var(--gold);
    }
}

@media (max-width: 560px) {
    .tl-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}


/* ================================================
   LF HERO (About / Services style)
================================================ */
.lf-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 4rem;
}

    .lf-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(34,8,141,0.55) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.12) 0%, transparent 60%);
        pointer-events: none;
    }

    .lf-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient( 90deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 60px );
        pointer-events: none;
    }

.lf-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lf-hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-lt);
    display: block;
    margin-bottom: 1rem;
}

.lf-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin: 0 0 1.25rem;
}

    .lf-hero-title .accent {
        color: var(--gold-lt);
        font-style: italic;
    }

.lf-hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin: 0 0 0.85rem;
    max-width: 520px;
}

.lf-hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
}

    .btn-primary-gold:hover {
        background: var(--gold-lt);
        color: var(--white);
        text-decoration: none;
    }

.btn-ghost-white {
    display: inline-block;
    color: rgba(255,255,255,0.75);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

    .btn-ghost-white:hover {
        color: var(--white);
        border-color: var(--white);
        text-decoration: none;
    }

.lf-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.lf-stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-lt);
}

.lf-stat-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.lf-hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.lf-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 1.25rem;
}

.lf-scenario {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

    .lf-scenario:last-child {
        border-bottom: none;
    }

.lf-scenario-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.lf-scenario-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.lf-scenario-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}


/* ================================================
   LF SECTOR BAR
================================================ */
.lf-sector-bar {
    background: var(--brand);
    padding: 0.85rem 2rem;
}

.lf-sector-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.lf-sector-bar span {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
}

.lf-sector-bar .divider {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}


/* ================================================
   WHY IT MATTERS (3-col cards)
================================================ */
.lf-why {
    background: var(--cream);
    padding: 5rem 2rem;
}

.lf-section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    display: block;
    margin-bottom: 0.6rem;
}

.lf-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.lf-section-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.lf-why-grid {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lf-why-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-top: 3px solid var(--brand);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
}

.lf-why-card-icon {
    font-size: 26px;
    margin-bottom: 1rem;
}

.lf-why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.lf-why-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}


/* ================================================
   STEPS
================================================ */
.lf-steps {
    background: var(--white);
    padding: 5rem 2rem;
    position: relative;
}

.lf-steps-grid {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.lf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lf-step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

    .lf-step-num.setup {
        background: var(--light);
        color: var(--brand);
        border: 2px solid var(--border);
    }

    .lf-step-num.live {
        background: var(--green-bg);
        color: var(--green);
        border: 2px solid #6ee7b7;
    }

    .lf-step-num.maturity {
        background: var(--amber-bg);
        color: var(--amber);
        border: 2px solid #fcd34d;
    }

.lf-step-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem 1rem;
    width: 100%;
}

    .lf-step-card.setup {
        border-top: 3px solid var(--brand);
    }

    .lf-step-card.live {
        border-top: 3px solid var(--green);
    }

    .lf-step-card.maturity {
        border-top: 3px solid var(--gold);
    }

.lf-step-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

    .lf-step-badge.setup {
        color: var(--brand);
    }

    .lf-step-badge.live {
        color: var(--green);
    }

    .lf-step-badge.maturity {
        color: var(--amber);
    }

.lf-step-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 5px;
    line-height: 1.3;
}

.lf-step-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.lf-phase-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.lf-phase-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
}

    .lf-phase-dot span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        display: inline-block;
    }


/* ================================================
   FEATURES 3-COL
================================================ */
.lf-features {
    background: var(--warm-grey);
    padding: 5rem 2rem;
}

.lf-features-grid {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lf-feat-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-top: 3px solid var(--brand);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
}

    .lf-feat-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 17px;
        font-weight: 600;
        color: var(--ink);
        margin: 0 0 4px;
    }

    .lf-feat-card .subtitle {
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 400;
        color: var(--gold);
        display: block;
        margin-bottom: 0.85rem;
        letter-spacing: 0.04em;
    }

    .lf-feat-card p {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 300;
        color: var(--muted);
        line-height: 1.7;
        margin: 0;
    }


/* ================================================
   COMPLIANCE BAND
================================================ */
.lf-compliance {
    background: var(--ink);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

    .lf-compliance::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(34,8,141,0.4) 0%, transparent 70%);
        pointer-events: none;
    }

.lf-compliance-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lf-compliance h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.lf-compliance p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin: 0 0 0.75rem;
}

.lf-compliance-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lf-compliance-point {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 1rem 1.25rem;
}

    .lf-compliance-point strong {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--white);
        display: block;
        margin-bottom: 3px;
    }

    .lf-compliance-point span {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 300;
        color: rgba(255,255,255,0.55);
        line-height: 1.5;
    }


/* ================================================
   CONSOLE SECTION
================================================ */
.lf-console {
    background: var(--cream);
    padding: 5rem 2rem;
    text-align: center;
}

    .lf-console img {
        max-width: 900px;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(15,12,46,0.12);
        margin: 2.5rem auto 0;
        display: block;
    }


/* ================================================
   CTA SECTION
================================================ */
.lf-cta {
    background: var(--brand);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .lf-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(201,168,76,0.2) 0%, transparent 60%);
        pointer-events: none;
    }

    .lf-cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 700;
        color: var(--white);
        margin: 0 0 0.75rem;
        line-height: 1.2;
        position: relative;
    }

    .lf-cta p {
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        font-weight: 300;
        color: rgba(255,255,255,0.75);
        max-width: 500px;
        margin: 0 auto 2rem;
        line-height: 1.7;
        position: relative;
    }

    .lf-cta .btn-primary-gold {
        font-size: 15px;
        padding: 15px 32px;
        position: relative;
    }


/* ================================================
   PRICING CARDS
================================================ */
.pricing-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(15,12,46,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .pricing-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(15,12,46,.12);
    }

    .pricing-box.featured {
        position: relative;
        border: 1px solid rgba(34,8,141,.35);
        box-shadow: 0 16px 36px rgba(34,8,141,.20);
        transform: translateY(-8px);
    }

        .pricing-box.featured:hover {
            transform: translateY(-20px);
            box-shadow: 0 20px 40px rgba(34,8,141,.25);
        }

.badge-featured {
    position: absolute;
    right: 18px;
    top: 12px;
    background: linear-gradient(90deg, var(--brand), var(--mid));
    color: var(--white);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .03em;
}

.pricing-price {
    font-size: 2rem;
    line-height: 1.1;
    margin: .5rem 0 0;
}

.btn {
    display: inline-block;
    padding: .85rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
    border: 0;
    width: 100%;
}

    .btn-primary:hover {
        background: var(--mid);
    }

.btn-outline {
    border: 2px solid var(--border);
    color: var(--navy);
    background: var(--white);
    width: 100%;
}

    .btn-outline:hover {
        border-color: var(--brand);
        color: var(--brand);
    }

.iconlist li {
    margin: .35rem 0;
}


/* ================================================
   CONTACT SECTION
================================================ */
.contact-direct {
    padding: 50px 0 30px;
    text-align: center;
}

.contact-intro {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--brand);
    border-radius: 10px;
    padding: 18px 24px;
    min-width: 220px;
    transition: all 0.2s ease;
}

    .contact-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(34,8,141,0.08);
    }

.contact-label {
    display: block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.contact-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}

    .contact-value:hover {
        text-decoration: underline;
    }

.contact-form-intro {
    padding: 20px 0 10px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.contact-reassurance {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    margin-top: 15px;
}


/* ================================================
   CONTACT CARD (right-side card style)
================================================ */
.page {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.5s 0.1s ease forwards;
}

.expect-list {
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expect-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 300;
}

.expect-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 0.5px solid var(--border);
    margin-top: 1.5rem;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 3px;
}

.stat-lbl {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}

.card-top {
    background: var(--brand);
    padding: 1.5rem 1.75rem;
}

.card-top-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.card-top-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
}

.card-body {
    padding: 1.5rem 1.75rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--light);
    border-radius: 10px;
    text-decoration: none;
    border: 0.5px solid var(--border);
    transition: box-shadow 0.2s, transform 0.15s;
}

    .contact-option:hover {
        box-shadow: 0 4px 16px rgba(34,8,141,0.10);
        transform: translateY(-1px);
    }

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.icon-ccall {
    background: var(--light);
}

.icon-cus {
    background: var(--green-bg);
}

.icon-cemail {
    background: var(--amber-bg);
}

.contact-detail {
    flex: 1;
}

.contact-arrow {
    font-size: 16px;
    color: var(--border);
    transition: color 0.2s, transform 0.2s;
}

.contact-option:hover .contact-arrow {
    color: var(--brand);
    transform: translateX(3px);
}

.card-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.card-divider-line {
    flex: 1;
    height: 0.5px;
    background: var(--border);
}

.card-divider-text {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

.demo-cta {
    display: block;
    width: 100%;
    background: var(--brand);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

    .demo-cta:hover {
        background: var(--mid);
        transform: translateY(-1px);
    }

.demo-cta-sub {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
    font-weight: 300;
}

.reassurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.5s 0.4s ease forwards;
}

.reassurance-item {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 10px;
    padding: 1.1rem;
    border-left: 3px solid var(--brand);
}

.r-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.r-body {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 300;
}


/* ================================================
   BENEFITS GRID
================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.15s ease;
}

    .benefit:hover {
        border-color: var(--brand);
    }

.benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .benefit-icon i {
        font-size: 18px;
        color: var(--brand);
    }

.benefit p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
}

    .benefit p b {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 4px;
    }


/* ================================================
   ANIMATIONS
================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-v2-inner {
        grid-template-columns: 0.92fr 1.08fr;
        gap: 40px;
        min-height: 760px;
    }
}

@media (max-width: 1150px) {
    .hero-v2-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-visual-wrap {
        min-height: auto;
        margin-top: 8px;
    }

    .hero-product-shot {
        max-width: 620px;
        transform: none;
    }
}

@media (max-width: 992px) {
    .hero-visual-wrap {
        min-height: 560px;
    }

    .hero-product-shot {
        max-width: 540px;
    }
}

@media (max-width: 900px) {
    .lf-hero-inner {
        grid-template-columns: 1fr;
    }

    .lf-hero-card {
        display: none;
    }

    .lf-why-grid, .lf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lf-steps-grid {
        grid-template-columns: repeat(3, minmax(0,1fr)) !important;
        gap: 1.25rem !important;
    }

    .lf-compliance-inner {
        grid-template-columns: 1fr;
    }

    .lf-sector-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .tl-header {
        grid-template-columns: 1fr;
    }

    .tl-aside {
        text-align: left;
    }

        .tl-aside p {
            margin-left: 0;
        }

    .tl-steps {
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 1.25rem;
        min-height: auto;
    }

    .tl-track::before, .tl-track::after {
        display: none;
    }

    .tl-step:nth-child(odd), .tl-step:nth-child(even) {
        flex-direction: column;
        justify-content: flex-start;
    }

        .tl-step:nth-child(odd) .tl-card {
            border-bottom: none;
            border-top: 3px solid;
        }

    .tl-step:nth-child(1) .tl-card {
        border-top-color: var(--brand);
    }

    .tl-step:nth-child(3) .tl-card {
        border-top-color: var(--brand);
    }

    .tl-step:nth-child(5) .tl-card {
        border-top-color: var(--gold);
    }
}

@media (max-width: 780px) {
    .reassurance {
        grid-template-columns: 1fr;
    }

    .wcu-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .hero-grid-bg {
        border-radius: 16px;
        inset: 0;
        opacity: 1;
        /* Solid background so the card has a proper backdrop */
        background-color: #eef2fb;
    }

    .hero-visual-wrap {
        min-height: auto;
        margin-top: 0;
        padding: 16px;
        /* Give the whole visual area a solid background so nothing bleeds to white */
        background: #eef2fb;
        border-radius: 16px;
    }

    .hero-product-shot {
        max-width: 100%;
        padding: 0;
        transform: none;
        position: relative;
        z-index: 2;
    }

        .hero-product-shot img {
            filter: drop-shadow(0 8px 16px rgba(15,12,46,.18));
            transform: none;
        }
        /* Override the inline styles on the card div to be fully opaque and well-shadowed */
        .hero-product-shot > div {
            box-shadow: 0 8px 24px rgba(34,8,141,0.14), 0 2px 8px rgba(0,0,0,0.08) !important;
            border-color: #d0cce8 !important;
            background: #ffffff !important;
        }

    .hero-floating-card {
        left: 16px;
        bottom: 18px;
    }
}

/* Mid-range: layout has stacked but not yet mobile — card goes invisible here */
@media (max-width: 1150px) {
    .hero-visual-wrap {
        padding: 24px;
        background: #eef2fb;
        border-radius: 20px;
        min-height: auto;
    }

    .hero-grid-bg {
        inset: 0;
        border-radius: 20px;
        background-color: #eef2fb;
        opacity: 1;
    }

    .hero-product-shot {
        max-width: 620px;
        margin: 0 auto;
        transform: none;
        position: relative;
        z-index: 2;
    }

        .hero-product-shot img {
            transform: none;
        }
        /* Override inline box-shadow/border on the card div */
        .hero-product-shot > div {
            box-shadow: 0 12px 32px rgba(34,8,141,0.16), 0 2px 8px rgba(0,0,0,0.08) !important;
            border-color: #ccc8e8 !important;
            background: #ffffff !important;
        }
}

/* Wider mid-range where grid bg is still inset and card starts to fade */
@media (min-width: 769px) and (max-width: 1149px) {
    .hero-visual-wrap {
        min-height: 480px;
    }
}

@media (max-width: 580px) {
    .lf-why-grid, .lf-features-grid {
        grid-template-columns: 1fr;
    }

    .lf-steps-grid {
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    }

    .lf-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-message {
        max-width: 100%;
    }

    .hero-console {
        max-width: 100%;
    }

    .hero-product-shot {
        max-width: 540px;
        transform: none;
    }

    .tl-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

/* Prevent nav wrapping at awkward mid-range widths */
@media (min-width: 992px) and (max-width: 1199px) {
    #primary-menu > ul > li > a {
        padding: 0 10px; /* reduce side padding on nav links */
        font-size: 0.88rem; /* slightly smaller text */
        letter-spacing: 0; /* remove any letter-spacing */
        margin-top: 30px;   

    }
}



@media (min-width: 992px) and (max-width: 1199px) {
    #header.sticky-header #primary-menu {
        margin-top: 0 !important;
    }
}

@media (max-width: 380px) {
    .lf-steps-grid {
        grid-template-columns: 1fr !important;
    }
}


