/* ============================================================
   Debella Finance — Landing Page Styles
   Brand: Crimson #8C1A1A | Barlow Condensed + Inter
   ============================================================ */

:root {
    --brand-primary:   #8C1A1A;
    --brand-dark:      #6B1212;
    --brand-light:     #B52424;
    --text-primary:    #111111;
    --text-secondary:  #444444;
    --text-inverse:    #FFFFFF;
    --surface-base:    #FFFFFF;
    --surface-muted:   #F7F5F5;
    --border:          #D4C8C8;
    --shadow-brand:    0 2px 6px rgba(140,26,26,0.08), 0 8px 24px rgba(0,0,0,0.07);
    --shadow-float:    0 4px 12px rgba(140,26,26,0.12), 0 16px 40px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--surface-base);
    overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────── */
.display-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.section-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.label-badge {
    display: inline-block;
    background: var(--brand-primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
}

.label-badge--outline {
    background: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
}

.label-badge--white {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}

/* ── Buttons ────────────────────────────────────────── */
.btn-primary-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.85rem 2rem;
    border: 2px solid var(--brand-primary);
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    cursor: pointer;
}
.btn-primary-brand:hover  { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn-primary-brand:active { transform: scale(0.98); }
.btn-primary-brand:focus-visible { outline: 2px solid var(--brand-light); outline-offset: 3px; }

.btn-secondary-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.85rem 2rem;
    border: 2px solid var(--text-primary);
    border-radius: 3px;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    cursor: pointer;
}
.btn-secondary-brand:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.btn-secondary-brand:active { transform: scale(0.98); }
.btn-secondary-brand:focus-visible { outline: 2px solid var(--brand-light); outline-offset: 3px; }

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 3px;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.btn-ghost-white:active { transform: scale(0.98); }

/* ── Navbar ─────────────────────────────────────────── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.lp-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.lp-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.lp-nav__logo img {
    height: 38px;
    width: auto;
    display: block;
}

/* White logo on light navbar — apply brand-colour tint */
.lp-nav__logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(15%) sepia(60%) saturate(2000%) hue-rotate(340deg) brightness(85%) contrast(95%);
}

.lp-nav__logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1;
}

.lp-nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.lp-nav__links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    letter-spacing: 0.01em;
}
.lp-nav__links a:hover { color: var(--brand-primary); background: rgba(140,26,26,0.05); }
.lp-nav__links a:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }

/* Dropdown */
.lp-nav__links .has-dropdown { position: relative; }
.lp-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: var(--shadow-brand);
    padding: 0.5rem 0;
    padding-top: 0.75rem;
    margin-top: 0;
    list-style: none;
}
.lp-nav__links .has-dropdown:focus-within .lp-nav__dropdown {
    display: block;
}
.lp-nav__dropdown li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-secondary);
    border-radius: 0;
}
.lp-nav__dropdown li a:hover { color: var(--brand-primary); background: rgba(140,26,26,0.05); }

.lp-nav__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* Mobile toggle */
.lp-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}
.lp-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav */
.lp-nav__mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    z-index: 999;
}
.lp-nav__mobile.open { display: block; }
.lp-nav__mobile ul { list-style: none; }
.lp-nav__mobile ul li { border-bottom: 1px solid var(--border); }
.lp-nav__mobile ul li:last-child { border-bottom: none; }
.lp-nav__mobile ul li a {
    display: block;
    padding: 0.875rem 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}
.lp-nav__mobile ul li a:hover { color: var(--brand-primary); }
.lp-nav__mobile__cta { margin-top: 1.5rem; }

@media (max-width: 768px) {
    .lp-nav__links { display: none; }
    .lp-nav__actions .btn-primary-brand { display: none; }
    .lp-nav__toggle { display: flex; }
}

/* ── Hero ───────────────────────────────────────────── */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(1000px 700px at 88% 10%, rgba(181,36,36,0.35), transparent 62%),
        radial-gradient(800px 620px at -8% 105%, rgba(140,26,26,0.28), transparent 60%),
        linear-gradient(165deg, #140303 0%, #250707 48%, #3f0d0d 100%);
    overflow: hidden;
    padding-top: 72px;
}

/* Background grid texture, faded at the edges */
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 63px,
            rgba(255,255,255,0.03) 63px,
            rgba(255,255,255,0.03) 64px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 63px,
            rgba(255,255,255,0.03) 63px,
            rgba(255,255,255,0.03) 64px
        );
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 75%);
    pointer-events: none;
}

/* Decorative rings + glow */
.lp-hero__decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.lp-hero__decor--1 {
    width: 640px; height: 640px;
    right: -140px; top: -140px;
    border: 1px solid rgba(255,255,255,0.07);
}
.lp-hero__decor--2 {
    width: 420px; height: 420px;
    right: 60px; top: 60px;
    border: 1px solid rgba(255,255,255,0.09);
    background: radial-gradient(circle, rgba(181,36,36,0.18) 0%, transparent 70%);
}
.lp-hero__decor--3 {
    width: 220px; height: 220px;
    left: -70px; bottom: 100px;
    border: 1px dashed rgba(255,255,255,0.06);
}

.lp-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.lp-hero__grid {
    display: grid;
    grid-template-columns: 54fr 46fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.lp-hero__badge {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.1s;
}
.lp-hero__badge .label-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lp-hero__headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(3.4rem, 6.5vw, 6rem);
    text-transform: uppercase;
    letter-spacing: -0.015em;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.2s;
}

/* Second headline line — outlined poster type */
.lp-hero__headline-ghost {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.55);
}
@supports not (-webkit-text-stroke: 1px #fff) {
    .lp-hero__headline-ghost { color: rgba(255,255,255,0.35); }
}

.lp-hero__subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.35s;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.5s;
}

/* Micro trust row under the CTAs */
.lp-hero__trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin-top: 1.9rem;
    padding: 0;
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.6s;
}
.lp-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.01em;
}
.lp-hero__trust svg {
    width: 14px;
    height: 14px;
    stroke: #6ee7a0;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.lp-hero__visual {
    animation: fadeInRight 0.8s ease both;
    animation-delay: 0.4s;
}

.lp-hero__card-stack {
    position: relative;
    padding: 3rem 1.5rem;
}

/* Floating badge */
.lp-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-float);
    animation: float 4s ease-in-out infinite;
}
.lp-float-badge--1 {
    top: 0.5rem; right: -0.5rem;
    animation-delay: 0s;
}
.lp-float-badge--2 {
    bottom: 0.5rem; left: -0.5rem;
    animation-delay: 2s;
}
.lp-float-badge__icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.lp-float-badge__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}
.lp-float-badge__sub {
    font-size: 0.625rem;
    color: var(--text-secondary);
}

/* Hero headline accent — the split-payment differentiator line */
.lp-hero__headline .lp-hero__headline-accent {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.24em;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
    color: rgba(255,255,255,0.72);
    margin-top: 1.1rem;
}
.lp-hero__headline .lp-hero__headline-accent em {
    font-style: normal;
    color: #fff;
    box-shadow: inset 0 -0.28em 0 rgba(181,36,36,0.55);
}

/* Hero split-payment flow visual — the "live split engine" card */
.lp-split-flow {
    background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 1.5rem 1.75rem 1.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Window chrome */
.lp-split-flow__window {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.1rem;
}
.lp-split-flow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}
.lp-split-flow__window-title {
    margin-left: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.lp-split-flow__live {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6ee7a0;
    background: rgba(110,231,160,0.08);
    border: 1px solid rgba(110,231,160,0.25);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}
.lp-split-flow__live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: livePulse 1.6s ease-in-out infinite;
}

.lp-split-flow__source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.15rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
}
.lp-split-flow__source-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}
.lp-split-flow__source-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.1rem;
}
.lp-split-flow__source-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.65rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}

/* Connectors with travelling dots */
.lp-split-flow__connector {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    height: 26px;
}
.lp-split-flow__connector span {
    position: relative;
    width: 1px;
    background: rgba(255,255,255,0.18);
}
.lp-split-flow__connector span::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
    opacity: 0;
    animation: flowDot 2.2s linear infinite;
}
.lp-split-flow__connector span:nth-child(2)::after { animation-delay: 0.35s; }
.lp-split-flow__connector span:nth-child(3)::after { animation-delay: 0.7s; }

.lp-split-flow__payouts {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.lp-split-flow__payout {
    padding: 0.75rem 1.15rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.lp-split-flow__payout:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.18);
}
.lp-split-flow__payout-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.lp-split-flow__payout-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}
.lp-split-flow__payout-right {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.lp-split-flow__settled {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6ee7a0;
    background: rgba(110,231,160,0.1);
    border: 1px solid rgba(110,231,160,0.22);
    padding: 0.14rem 0.5rem;
    border-radius: 999px;
    opacity: 0;
    animation: chipIn 0.45s ease both;
}
.lp-split-flow__settled svg {
    width: 9px;
    height: 9px;
    stroke: #6ee7a0;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.lp-split-flow__payout:nth-child(1) .lp-split-flow__settled { animation-delay: 1.5s; }
.lp-split-flow__payout:nth-child(2) .lp-split-flow__settled { animation-delay: 1.75s; }
.lp-split-flow__payout:nth-child(3) .lp-split-flow__settled { animation-delay: 2s; }
.lp-split-flow__payout-amt {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.lp-split-flow__bar {
    height: 5px;
    background: rgba(255,255,255,0.12);
    border-radius: 3px;
    overflow: hidden;
}
.lp-split-flow__bar > div {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), #fff);
    border-radius: 3px;
    transform-origin: left;
    animation: barGrow 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-split-flow__payout:nth-child(1) .lp-split-flow__bar > div { animation-delay: 0.7s; }
.lp-split-flow__payout:nth-child(2) .lp-split-flow__bar > div { animation-delay: 0.9s; }
.lp-split-flow__payout:nth-child(3) .lp-split-flow__bar > div { animation-delay: 1.1s; }

/* Reconciliation footer */
.lp-split-flow__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(255,255,255,0.15);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
}
.lp-split-flow__footer strong {
    color: #fff;
    font-weight: 600;
}
.lp-split-flow__recon {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #6ee7a0;
    font-weight: 600;
}
.lp-split-flow__recon svg {
    width: 12px;
    height: 12px;
    stroke: #6ee7a0;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    50%      { opacity: 0.6; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}
@keyframes flowDot {
    0%   { top: -5%; opacity: 0; }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes chipIn {
    from { opacity: 0; transform: translateY(4px) scale(0.9); }
    to   { opacity: 1; transform: none; }
}
@keyframes barGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Hero industries marquee */
.lp-marquee {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.05rem 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.lp-marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}
.lp-marquee__track span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    white-space: nowrap;
}
.lp-marquee__track span::after {
    content: '\2726';
    margin: 0 2.25rem;
    font-size: 0.6rem;
    letter-spacing: 0;
    color: rgba(255,120,120,0.45);
    vertical-align: middle;
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ── Trust Strip ────────────────────────────────────── */
.lp-trust {
    padding: 3.5rem 0;
    background: var(--surface-base);
    border-bottom: 1px solid var(--border);
}

.lp-trust__label {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.lp-trust__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.lp-trust__logo-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #b8aaaa;
    transition: color 0.2s ease;
}
.lp-trust__logo-item:hover { color: var(--brand-primary); }

/* ── Stats Row ──────────────────────────────────────── */
.lp-stats {
    background: var(--surface-muted);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
}

.lp-stats__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.lp-stat {
    text-align: center;
    padding: 1.5rem;
}

.lp-stat__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -0.03em;
    color: var(--brand-primary);
    line-height: 1;
    display: block;
}

.lp-stat__label {
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ── Section Wrapper ────────────────────────────────── */
.lp-section {
    padding: 7rem 0;
}
.lp-section--muted { background: var(--surface-muted); }
.lp-section--crimson {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section header */
.lp-section-header {
    margin-bottom: 4rem;
}
.lp-section-header--center { text-align: center; }
.lp-section-header--center .lp-section-header__title,
.lp-section-header--center .lp-section-header__text { margin-left: auto; margin-right: auto; }

.lp-section-header__badge { margin-bottom: 1rem; }

.lp-section-header__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
    max-width: 640px;
    margin-bottom: 1rem;
}
.lp-section-header__title--inverse { color: #fff; }

.lp-section-header__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 560px;
}
.lp-section-header__text--inverse { color: rgba(255,255,255,0.72); }

/* ── Feature Split ──────────────────────────────────── */
.lp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.lp-split--reverse { direction: rtl; }
.lp-split--reverse > * { direction: ltr; }

.lp-split__visual {
    position: relative;
}

.lp-feature-illustration {
    background: linear-gradient(135deg, #fff 0%, #F7F0F0 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-brand);
    position: relative;
    overflow: hidden;
}

.lp-feature-illustration::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(140,26,26,0.06);
}

.lp-feature-illustration__icon {
    width: 56px;
    height: 56px;
    background: var(--brand-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(140,26,26,0.3);
}

.lp-feature-illustration__title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.lp-feature-illustration__rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-feature-row:hover {
    border-color: rgba(140,26,26,0.3);
    box-shadow: 0 2px 8px rgba(140,26,26,0.08);
}

.lp-feature-row__status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}
.lp-feature-row__status--success {
    background: rgba(74,222,128,0.12);
    color: #166534;
}
.lp-feature-row__status--pending {
    background: rgba(251,191,36,0.12);
    color: #92400e;
}
.lp-feature-row__status--processing {
    background: rgba(140,26,26,0.1);
    color: var(--brand-primary);
}

/* Checklist */
.lp-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}
.lp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.lp-checklist__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(140,26,26,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.lp-checklist__icon svg {
    width: 11px;
    height: 11px;
    stroke: var(--brand-primary);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Features Grid ──────────────────────────────────── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-feature-card {
    background: var(--surface-base);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-brand);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
    border-color: rgba(140,26,26,0.2);
}
.lp-feature-card:hover::before { transform: scaleX(1); }

.lp-feature-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(140,26,26,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    transition: background 0.2s ease;
}
.lp-feature-card:hover .lp-feature-card__icon {
    background: rgba(140,26,26,0.14);
}

.lp-feature-card__title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.lp-feature-card__text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ── CTA Section ────────────────────────────────────── */
.lp-cta {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
    background: linear-gradient(135deg, #1a0505 0%, var(--brand-dark) 50%, var(--brand-primary) 100%);
}
.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg, transparent, transparent 79px,
            rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px
        );
}

.lp-cta__decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.lp-cta__decor--1 {
    width: 500px; height: 500px;
    right: -100px; bottom: -100px;
    border: 1px solid rgba(255,255,255,0.05);
}
.lp-cta__decor--2 {
    width: 300px; height: 300px;
    left: -60px; top: -60px;
    background: radial-gradient(circle, rgba(181,36,36,0.2) 0%, transparent 70%);
}

.lp-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lp-cta__badge { margin-bottom: 1.5rem; }

.lp-cta__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.25rem;
}

.lp-cta__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.lp-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* CTA invite button - white fill */
.btn-white-fill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--brand-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.9rem 2.25rem;
    border: 2px solid #fff;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-white-fill:hover { background: rgba(255,255,255,0.9); color: var(--brand-dark); }
.btn-white-fill:active { transform: scale(0.98); }

/* ── Footer ─────────────────────────────────────────── */
.lp-footer {
    background: #0d0202;
    color: rgba(255,255,255,0.65);
    padding: 5rem 0 0;
}

.lp-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-footer__brand-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.85;
}

.lp-footer__brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.lp-footer__social {
    display: flex;
    gap: 0.75rem;
}
.lp-footer__social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.lp-footer__social a:hover {
    border-color: rgba(140,26,26,0.5);
    color: rgba(181,36,36,0.9);
    background: rgba(140,26,26,0.1);
}

.lp-footer__col-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.25rem;
}

.lp-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.lp-footer__links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}
.lp-footer__links a:hover { color: rgba(181,36,36,0.9); }

.lp-footer__contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.lp-footer__contact li {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}
.lp-footer__contact li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}
.lp-footer__contact li a:hover { color: rgba(181,36,36,0.9); }
.lp-footer__contact li strong {
    display: block;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.lp-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.lp-footer__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}
.lp-footer__legal {
    display: flex;
    gap: 1.5rem;
}
.lp-footer__legal a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s ease;
}
.lp-footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Scroll Reveal ──────────────────────────────────── */
/* Cards always fully visible (opacity always 1); only position animates */
.sr { opacity: 1; transform: none; }

@keyframes srSlideUp {
    from { transform: translateY(20px); }
    to   { transform: translateY(0); }
}

.sr-active .sr {
    animation: srSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.sr-active .sr.sr--delay-1 { animation-delay: 0.08s; }
.sr-active .sr.sr--delay-2 { animation-delay: 0.16s; }
.sr-active .sr.sr--delay-3 { animation-delay: 0.24s; }
.sr-active .sr.sr--delay-4 { animation-delay: 0.32s; }
.sr-active .sr.sr--delay-5 { animation-delay: 0.40s; }

/* ── Legal / Document Pages ─────────────────────────── */
.lp-page-hero {
    background: linear-gradient(135deg, #1a0505 0%, var(--brand-dark) 55%, var(--brand-primary) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.lp-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.02) 59px, rgba(255,255,255,0.02) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.02) 59px, rgba(255,255,255,0.02) 60px);
    pointer-events: none;
}
.lp-page-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.lp-page-hero__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.3rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}
.lp-page-hero__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 1rem;
}
.lp-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}
.lp-page-hero__breadcrumb li + li::before {
    content: '/';
    margin-right: 0.5rem;
    opacity: 0.4;
}
.lp-page-hero__breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.lp-page-hero__breadcrumb a:hover { color: rgba(255,255,255,0.9); }

/* Document body */
.lp-doc {
    padding: 5rem 0 6rem;
    background: #fff;
}
.lp-doc__layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}
.lp-doc__toc {
    position: sticky;
    top: 2rem;
}
.lp-doc__toc-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    display: block;
}
.lp-doc__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid var(--surface-muted);
}
.lp-doc__toc-list li a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.35rem 0 0.35rem 1rem;
    transition: color 0.2s ease, border-color 0.2s ease;
    border-left: 2px solid transparent;
    margin-left: -2px;
    line-height: 1.4;
}
.lp-doc__toc-list li a:hover {
    color: var(--brand-primary);
    border-left-color: var(--brand-primary);
}
.lp-doc__meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--surface-muted);
    border-left: 3px solid var(--brand-primary);
    padding: 0.75rem 1rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 3rem;
}
.lp-doc__section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.lp-doc__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.lp-doc__section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.lp-doc__section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--brand-primary);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.lp-doc__section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0;
}
.lp-doc__subsection-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin: 1.5rem 0 0.75rem;
}
.lp-doc p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.lp-doc p:last-child { margin-bottom: 0; }
.lp-doc ul,
.lp-doc ol {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    padding-left: 0;
    list-style: none;
    margin: 0.75rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.lp-doc ul li,
.lp-doc ol li {
    padding: 0.625rem 0.875rem;
    background: var(--surface-muted);
    border-radius: 4px;
    position: relative;
    padding-left: 2.25rem;
}
.lp-doc ul li::before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-primary);
}
.lp-doc ol {
    counter-reset: doc-ol;
}
.lp-doc ol li {
    counter-increment: doc-ol;
}
.lp-doc ol li::before {
    content: counter(doc-ol);
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.lp-doc strong { color: var(--text-primary); font-weight: 600; }
.lp-doc a { color: var(--brand-primary); text-decoration: none; }
.lp-doc a:hover { text-decoration: underline; }

/* Contact card at end */
.lp-doc__contact {
    margin-top: 1.25rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.lp-doc__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex: 1;
    min-width: 160px;
}
.lp-doc__contact-item strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--brand-primary);
    margin-bottom: 0.15rem;
}
.lp-doc__contact-item a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}
.lp-doc__contact-item a:hover { color: var(--brand-primary); }

/* POPIA compliance banner */
.lp-doc__compliance {
    background: linear-gradient(135deg, rgba(140,26,26,0.05) 0%, rgba(140,26,26,0.02) 100%);
    border: 1px solid rgba(140,26,26,0.15);
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.lp-doc__compliance-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.lp-doc__compliance-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}
.lp-doc__compliance p {
    font-size: 0.875rem;
    color: var(--brand-dark);
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 900px) {
    .lp-doc__layout { grid-template-columns: 1fr; }
    .lp-doc__toc { display: none; }
    .lp-page-hero__title { font-size: 2.5rem; }
}

/* ── Contact Page ────────────────────────────────────── */
.lp-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}
.lp-contact-card {
    background: var(--surface-base);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lp-contact-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.lp-contact-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}
.lp-contact-card__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 0.35rem;
    display: block;
}
.lp-contact-card__value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    display: block;
    margin-bottom: 0.25rem;
}
.lp-contact-card__value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.lp-contact-card__value a:hover { color: var(--brand-primary); }
.lp-contact-card__sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact split layout */
.lp-contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.lp-contact-info__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}
.lp-contact-info__sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.lp-contact-hours {
    background: var(--surface-muted);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.lp-contact-hours__title {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    display: block;
}
.lp-contact-hours__row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.lp-contact-hours__row:last-child { border-bottom: none; }
.lp-contact-hours__row strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact form card */
.lp-contact-form {
    background: var(--surface-base);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: var(--shadow-brand);
}
.lp-contact-form__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}
.lp-contact-form__sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.lp-form-field {
    margin-bottom: 1.25rem;
}
.lp-form-field__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}
.lp-form-field__label span { color: var(--brand-primary); }
.lp-form-field__input,
.lp-form-field__textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--surface-base);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    resize: none;
}
.lp-form-field__input::placeholder,
.lp-form-field__textarea::placeholder { color: #aaa; font-size: 0.875rem; }
.lp-form-field__input:focus,
.lp-form-field__textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(140,26,26,0.08);
}
.lp-form-field__input:hover:not(:focus),
.lp-form-field__textarea:hover:not(:focus) { border-color: #b8aaaa; }
.lp-form-field__input.is-invalid,
.lp-form-field__textarea.is-invalid { border-color: var(--brand-primary); }
.lp-form-field__error {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--brand-primary);
    margin-top: 0.3rem;
    display: block;
}
.lp-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--brand-primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
    padding: 0.9rem 2rem;
    border: 2px solid var(--brand-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    margin-top: 0.5rem;
}
.lp-form-submit:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.lp-form-submit:active { transform: scale(0.99); }
.lp-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(140,26,26,0.06);
    border: 1px solid rgba(140,26,26,0.2);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--brand-dark);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .lp-contact-cards { grid-template-columns: 1fr; }
    .lp-contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-form-row { grid-template-columns: 1fr; }
    .lp-contact-form { padding: 1.75rem; }
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .lp-hero__grid   { grid-template-columns: 1fr; gap: 3rem; }
    .lp-hero__visual { max-width: 480px; }
    .lp-hero__subtext { max-width: 100%; }
    .lp-split        { grid-template-columns: 1fr; gap: 3rem; }
    .lp-split--reverse { direction: ltr; }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-stats__inner  { grid-template-columns: repeat(2, 1fr); }
    .lp-footer__grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .lp-section { padding: 4rem 0; }
    .lp-hero__headline { font-size: 3rem; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-stats__inner  { grid-template-columns: repeat(2, 1fr); }
    .lp-footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
    .lp-footer__bottom { flex-direction: column; text-align: center; }
    .lp-trust__logos { gap: 1.5rem; }
}

/* ============================================================
   v2 Redesign — steps, verticals, split rules, global polish
   ============================================================ */

/* Softer, modern corners across shared components */
.btn-primary-brand,
.btn-secondary-brand,
.btn-ghost-white,
.btn-white-fill,
.lp-form-submit { border-radius: 8px; }

.label-badge {
    border-radius: 999px;
    padding: 0.4rem 1rem;
}

.lp-feature-card { border-radius: 14px; }
.lp-feature-illustration { border-radius: 18px; }

/* Stats — divider columns on desktop */
@media (min-width: 1025px) {
    .lp-stat + .lp-stat { border-left: 1px solid var(--border); }
}

/* ── How It Works — steps ───────────────────────────── */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-step {
    position: relative;
    overflow: hidden;
    background: var(--surface-base);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem 2rem 2rem;
    box-shadow: var(--shadow-brand);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
    border-color: rgba(140,26,26,0.25);
}

.lp-step__num {
    position: absolute;
    top: 0.5rem;
    right: 1.1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 4.75rem;
    line-height: 1;
    color: rgba(140,26,26,0.07);
    transition: color 0.2s ease;
}
.lp-step:hover .lp-step__num { color: rgba(140,26,26,0.13); }

.lp-step__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    box-shadow: 0 6px 16px rgba(140,26,26,0.28);
}
.lp-step__icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-step__title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}
.lp-step__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ── Who It's For — verticals grid ──────────────────── */
.lp-verticals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-vertical {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: var(--surface-base);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-vertical:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-brand);
    border-color: rgba(140,26,26,0.25);
}

.lp-vertical__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(140,26,26,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-vertical__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--brand-primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-vertical__title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}
.lp-vertical__text {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* Full-width "any flow" card */
.lp-vertical--wide {
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #1a0505 0%, var(--brand-dark) 55%, var(--brand-primary) 100%);
    border: none;
    padding: 2.25rem 2.5rem;
}
.lp-vertical--wide:hover {
    transform: none;
    box-shadow: var(--shadow-float);
}
.lp-vertical--wide .lp-vertical__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    color: #fff;
}
.lp-vertical--wide .lp-vertical__text {
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    font-size: 0.9rem;
}
.lp-vertical--wide .btn-white-fill { flex-shrink: 0; }

/* ── Split rule builder rows ────────────────────────── */
.lp-rule-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-rule-row:hover {
    border-color: rgba(140,26,26,0.3);
    box-shadow: 0 2px 8px rgba(140,26,26,0.08);
}
.lp-rule-row__grip {
    color: #cdbdbd;
    display: flex;
    flex-shrink: 0;
}
.lp-rule-row__name {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.lp-rule-row__type {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}
.lp-rule-row__type--pct { background: rgba(140,26,26,0.08); color: var(--brand-primary); }
.lp-rule-row__type--fix { background: rgba(217,119,6,0.1);  color: #92400e; }
.lp-rule-row__type--rem { background: rgba(22,163,74,0.1);  color: #166534; }
.lp-rule-row__value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brand-primary);
    min-width: 3.2rem;
    text-align: right;
    white-space: nowrap;
}
.lp-rule-add {
    padding: 0.7rem 1rem;
    border: 1.5px dashed var(--border);
    border-radius: 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.lp-rule-note {
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ── v2 responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .lp-steps { grid-template-columns: 1fr; }
    .lp-verticals { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .lp-verticals { grid-template-columns: 1fr; }
    .lp-vertical--wide {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem;
    }
    .lp-hero__trust { gap: 0.5rem 1rem; }
    .lp-hero__card-stack { padding: 2.5rem 0.5rem; }
    .lp-split-flow { padding: 1.25rem 1.25rem 1.5rem; }
    .lp-split-flow__connector { gap: 2.25rem; }
}

/* ── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .lp-marquee__track,
    .lp-float-badge,
    .lp-split-flow__live i,
    .lp-split-flow__connector span::after { animation: none !important; }
    .lp-split-flow__connector span::after { opacity: 0; }
    .lp-split-flow__bar > div,
    .lp-split-flow__settled {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    .lp-hero__badge,
    .lp-hero__headline,
    .lp-hero__subtext,
    .lp-hero__actions,
    .lp-hero__trust,
    .lp-hero__visual { animation: none !important; }
    .sr-active .sr { animation: none !important; }
}
