﻿/* =====================================================
   LiveEx-Shield — "Best" Layout
   Palette: logo crimson + grays + white only
   ===================================================== */

:root {
    /* Brand palette — logo crimson + grays + white */
    --red-900:   #5a0710;        /* deepest maroon */
    --red-800:   #7a0a14;        /* dark crimson  */
    --red-700:   #9a0e1c;
    --red-600:   #b3091a;        /* logo crimson  */
    --red-500:   #c8232f;
    --red-400:   #d63a4a;
    --red-200:   #f0bcc1;
    --red-100:   #f9e3e6;

    --gray-900:  #1a1a1d;
    --gray-800:  #2a2a2e;
    --gray-700:  #4a4a52;
    --gray-500:  #7a7a82;
    --gray-300:  #c4c4cc;
    --gray-200:  #dcdce0;
    --gray-100:  #eeeef0;
    --gray-50:   #f7f7f8;
    --white:     #ffffff;

    /* Aliases preserved so existing rules keep working */
    --navy-900:  var(--gray-900);
    --navy-800:  var(--gray-800);
    --navy-700:  #38383d;
    --navy-600:  var(--gray-700);
    --blue-500:  var(--red-600);     /* primary accent = brand red */
    --blue-400:  var(--red-500);
    --blue-200:  var(--red-200);

    /* Semantic tokens */
    --bg:        var(--gray-50);
    --bg-2:      var(--white);
    --surface:   var(--white);
    --surface-2: var(--gray-100);
    --line:      #e2e2e6;
    --line-2:    #cdcdd2;
    --text:      var(--gray-900);
    --text-dim:  var(--gray-700);
    --text-mute: var(--gray-500);

    --grad-main: linear-gradient(115deg, var(--red-800) 0%, var(--red-600) 50%, var(--red-400) 100%);
    --grad-cool: linear-gradient(115deg, var(--gray-900) 0%, var(--red-700) 100%);
    --grad-soft: linear-gradient(115deg, var(--red-100) 0%, var(--red-200) 100%);

    --shadow-sm: 0 2px 8px rgba(26, 26, 29, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 26, 29, 0.10);
    --shadow-lg: 0 22px 60px rgba(26, 26, 29, 0.14);
    --shadow-glow: 0 0 50px rgba(179, 9, 26, 0.30);

    --radius:    14px;
    --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1240px, 92%); margin-inline: auto; }

/* =====================================================
   ANIMATED BACKGROUND
   Soft drifting blue/gray mesh on a light surface
   ===================================================== */
.bg-fx {
    position: fixed; inset: 0; z-index: -2;
    background:
        radial-gradient(900px 700px at 8% -10%,  rgba(179, 9, 26, 0.18), transparent 60%),
        radial-gradient(900px 700px at 100% 0%,  rgba(74, 74, 82, 0.14),  transparent 60%),
        radial-gradient(900px 700px at 50% 110%, rgba(240, 188, 193, 0.40), transparent 65%),
        linear-gradient(180deg, #f7f7f8 0%, #eeeef0 60%, #e2e2e6 100%);
    animation: meshDrift 22s ease-in-out infinite alternate;
}
.bg-fx::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(26, 26, 29, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 26, 29, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 80%);
    opacity: 0.55;
}
.bg-fx::after {
    content: ''; position: absolute; left: 0; right: 0; height: 220px; top: -220px;
    background: linear-gradient(180deg, transparent, rgba(179, 9, 26, 0.20), transparent);
    animation: scanY 11s linear infinite;
    filter: blur(10px);
}

@keyframes meshDrift {
    0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
    100% { background-position: 30% 20%, 70% 30%, 30% 70%, 0 0; }
}
@keyframes scanY {
    0%   { transform: translateY(0); }
    100% { transform: translateY(160vh); }
}

/* =====================================================
   TOP NAV
   ===================================================== */
.nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 6px 24px rgba(26, 26, 29, 0.05);
}
.nav::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
    background: var(--grad-main);
    background-size: 300% 100%;
    animation: hueSlide 10s linear infinite;
    opacity: 0.85;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
}
.nav .logo img {
    height: 50px;
    background: transparent;
    filter: none;
    mix-blend-mode: normal;
}
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links > .nav-item + .nav-item { border-left: 1px solid var(--line); }
.nav-links a {
    font-size: 12.5px; font-weight: 500; color: var(--gray-700);
    position: relative; padding: 6px 18px; transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red-700); }
.nav-links a::after {
    content: ''; position: absolute; left: 18px; right: 18px; bottom: -4px; height: 2px;
    background: var(--grad-cool); transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ---- Home dropdown (mega-panel) ---- */
.nav-item { position: relative; display: inline-flex; align-items: center; }

.has-dropdown > a .dd-caret {
    font-size: 9px;
    margin-left: 5px;
    transition: transform .25s;
    opacity: 0.7;
}
.has-dropdown:hover > a .dd-caret { transform: rotate(180deg); opacity: 1; }

.mega-panel {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 620px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 24px 70px rgba(26, 26, 29, 0.18),
        0 6px 18px rgba(26, 26, 29, 0.08);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 100;
}
/* hover-bridge so the gap doesn't break the hover */
.mega-panel::before {
    content: '';
    position: absolute;
    top: -10px; left: 0; right: 0; height: 12px;
}
/* arrow notch */
.mega-panel::after {
    content: '';
    position: absolute;
    top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px;
    background: #ffffff;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    border-radius: 3px 0 0 0;
}
.has-dropdown:hover .mega-panel,
.has-dropdown:focus-within .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
.mega-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--gray-900);
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.mega-item:hover {
    background: var(--gray-100);
    transform: translateX(2px);
}
.mega-item:hover::after { display: none; }     /* prevent .nav-links a underline animation here */
.mega-item::after { display: none !important; }
.mega-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: transparent;
    display: grid; place-items: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--gray-500);
    transition: color .2s ease, transform .25s ease;
}
.mega-item:hover .mega-icon { transform: scale(1.12); }
/* Greyed-out by default; on hover the tile fills with the swatch
   colour and the glyph flips to white for contrast. */
.mega-icon.c-red    { --hover: #b3091a; }
.mega-icon.c-blue   { --hover: #2563eb; }
.mega-icon.c-teal   { --hover: #0d9488; }
.mega-icon.c-amber  { --hover: #d97706; }
.mega-icon.c-green  { --hover: #059669; }
.mega-icon.c-indigo { --hover: #4f46e5; }
.mega-icon.c-pink   { --hover: #db2777; }
.mega-icon.c-slate  { --hover: #475569; }
.mega-icon.c-violet { --hover: #7c3aed; }
.mega-icon.c-rose   { --hover: #e11d48; }
.mega-icon { transition: color .2s ease, background-color .2s ease, transform .25s ease, box-shadow .25s ease; }
.mega-item:hover .mega-icon {
    background-color: var(--hover, #b3091a);
    color: #fff;
    box-shadow: 0 6px 14px color-mix(in srgb, var(--hover, #b3091a) 35%, transparent);
}
.mega-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega-text h5 {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-700);
    margin: 0;
    letter-spacing: 0;
    transition: color .2s ease;
}
.mega-text p {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.4;
    margin: 0;
    transition: color .2s ease;
}
.mega-item:hover .mega-text h5 { color: var(--hover, var(--gray-900)); }
.mega-item:hover .mega-text p  { color: var(--gray-700); }

@media (max-width: 980px) {
    .mega-panel { min-width: 360px; }
    .mega-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   INNER PAGE HERO — clean light, simpler, page-specific visual
   ===================================================== */
.page-hero {
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%) !important;
    color: var(--gray-900) !important;
    padding: 36px 0 36px !important;
    min-height: auto !important;
    text-align: left !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.page-hero::before { display: none !important; }
.page-hero::after {
    content: '';
    position: absolute; right: -120px; top: -120px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 9, 26, 0.10), transparent 70%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.ph-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
    align-items: center;
}
.ph-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px;
    background: var(--red-100);
    color: var(--red-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 12px;
}
.ph-eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red-600);
    box-shadow: 0 0 8px var(--red-600);
}
.page-hero h1 {
    color: var(--gray-900) !important;
    font-size: clamp(22px, 2.8vw, 32px) !important;
    margin: 0 0 8px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    font-weight: 800 !important;
}
.page-hero h1 .accent {
    color: var(--red-600);
}
.page-hero p.lead,
.page-hero p {
    color: var(--gray-700) !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    max-width: 560px !important;
    margin: 0 0 14px !important;
    font-weight: 400 !important;
}
.page-hero .breadcrumb,
.page-hero .breadcrumbs {
    font-size: 11px !important;
    color: var(--gray-500) !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    display: inline-block !important;
}
.page-hero .breadcrumb a {
    color: var(--red-600) !important;
    text-decoration: none;
    font-weight: 600;
}
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .breadcrumb span {
    margin: 0 8px;
    color: var(--gray-300) !important;
}

/* ---- Per-page right-side visual ---- */
.ph-visual {
    position: relative;
    aspect-ratio: 1.4 / 1;
    max-width: 360px;
    margin-left: auto;
    display: grid;
    place-items: center;
}

/* CLIENTS — globe with orbiting pins */
.visual-clients {
    --c: var(--red-600);
}
.visual-clients .globe-core {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-700), var(--red-600));
    color: #fff;
    display: grid; place-items: center;
    font-size: 44px;
    box-shadow: 0 12px 30px rgba(179, 9, 26, 0.30);
    z-index: 2;
    position: relative;
}
.visual-clients .globe-orbit {
    position: absolute;
    width: 240px; height: 240px;
    border: 1.5px dashed var(--red-200);
    border-radius: 50%;
    animation: spinL 22s linear infinite;
}
.visual-clients .globe-orbit-2 {
    position: absolute;
    width: 180px; height: 180px;
    border: 1.5px dashed var(--gray-300);
    border-radius: 50%;
    animation: spinL 16s linear infinite reverse;
}
.visual-clients .pin {
    position: absolute;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--red-600);
    color: var(--red-600);
    display: grid; place-items: center;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(179, 9, 26, 0.2);
}
.visual-clients .pin.p1 { left: 8%; top: 16%; }
.visual-clients .pin.p2 { right: 10%; top: 14%; }
.visual-clients .pin.p3 { left: 6%; bottom: 14%; }
.visual-clients .pin.p4 { right: 6%; bottom: 18%; }
.visual-clients .pin i { color: inherit; }
@keyframes spinL { to { transform: rotate(360deg); } }

/* COMPANY V2 — concentric "27 YEARS" rings + floating tags */
.visual-company-v2 {
    position: relative;
    width: 100%;
    aspect-ratio: 1.4 / 1;
    max-width: 360px;
    margin-left: auto;
    display: grid;
    place-items: center;
}
.visual-company-v2 .vc-rings {
    position: absolute;
    inset: 0;
    display: grid; place-items: center;
}
.visual-company-v2 .vc-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed var(--red-200);
}
.visual-company-v2 .vc-ring.r1 { width: 230px; height: 230px; animation: spinL 28s linear infinite; }
.visual-company-v2 .vc-ring.r2 { width: 175px; height: 175px; border-style: solid; border-color: rgba(179, 9, 26, 0.18); }
.visual-company-v2 .vc-ring.r3 { width: 130px; height: 130px; border-color: var(--gray-300); animation: spinL 18s linear infinite reverse; }
.visual-company-v2 .vc-core {
    position: relative;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-700), var(--red-600));
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 14px 32px rgba(179, 9, 26, 0.30);
    z-index: 2;
    text-align: center;
}
.visual-company-v2 .vc-num { font-size: 30px; font-weight: 800; line-height: 1; }
.visual-company-v2 .vc-cap { font-size: 9px; letter-spacing: 0.30em; opacity: 0.9; margin-top: 2px; }
.visual-company-v2 .vc-tag {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 10.5px; font-weight: 700;
    color: var(--gray-900);
    box-shadow: 0 6px 16px rgba(26, 26, 29, 0.10);
    display: inline-flex; align-items: center; gap: 7px;
    animation: bobble 4s ease-in-out infinite;
    white-space: nowrap;
}
.visual-company-v2 .vc-tag i { font-size: 12px; color: var(--red-600); }
.visual-company-v2 .t1 { left: -8%;  top: 18%;  animation-delay: -.2s;  }
.visual-company-v2 .t2 { right: -10%; top: 38%;  animation-delay: -1.0s; }
.visual-company-v2 .t3 { left: 4%;   bottom: 14%; animation-delay: -1.8s; }

/* SERVICES.HTML — service-detail without the tech-panel right column */
.service-detail .service-grid {
    grid-template-columns: 1fr !important;
    max-width: 880px;
    margin: 0 auto;
}

/* COMPANY .about-section — text-only, no image column */
.about-section .about-grid {
    grid-template-columns: 1fr !important;
    max-width: 880px;
    margin: 0 auto;
}
.about-section .about-content {
    text-align: left;
}

/* COMPANY — building + floating badges */
.visual-company .bldg {
    position: relative;
    width: 130px; height: 110px;
    background: linear-gradient(180deg, var(--gray-100), var(--gray-200));
    border: 1px solid var(--line-2);
    border-radius: 12px;
    display: grid; place-items: center;
    color: var(--red-700);
    font-size: 56px;
    box-shadow: 0 10px 26px rgba(26, 26, 29, 0.10);
}
.visual-company .bldg::before {
    content: '';
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 14px;
    background: var(--red-600);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -4px 12px rgba(179, 9, 26, 0.30);
}
.visual-company .badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 11px; font-weight: 700;
    color: var(--gray-900);
    box-shadow: 0 8px 18px rgba(26, 26, 29, 0.10);
    display: flex; align-items: center; gap: 7px;
    animation: bobble 4s ease-in-out infinite;
}
.visual-company .badge i { font-size: 14px; }
.visual-company .b1 { left: -10%; top: 18%; animation-delay: -.3s; color: #2563eb; }
.visual-company .b1 i { color: #2563eb; }
.visual-company .b2 { right: -8%; top: 12%; animation-delay: -1.1s; color: #d97706; }
.visual-company .b2 i { color: #d97706; }
.visual-company .b3 { right: -10%; bottom: 18%; animation-delay: -1.8s; color: #059669; }
.visual-company .b3 i { color: #059669; }
@keyframes bobble {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* SERVICES — process flow */
.visual-services {
    aspect-ratio: 2 / 1;
    max-width: 360px;
}
.visual-services .flow-row {
    display: flex; align-items: center; gap: 10px;
}
.visual-services .step {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--line-2);
    color: var(--gray-700);
    display: grid; place-items: center;
    font-size: 20px;
    transition: all .25s;
    position: relative;
}
.visual-services .step.active {
    background: linear-gradient(135deg, var(--red-700), var(--red-600));
    border-color: var(--red-700);
    color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 10px 22px rgba(179, 9, 26, 0.30);
}
.visual-services .step::after {
    content: attr(data-label);
    position: absolute;
    top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%);
    font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
    color: var(--gray-700);
    white-space: nowrap;
}
.visual-services .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--red-200), var(--red-600));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.visual-services .line::before {
    content: '';
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red-600);
    box-shadow: 0 0 8px var(--red-600);
    animation: lineDot 2s linear infinite;
}
@keyframes lineDot {
    from { left: -10px; }
    to   { left: calc(100% + 10px); }
}

/* PRODUCTS — stacked cards */
.visual-products {
    perspective: 800px;
}
.visual-products .pcard {
    position: absolute;
    width: 200px; padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(26, 26, 29, 0.12);
    display: flex; align-items: center; gap: 10px;
    transition: transform .3s;
}
.visual-products .pcard i {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: var(--red-100);
    color: var(--red-700);
    display: grid; place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}
.visual-products .pcard h6 {
    font-size: 13px; font-weight: 700; color: var(--gray-900); margin: 0;
}
.visual-products .pcard p {
    font-size: 10.5px !important; color: var(--gray-700) !important; margin: 0 !important;
    letter-spacing: 0.04em;
}
.visual-products .p1 { transform: translate(-30px, -34px) rotate(-4deg); }
.visual-products .p2 { transform: translate(0, 0)        rotate(2deg);  z-index: 2; }
.visual-products .p3 { transform: translate(30px, 34px)  rotate(-2deg); }
.visual-products:hover .p1 { transform: translate(-50px, -40px) rotate(-7deg); }
.visual-products:hover .p3 { transform: translate(50px, 40px)   rotate(-5deg); }

/* CONTACT — envelope with signal waves */
.visual-contact {
    aspect-ratio: 1.4 / 1;
}
.visual-contact .env {
    position: relative; z-index: 2;
    width: 120px; height: 90px;
    background: linear-gradient(135deg, var(--red-700), var(--red-600));
    border-radius: 12px;
    display: grid; place-items: center;
    color: #ffffff;
    font-size: 42px;
    box-shadow: 0 14px 30px rgba(179, 9, 26, 0.30);
}
.visual-contact .wv {
    position: absolute;
    border: 2px solid var(--red-600);
    border-radius: 50%;
    opacity: 0;
    animation: waveOut 3s ease-out infinite;
}
.visual-contact .wv.w1 { width: 140px; height: 140px; animation-delay: 0s; }
.visual-contact .wv.w2 { width: 200px; height: 200px; animation-delay: 1s; }
.visual-contact .wv.w3 { width: 260px; height: 260px; animation-delay: 2s; }
@keyframes waveOut {
    0%   { opacity: 0.6; transform: scale(0.5); }
    100% { opacity: 0;   transform: scale(1.1); }
}

/* Hide the OLD page-hero graphic blobs from style.css so we don't double up */
.page-hero-graphic-left,
.page-hero-graphic { display: none !important; }

@media (max-width: 880px) {
    .ph-grid { grid-template-columns: 1fr; gap: 22px; }
    .ph-visual { max-width: 280px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .page-hero { padding: 24px 0 24px !important; }
    .page-hero h1 { font-size: 22px !important; }
}

.nav-cta {
    padding: 5px 12px; border-radius: 999px;
    background: var(--gray-200); color: var(--gray-800); font-weight: 500; font-size: 11px;
    border: 1px solid var(--line);
    box-shadow: none;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.nav-cta:hover {
    transform: translateY(-1px);
    background: var(--red-600);
    color: #fff;
    border-color: var(--red-600);
    box-shadow: 0 0 14px rgba(179, 9, 26, 0.40), 0 4px 12px rgba(179, 9, 26, 0.25);
}

.mobile-toggle {
    display: none; background: none; border: none; color: var(--gray-900);
    font-size: 22px; cursor: pointer;
}

/* =====================================================
   HERO — split asymmetric
   ===================================================== */
.hero {
    position: relative; padding: 32px 0 80px;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px; align-items: center;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; border-radius: 999px;
    background: var(--white); border: 1px solid var(--line);
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-700);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.hero-copy > .eyebrow:first-child { margin-top: 0; }
.eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--blue-500); box-shadow: 0 0 12px var(--blue-500);
    animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.55; }
}

.hero h1 {
    font-size: clamp(18px, 2.5vw, 32px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--navy-900);
}
.gradient-text {
    background: var(--grad-main);
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: hueSlide 10s linear infinite;
}
@keyframes hueSlide {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.hero-lead {
    color: var(--gray-700); font-size: 18px; margin: 22px 0 30px; max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    cursor: pointer; border: none; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
    text-decoration: none;
}
.btn-primary {
    background: var(--navy-800);
    color: #fff;
    box-shadow: 0 10px 30px rgba(26, 26, 29, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--navy-700); box-shadow: 0 14px 40px rgba(74, 74, 82, 0.40); }

.btn-ghost {
    color: var(--navy-800);
    background: var(--white);
    border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-500); }

.btn.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    gap: 6px;
}
.btn.btn-sm i { font-size: 11px; }

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-stat strong {
    display: block; font-size: 28px; font-weight: 700;
    color: var(--navy-800);
}
.hero-stat span { color: var(--gray-500); font-size: 13px; }

/* ----- HERO ANIMATED GRAPHIC ----- */
.hero-visual-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-visual {
    position: relative; aspect-ratio: 1 / 1; max-width: 480px; width: 100%; margin-inline: auto;
}
.orb {
    position: absolute; inset: 0;
    border-radius: 50%;
    filter: blur(60px); opacity: 0.55;
    animation: orbFloat 16s ease-in-out infinite alternate;
}
.orb.o1 { background: radial-gradient(circle, var(--blue-500),  transparent 60%); transform: translate(-10%, -15%); }
.orb.o2 { background: radial-gradient(circle, var(--navy-600),  transparent 60%); transform: translate(15%, 10%); animation-delay: -4s; }
.orb.o3 { background: radial-gradient(circle, var(--blue-200),  transparent 60%); transform: translate(-5%, 20%); animation-delay: -7s; opacity: 0.8; }
.orb.o4 { background: radial-gradient(circle, var(--gray-300),  transparent 60%); transform: translate(20%, -10%); animation-delay: -10s; }
@keyframes orbFloat {
    0%   { transform: translate(-10%, -15%) scale(1); }
    50%  { transform: translate(8%, 12%)    scale(1.15); }
    100% { transform: translate(-12%, 6%)   scale(0.95); }
}

.rings {
    position: absolute; inset: 6%;
    border-radius: 50%;
    border: 1px dashed rgba(26, 26, 29, 0.18);
    animation: spin 38s linear infinite;
}
.rings::before, .rings::after {
    content: ''; position: absolute; inset: 8%; border-radius: 50%;
    border: 1px solid rgba(74, 74, 82, 0.22);
}
.rings::after { inset: 18%; border-color: rgba(179, 9, 26, 0.30); animation: spin 22s linear infinite reverse; }

.conic {
    position: absolute; inset: 12%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        var(--navy-800),
        var(--blue-500),
        var(--blue-200),
        var(--gray-300),
        var(--blue-500),
        var(--navy-800));
    filter: blur(2px);
    mask: radial-gradient(circle, transparent 58%, black 60%, black 64%, transparent 66%);
    -webkit-mask: radial-gradient(circle, transparent 58%, black 60%, black 64%, transparent 66%);
    animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.core {
    position: absolute; left: 50%; top: 50%;
    width: 42%; aspect-ratio: 1 / 1; transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #f0f0f3 60%, #e2e2e6 100%);
    border: 1px solid rgba(74, 74, 82, 0.18);
    backdrop-filter: blur(14px);
    display: grid; place-items: center;
    box-shadow: 0 0 70px rgba(179, 9, 26, 0.35), inset 0 0 50px rgba(74, 74, 82, 0.12);
    animation: corePulse 4.5s ease-in-out infinite;
    overflow: hidden;
}
.core img { width: 70%; filter: drop-shadow(0 6px 14px rgba(26, 26, 29, 0.25)); }
@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 70px rgba(179, 9, 26, 0.35), inset 0 0 50px rgba(74, 74, 82, 0.12); }
    50%      { box-shadow: 0 0 110px rgba(179, 9, 26, 0.55), inset 0 0 70px rgba(74, 74, 82, 0.20); }
}

/* Orbiting dots (chip-less main graphic) */
.orbit-dots {
    position: absolute; inset: 0;
    animation: spin 28s linear infinite;
}
.orbit-dots.reverse { animation-direction: reverse; animation-duration: 36s; }
.orbit-dots .dot-arm {
    position: absolute; left: 50%; top: 50%;
    width: 50%; height: 1px; transform-origin: 0 0;
    transform: rotate(var(--a, 0deg));
}
.orb-dot {
    position: absolute; right: 0; top: 0; transform: translate(50%, -50%);
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--red-600);
    box-shadow: 0 0 14px rgba(179, 9, 26, 0.55), inset 0 0 0 2px rgba(255, 255, 255, 0.85);
}
.orb-dot.small {
    width: 7px; height: 7px;
    background: var(--gray-700);
    box-shadow: 0 0 8px rgba(74, 74, 82, 0.55), inset 0 0 0 1.5px rgba(255, 255, 255, 0.85);
}

.sweep {
    position: absolute; inset: 12%; border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 80%, rgba(179, 9, 26, 0.55) 92%, transparent 100%);
    mix-blend-mode: multiply;
    animation: spin 6s linear infinite;
    pointer-events: none;
}

/* =====================================================
   MARQUEE STRIP (logos) — double row, opposite directions
   ===================================================== */
.marquee {
    position: relative;
    padding: 22px 0;
    border-block: 1px solid var(--line);
    background: var(--white);
    overflow: hidden;
}
.marquee.marquee-double {
    display: flex; flex-direction: column;
    gap: 18px;
    padding: 26px 0;
}
.marquee::before, .marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.marquee-track {
    display: flex; gap: 50px; align-items: center;
    width: max-content;
}
.marquee-track.row-a { animation: marqueeLeft  60s linear infinite; }
.marquee-track.row-b { animation: marqueeRight 75s linear infinite; }

/* Single-row (legacy) fallback */
.marquee:not(.marquee-double) .marquee-track { animation: marqueeLeft 60s linear infinite; }

.marquee-track img {
    height: 42px;
    opacity: 0.72;
    filter: grayscale(0.55) contrast(0.95);
    transition: filter .25s, opacity .25s, transform .25s;
}
.marquee-track img:hover { opacity: 1; filter: none; transform: scale(1.06); }

@keyframes marqueeLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* =====================================================
   SECTION SHARED
   ===================================================== */
section { padding: 48px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
    font-size: clamp(20px, 2.4vw, 31px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px;
    color: var(--navy-900);
}
.section-head p { color: var(--gray-700); font-size: 17px; }

/* =====================================================
   BENTO GRID (pillars)
   ===================================================== */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 18px;
}
.bento-card {
    position: relative; padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    box-shadow: var(--shadow-sm);
}
.bento-card::before {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
    background: var(--grad-main);
    background-size: 300% 100%;
    opacity: 0; transition: opacity .35s;
    animation: hueSlide 10s linear infinite;
}
.bento-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.bento-card:hover::before { opacity: 1; }
.bento-card .glow {
    position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
    background: radial-gradient(circle, var(--g, var(--blue-500)), transparent 65%);
    filter: blur(36px); opacity: 0.18; pointer-events: none;
    animation: orbFloat 14s ease-in-out infinite alternate;
}
.bento-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--gray-100);
    color: var(--navy-800); font-size: 22px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    transition: background .3s, color .3s, transform .3s;
}
.bento-card:hover .bento-icon {
    background: var(--navy-800); color: var(--blue-200); transform: rotate(-6deg) scale(1.05);
}
.bento-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.02em; color: var(--navy-900); }
.bento-card p { color: var(--gray-700); font-size: 14.5px; }
.bento-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--blue-500);
}
.bento-link i { transition: transform .25s; }
.bento-card:hover .bento-link i { transform: translateX(4px); }

/* card spans */
.bento-card.b-1 { grid-column: span 3; grid-row: span 2; --g: var(--blue-500); }
.bento-card.b-2 { grid-column: span 3; --g: var(--navy-600); }
.bento-card.b-3 { grid-column: span 3; --g: var(--blue-200); }
.bento-card.b-4 { grid-column: span 2; --g: var(--blue-500); }
.bento-card.b-5 { grid-column: span 2; --g: var(--navy-700); }
.bento-card.b-6 { grid-column: span 2; --g: var(--blue-200); }

.bento-card.feature { display: flex; flex-direction: column; }
.bento-card.feature h3 { font-size: 24px; }
.bento-card.feature .feature-graphic {
    margin-top: auto; align-self: flex-end;
    width: 180px; height: 180px; position: relative;
}
.feature-graphic .ring-mini {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1px solid rgba(74, 74, 82, 0.25);
    animation: spin 18s linear infinite;
}
.feature-graphic .ring-mini::after {
    content: ''; position: absolute; right: -5px; top: 50%; width: 10px; height: 10px;
    border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 14px var(--blue-500);
}
.feature-graphic .ring-mini.r2 { inset: 14%; animation-duration: 12s; animation-direction: reverse; border-color: rgba(179, 9, 26, 0.30); }
.feature-graphic .ring-mini.r2::after { background: var(--navy-700); box-shadow: 0 0 14px rgba(74, 74, 82, 0.6); }
.feature-graphic .ring-mini.r3 { inset: 28%; animation-duration: 8s; }
.feature-graphic .ring-mini.r3::after { background: var(--blue-200); box-shadow: 0 0 14px var(--blue-200); }

/* TMS-specific feature graphic (transaction monitoring) */
.bento-card.feature .feature-graphic.tms-graphic {
    width: 220px; height: 150px; align-self: stretch;
    margin-top: auto;
}
.tms-graphic svg { width: 100%; height: 100%; display: block; }
.tms-graphic .tms-trend {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: tmsDraw 4.5s ease-in-out infinite;
}
.tms-graphic .tms-bars rect {
    transform-origin: bottom;
    animation: tmsBar 1.8s ease-in-out infinite;
}
.tms-graphic .tms-bars rect:nth-child(1) { animation-delay: -0.0s; }
.tms-graphic .tms-bars rect:nth-child(2) { animation-delay: -0.2s; }
.tms-graphic .tms-bars rect:nth-child(3) { animation-delay: -0.4s; }
.tms-graphic .tms-bars rect:nth-child(4) { animation-delay: -0.6s; }
.tms-graphic .tms-bars rect:nth-child(5) { animation-delay: -0.8s; }
.tms-graphic .tms-bars rect:nth-child(6) { animation-delay: -1.0s; }
.tms-graphic .tms-bars rect:nth-child(7) { animation-delay: -1.2s; }
.tms-graphic .tms-bars rect:nth-child(8) { animation-delay: -1.4s; }
.tms-graphic .tms-bars rect:nth-child(9) { animation-delay: -1.6s; }
.tms-graphic .tms-pulse {
    animation: tmsPulse 1.6s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(179, 9, 26, 0.7));
}
@keyframes tmsDraw {
    0%   { stroke-dashoffset: 600; }
    60%  { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}
@keyframes tmsBar {
    0%, 100% { transform: scaleY(0.55); }
    50%      { transform: scaleY(1); }
}
@keyframes tmsPulse {
    0%, 100% { r: 4; opacity: 1; }
    50%      { r: 7; opacity: 0.55; }
}

/* =====================================================
   SHOWCASE — split with animated panel
   ===================================================== */
.showcase {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.tech-panel {
    position: relative; aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff, #f0f0f3);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.tech-panel::before {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg,  rgba(74, 74, 82, 0.08) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, rgba(74, 74, 82, 0.08) 0 1px, transparent 1px 28px);
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}
.tech-panel .scan {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
    box-shadow: 0 0 22px var(--blue-500);
    top: 0; animation: scan 4.5s linear infinite;
}
@keyframes scan {
    0%   { top: 0; }
    100% { top: 100%; }
}
.tech-panel .core-icon {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 110px; height: 110px; border-radius: 24px;
    display: grid; place-items: center; font-size: 46px; color: #fff;
    background: var(--grad-cool);
    box-shadow: 0 0 40px rgba(179, 9, 26, 0.45);
    animation: corePulse 4s ease-in-out infinite;
}
.tech-panel .bars {
    position: absolute; left: 24px; right: 24px; bottom: 40px;
    display: flex; gap: 6px; align-items: end; height: 90px;
}
.tech-panel .bars span {
    flex: 1; background: linear-gradient(180deg, var(--blue-500), var(--navy-700));
    border-radius: 4px; opacity: 0.85;
    animation: bar 1.6s ease-in-out infinite;
}
.tech-panel .bars span:nth-child(1) { animation-delay: -0.0s; }
.tech-panel .bars span:nth-child(2) { animation-delay: -0.2s; }
.tech-panel .bars span:nth-child(3) { animation-delay: -0.4s; }
.tech-panel .bars span:nth-child(4) { animation-delay: -0.6s; }
.tech-panel .bars span:nth-child(5) { animation-delay: -0.8s; }
.tech-panel .bars span:nth-child(6) { animation-delay: -1.0s; }
.tech-panel .bars span:nth-child(7) { animation-delay: -1.2s; }
.tech-panel .bars span:nth-child(8) { animation-delay: -1.4s; }
@keyframes bar {
    0%, 100% { height: 18%; }
    50%      { height: 90%; }
}
.tech-panel .label {
    position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
    font-size: 11px; letter-spacing: 0.3em; color: var(--gray-500);
    text-transform: uppercase;
}
.tech-panel .corner {
    position: absolute; width: 22px; height: 22px;
    border: 2px solid var(--blue-500);
}
.tech-panel .corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.tech-panel .corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.tech-panel .corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.tech-panel .corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.showcase h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; margin: 16px 0; color: var(--navy-900); }
.showcase p  { color: var(--gray-700); margin-bottom: 18px; }

/* =====================================================
   TIMELINE FEATURES
   ===================================================== */
.timeline { position: relative; max-width: 920px; margin: 0 auto; }
.timeline::before {
    content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--navy-800), var(--blue-500), var(--blue-200), var(--navy-800));
    background-size: 100% 300%;
    animation: hueSlide 10s linear infinite;
    border-radius: 4px;
}
.tl-item {
    position: relative; padding: 22px 22px 22px 84px; margin-bottom: 22px;
    border-radius: var(--radius);
    background: var(--white); border: 1px solid var(--line);
    transition: transform .25s, border-color .25s, box-shadow .25s;
    box-shadow: var(--shadow-sm);
}
.tl-item:hover { transform: translateX(6px); border-color: var(--blue-500); box-shadow: var(--shadow-md); }
.tl-item .dot {
    position: absolute; left: 22px; top: 28px; width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--grad-cool);
    box-shadow: 0 0 18px rgba(179, 9, 26, 0.5);
    animation: corePulse 3s ease-in-out infinite;
}
.tl-item h3 { font-size: 18px; margin-bottom: 6px; color: var(--navy-900); }
.tl-item p  { color: var(--gray-700); font-size: 14.5px; }

/* =====================================================
   STATS RIBBON
   ===================================================== */
.stats {
    position: relative; padding: 26px 0;
    background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
    border-block: 1px solid var(--line);
    overflow: hidden;
    color: #fff;
}
.stats::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(600px 200px at 20% 50%, rgba(179, 9, 26, 0.30), transparent),
        radial-gradient(600px 200px at 80% 50%, rgba(240, 188, 193, 0.18), transparent);
    animation: meshDrift 14s ease-in-out infinite alternate;
}
.stats::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    opacity: 0.5;
}
.stats-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; text-align: center;
}
.stat .num {
    display: block; font-size: 27px; font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(115deg, #ffffff 0%, var(--blue-200) 60%, var(--blue-400) 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: hueSlide 10s linear infinite;
}
.stat .lbl { color: var(--blue-200); font-size: 10px; letter-spacing: .04em; }

/* =====================================================
   BENEFITS — dual cards
   ===================================================== */
.dual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.dual-card {
    position: relative; padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .35s, transform .35s;
}
.dual-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dual-card::after {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--grad-cool); background-size: 100% 300%;
    animation: hueSlide 10s linear infinite;
}
.dual-card h3 {
    font-size: 22px; margin-bottom: 18px;
    color: var(--navy-900);
}
.dual-card ul li {
    position: relative; padding: 8px 0 8px 28px; color: var(--gray-700); font-size: 15px;
}
.dual-card ul li::before {
    content: ''; position: absolute; left: 0; top: 14px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 8px rgba(179, 9, 26, 0.45);
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
    position: relative; padding: 70px 50px;
    border-radius: var(--radius-lg); overflow: hidden;
    text-align: center;
    background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-800) 100%);
    background-size: 200% 200%;
    border: 1px solid var(--navy-700);
    color: #fff;
    animation: hueSlide 16s linear infinite;
    box-shadow: var(--shadow-lg);
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(500px 280px at 0% 0%,   rgba(179, 9, 26, 0.30), transparent 60%),
        radial-gradient(500px 280px at 100% 100%, rgba(240, 188, 193, 0.20), transparent 60%);
}
.cta-banner::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.cta-banner h2 { position: relative; font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; color: #fff; }
.cta-banner p  { position: relative; color: var(--gray-300); max-width: 640px; margin: 0 auto 22px; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-primary { background: var(--white); color: var(--navy-900); }
.cta-banner .btn-primary:hover { background: var(--red-600); color: #fff; }

/* =====================================================
   BROCHURES
   ===================================================== */
.brochures-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.brochure {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--line); background: var(--white);
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: var(--shadow-sm);
}
.brochure:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brochure-img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--gray-100); }
.brochure-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.brochure:hover .brochure-img img { transform: scale(1.06); }
.brochure-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 29, 0.55));
}
.brochure-body { padding: 22px; position: relative; }
.brochure-body h4 { font-size: 17px; margin-bottom: 6px; color: var(--navy-900); }
.brochure-body p  { color: var(--gray-700); font-size: 14px; margin-bottom: 14px; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}
.contact-wrap::before {
    content: ''; position: absolute; right: -160px; top: -160px;
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 9, 26, 0.35), transparent 60%);
    filter: blur(20px); animation: orbFloat 14s ease-in-out infinite alternate;
}
.contact-info h3 { font-size: 22px; margin-bottom: 12px; color: var(--navy-900); }
.contact-info p  { color: var(--gray-700); margin-bottom: 22px; }
.contact-info a {
    display: flex; align-items: center; gap: 12px; padding: 10px 0;
    color: var(--navy-800); border-bottom: 1px solid var(--line);
    transition: color .2s;
}
.contact-info a:hover { color: var(--blue-500); }
.contact-info a i {
    width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
    background: var(--gray-100); border: 1px solid var(--line); color: var(--blue-500);
}

.form-row { display: grid; gap: 14px; position: relative; z-index: 1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; color: var(--gray-700); font-weight: 500; }
.field input, .field textarea {
    background: var(--gray-50);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--navy-900); font-family: inherit; font-size: 14px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus {
    outline: none; border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(179, 9, 26, 0.18);
}
.field textarea { min-height: 110px; resize: vertical; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    border-top: 1px solid var(--line);
    background: var(--navy-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
    margin-top: 40px;
    position: relative;
}
footer::before {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
    background: var(--grad-main);
    background-size: 300% 100%;
    animation: hueSlide 12s linear infinite;
    opacity: 0.85;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer-col h4 {
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-200); margin-bottom: 16px;
}
.footer-col p, .footer-col a { color: var(--gray-300); font-size: 14px; }
.footer-col li { padding: 5px 0; }
.footer-col a:hover { color: var(--blue-400); }
.footer-col img {
    display: block;
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    padding: 8px 14px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--gray-300); transition: color .2s, border-color .2s, transform .2s, background .2s;
}
.footer-social a:hover { color: #fff; background: var(--blue-500); border-color: var(--blue-500); transform: translateY(-2px); }
.footer-bottom {
    margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center; font-size: 13px; color: var(--gray-500);
}

/* =====================================================
   REVEAL ON SCROLL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================
   TICKER (under H1)
   ===================================================== */
.ticker {
    position: relative;
    margin: 18px 0 6px;
    padding: 8px 0;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(238,243,249,0.85), rgba(255,255,255,0.6));
    border-radius: 999px;
    max-width: 580px;
}
.ticker::before, .ticker::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); border-radius: 999px 0 0 999px; }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); border-radius: 0 999px 999px 0; }
.ticker-track {
    display: flex; gap: 14px; align-items: center;
    width: max-content;
    animation: tickerRun 22s linear infinite;
}
.ticker-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 14px; border-radius: 999px;
    background: var(--white); border: 1px solid var(--line-2);
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
    color: var(--navy-800); white-space: nowrap;
}
.ticker-pill::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue-500); box-shadow: 0 0 8px var(--blue-500);
}
@keyframes tickerRun {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =====================================================
   FLOW STAGE (hero) — System → API → LiveEx → Services
   No background — sits transparently on the page
   ===================================================== */
.hero-visual.neon-stage {
    display: block;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
    transition: transform .35s ease;
}
.hero-visual.neon-stage:hover { transform: translateY(-3px); }
.hero-visual.neon-stage::after { display: none !important; }
.hero-visual.neon-stage::before { content: none; }
.stage-frame { display: none; }
.ai-noise { display: none; }

.neon-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}
.neon-paths path {
    stroke-dasharray: 3 5;
    animation: dashFlow 6s linear infinite;
}
@keyframes dashFlow { to { stroke-dashoffset: -80; } }
.travel-dots circle { filter: drop-shadow(0 0 4px currentColor); }

/* ---- Light, thin nodes (rings) ---- */
.neon-node {
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}
.neon-ring {
    position: relative;
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--ring);
    background: #ffffff;
    display: grid; place-items: center;
    box-shadow:
        0 0 0 3px var(--ring-soft),
        0 6px 14px rgba(179, 9, 26, 0.08);
    animation: neonPulse 3.6s ease-in-out infinite;
}
.neon-ring::before { content: none; }
@keyframes neonPulse {
    0%, 100% {
        box-shadow:
            0 0 0 3px var(--ring-soft),
            0 6px 14px rgba(179, 9, 26, 0.08);
    }
    50% {
        box-shadow:
            0 0 0 6px var(--ring-soft),
            0 0 18px var(--ring-glow),
            0 8px 20px rgba(179, 9, 26, 0.12);
    }
}
.neon-text {
    color: var(--ring-dark, var(--ring));
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
}
.neon-ring i {
    color: var(--ring-dark, var(--ring));
    font-size: 16px;
}
.neon-sub {
    margin-top: 8px;
    font-size: 9px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gray-700);
    font-weight: 600;
    white-space: nowrap;
}

/* ---- Color variants (now on light bg) ---- */
.neon-silver {
    --ring: #b9bcc4;
    --ring-dark: #4a4a52;
    --ring-glow: rgba(122, 122, 130, 0.40);
    --ring-soft: rgba(220, 220, 224, 0.55);
}
.neon-red {
    --ring: #b3091a;
    --ring-dark: #7a0a14;
    --ring-glow: rgba(179, 9, 26, 0.40);
    --ring-soft: rgba(240, 188, 193, 0.55);
}
.neon-bright {
    --ring: #b3091a;
    --ring-dark: #7a0a14;
    --ring-glow: rgba(179, 9, 26, 0.55);
    --ring-soft: rgba(240, 188, 193, 0.75);
}

/* ---- Central LiveEx hub ---- */
.neon-node.big .neon-ring {
    width: 84px; height: 84px;
    background: #ffffff;
    padding: 8px;
    border: 1px solid var(--ring);
    box-shadow:
        0 0 0 4px var(--ring-soft),
        0 0 22px var(--ring-glow),
        0 10px 24px rgba(179, 9, 26, 0.14);
}
.neon-node.big .neon-ring::before { content: none; }
.neon-node.big .hub-logo {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(26, 26, 29, 0.15));
}

/* ---- Service nodes — light fill, soft red ---- */
.neon-node.service .neon-ring {
    width: 42px; height: 42px;
    background: #ffffff;
    border: 1px solid var(--red-600);
    box-shadow:
        0 0 0 2px rgba(240, 188, 193, 0.40),
        0 6px 14px rgba(179, 9, 26, 0.12);
}
.neon-node.service .neon-ring i {
    color: var(--red-700);
    font-size: 13px;
}
.neon-node.service .neon-ring::before { content: none; }
.neon-node.service .neon-sub {
    font-size: 8.5px;
    letter-spacing: 0;
    font-weight: 700;
    margin-top: 6px;
    color: var(--gray-900);
}

/* ---- Connector pill labels (light theme) ---- */
.neon-pill {
    position: absolute;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid var(--red-600);
    color: var(--red-700);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.20em;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow:
        0 0 0 3px rgba(240, 188, 193, 0.45),
        0 6px 14px rgba(179, 9, 26, 0.18);
    z-index: 3;
    white-space: nowrap;
}
.neon-pill.silver {
    border-color: var(--gray-300);
    color: var(--gray-700);
    box-shadow:
        0 0 0 3px rgba(220, 220, 224, 0.55),
        0 6px 14px rgba(26, 26, 29, 0.10);
}

/* ---- AI ambient touches ---- */
.ai-noise {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle at 18% 28%, rgba(255, 58, 74, 0.10) 0, transparent 36%),
        radial-gradient(circle at 78% 70%, rgba(220, 220, 224, 0.06) 0, transparent 40%);
}
.data-dot { display: none; }

.ai-status {
    position: absolute;
    top: 0; left: 0;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 12px;
    background: #ffffff;
    border: 1px solid var(--red-600);
    border-radius: 999px;
    color: var(--red-700);
    font-size: 9.5px; font-weight: 800; letter-spacing: 0.20em;
    box-shadow: 0 6px 14px rgba(179, 9, 26, 0.18);
    z-index: 4;
}
.ai-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #ff3a4a;
    box-shadow: 0 0 8px #ff3a4a;
    animation: aiPulse 1.4s ease-in-out infinite;
}
@keyframes aiPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.5; }
}

.ai-meta {
    position: absolute;
    top: 4px; right: 0;
    font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
    color: var(--gray-700);
    z-index: 4;
}
.ai-meta::before {
    content: ''; display: inline-block;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gray-500); margin-right: 7px;
    transform: translateY(-1px);
}

/* AI brain chip on the LiveEx hub */
.ai-chip {
    position: absolute; top: -9px; right: -9px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: #fff;
    display: grid; place-items: center;
    font-size: 11px;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(179, 9, 26, 0.40), 0 0 0 4px rgba(240, 188, 193, 0.45);
    animation: aiPulse 1.6s ease-in-out infinite;
    z-index: 4;
}
.sub-accent {
    color: var(--red-600);
    font-weight: 800;
}

.neon-pill i {
    margin-right: 4px;
    font-size: 9px;
    color: inherit;
    opacity: 0.9;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .hero-visual.neon-stage { max-width: 100%; }
    .neon-ring { width: 50px; height: 50px; }
    .neon-text { font-size: 11px; }
    .neon-node.big .neon-ring { width: 72px; height: 72px; }
    .neon-node.service .neon-ring { width: 40px; height: 40px; }
    .neon-sub { font-size: 8px; letter-spacing: 0.12em; }
    .neon-pill { font-size: 8px; padding: 4px 8px; letter-spacing: 0.12em; }
    .ai-status, .ai-meta { font-size: 8px; padding: 4px 8px; }
    .ai-chip { width: 22px; height: 22px; font-size: 10px; }
}

/* =====================================================
   SIMPLE STAGE (hero) — clean, light, soft red, animated
   No dark grey/silver, no dark connector lines
   ===================================================== */
.hero-visual.simple-stage {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    padding: 0;
}

/* Soft expanding ripples emanating from center */
.simple-stage .ripple {
    position: absolute;
    left: 50%; top: 50%;
    width: 32%; height: 32%;
    border-radius: 50%;
    border: 1.5px solid rgba(179, 9, 26, 0.30);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    animation: simpleRipple 4.2s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}
.simple-stage .ripple.r2 { animation-delay: 1.4s; }
.simple-stage .ripple.r3 { animation-delay: 2.8s; }
@keyframes simpleRipple {
    0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0.65; }
    80%  { opacity: 0.05; }
    100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}

/* Light dashed orbit ring */
.simple-stage .orbit-ring {
    position: absolute;
    left: 50%; top: 50%;
    width: 72%; height: 72%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(179, 9, 26, 0.28);
    animation: simpleSpin 38s linear infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes simpleSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Service chips — light, soft red, gentle pulse */
.simple-stage .orbit-chip {
    position: absolute;
    width: 64px; height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--red-700);
    box-shadow:
        0 0 0 4px rgba(240, 188, 193, 0.45),
        0 10px 24px rgba(179, 9, 26, 0.16);
    animation: chipBob 4s ease-in-out infinite;
    z-index: 3;
}
.simple-stage .orbit-chip i {
    font-size: 20px;
}
.simple-stage .orbit-chip-label {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-700);
    font-weight: 700;
    white-space: nowrap;
}
.simple-stage .orbit-chip.oc-n {
    top: 4%; left: 50%;
    margin-left: -32px;
    animation-delay: 0s;
}
.simple-stage .orbit-chip.oc-e {
    top: 50%; right: 4%;
    margin-top: -32px;
    animation-delay: 1s;
}
.simple-stage .orbit-chip.oc-s {
    bottom: 4%; left: 50%;
    margin-left: -32px;
    animation-delay: 2s;
}
.simple-stage .orbit-chip.oc-w {
    top: 50%; left: 4%;
    margin-top: -32px;
    animation-delay: 3s;
}
.simple-stage .orbit-chip.oc-s .orbit-chip-label {
    top: auto;
    bottom: calc(100% + 8px);
}
@keyframes chipBob {
    0%, 100% {
        box-shadow:
            0 0 0 4px rgba(240, 188, 193, 0.45),
            0 10px 24px rgba(179, 9, 26, 0.16);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(240, 188, 193, 0.55),
            0 0 24px rgba(179, 9, 26, 0.30),
            0 14px 30px rgba(179, 9, 26, 0.20);
    }
}

/* Central hub */
.simple-stage .simple-hub {
    position: absolute;
    left: 50%; top: 50%;
    width: 36%; aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 50%;
    display: grid; place-items: center;
    box-shadow:
        0 0 0 6px rgba(240, 188, 193, 0.55),
        0 0 50px rgba(179, 9, 26, 0.25),
        0 16px 40px rgba(179, 9, 26, 0.18);
    animation: simpleHubPulse 4s ease-in-out infinite;
    z-index: 4;
}
.simple-stage .simple-hub-logo {
    width: 70%; height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(26, 26, 29, 0.15));
}
@keyframes simpleHubPulse {
    0%, 100% {
        box-shadow:
            0 0 0 6px rgba(240, 188, 193, 0.55),
            0 0 50px rgba(179, 9, 26, 0.25),
            0 16px 40px rgba(179, 9, 26, 0.18);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(240, 188, 193, 0.70),
            0 0 80px rgba(179, 9, 26, 0.40),
            0 18px 50px rgba(179, 9, 26, 0.25);
    }
}
.simple-stage .simple-hub .ai-chip {
    top: -8px; right: -8px;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-visual.simple-stage { max-width: 100%; }
    .simple-stage .orbit-chip { width: 50px; height: 50px; }
    .simple-stage .orbit-chip i { font-size: 16px; }
    .simple-stage .orbit-chip.oc-n,
    .simple-stage .orbit-chip.oc-s { margin-left: -25px; }
    .simple-stage .orbit-chip.oc-e,
    .simple-stage .orbit-chip.oc-w { margin-top: -25px; }
    .simple-stage .orbit-chip-label { font-size: 8px; letter-spacing: 0.12em; }
    .simple-stage .simple-hub { width: 38%; }
}

/* =====================================================
   ABOUT — short logo inside tech-panel
   ===================================================== */
.core-icon-logo {
    background: #fff !important;
    box-shadow: 0 0 50px rgba(179, 9, 26, 0.45), inset 0 0 0 1px rgba(74, 74, 82, 0.15) !important;
    animation: corePulse 4s ease-in-out infinite;
    padding: 14px;
}
.core-icon-logo img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(26, 26, 29, 0.20));
}

/* =====================================================
   SME — Subject-Matter Expertise (cards + consultant graphic)
   ===================================================== */
.sme-section .service-text { max-width: 1100px; }
.sme-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px; align-items: center;
    margin-top: 32px;
}
.sme-graphic {
    position: relative;
    width: 320px; height: 320px;
    margin: 0 auto;
    display: grid; place-items: center;
}
.sme-graphic-ring,
.sme-graphic-ring.r2 {
    position: absolute; inset: 8%;
    border-radius: 50%;
    border: 1px dashed rgba(74, 74, 82, 0.30);
    animation: spin 26s linear infinite;
}
.sme-graphic-ring.r2 {
    inset: 22%;
    border-style: solid;
    border-color: rgba(179, 9, 26, 0.35);
    animation-duration: 18s;
    animation-direction: reverse;
}
.sme-graphic-badge {
    position: relative; z-index: 2;
    width: 140px; height: 140px; border-radius: 50%;
    background: linear-gradient(135deg, #0f2f5a, #1668c1);
    color: #fff;
    display: grid; place-items: center;
    font-size: 64px;
    box-shadow: 0 18px 38px rgba(15, 47, 90, 0.35), inset 0 0 0 6px rgba(255,255,255,0.10);
}
.sme-graphic-photo {
    width: 170px; height: 170px;
    overflow: hidden;
    background: #fff;
    border: 4px solid #fff;
    box-shadow: 0 18px 38px rgba(15, 47, 90, 0.35), 0 0 0 2px rgba(22, 104, 193, 0.45);
}
.sme-graphic-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    border-radius: 50%;
}
.sme-orbit {
    position: absolute; z-index: 3;
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff;
    display: grid; place-items: center;
    font-size: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}
.sme-orbit.oc-1 { top: 4%;  left: 50%; transform: translateX(-50%); color: #1668c1; }
.sme-orbit.oc-2 { top: 50%; right: 4%; transform: translateY(-50%); color: #b3091a; }
.sme-orbit.oc-3 { bottom: 4%; left: 50%; transform: translateX(-50%); color: #0f2f5a; }
.sme-orbit.oc-4 { top: 50%; left: 4%;  transform: translateY(-50%); color: #1aa179; }
.sme-graphic-caption {
    position: absolute; bottom: -28px; left: 0; right: 0;
    text-align: center; font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gray-500);
}

.sme-cards-title {
    font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--navy-700); margin: 0 0 18px;
}
.sme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.sme-card {
    position: relative;
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.sme-card:hover {
    transform: translateY(-3px);
    border-color: var(--blue-500);
    box-shadow: var(--shadow-lg);
}
.sme-card p { margin: 0; color: var(--gray-700); font-size: 14px; line-height: 1.55; }
.sme-card-icon {
    flex: 0 0 auto;
    width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center;
    color: #fff; font-size: 16px;
}
.sme-card-icon.c-blue  { background: linear-gradient(135deg, #0f2f5a, #1668c1); }
.sme-card-icon.c-red   { background: linear-gradient(135deg, #6a0a16, #b3091a); }
.sme-card-icon.c-amber { background: linear-gradient(135deg, #b8761a, #e6a23c); }
.sme-card-icon.c-teal  { background: linear-gradient(135deg, #0a5566, #0e8aa1); }
.sme-card-icon.c-green { background: linear-gradient(135deg, #0e6b4f, #1aa179); }

@media (max-width: 900px) {
    .sme-layout { grid-template-columns: 1fr; gap: 56px; }
    .sme-grid { grid-template-columns: 1fr; }
    .sme-graphic { width: 260px; height: 260px; }
    .sme-graphic-badge { width: 120px; height: 120px; font-size: 52px; }
}

/* About — clean logo (no tech-panel background) */
.about-logo {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px; padding: 12px;
}
.about-logo img {
    width: 180px; height: auto; max-width: 60%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(26, 26, 29, 0.18));
}
.about-logo-label {
    font-size: 11px; letter-spacing: 0.3em; color: var(--gray-500);
    text-transform: uppercase; text-align: center;
}

/* =====================================================
   WHY-CARDS GRID  (replaces timeline)
   ===================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.why-card {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .35s, box-shadow .35s, border-color .35s;
    box-shadow: var(--shadow-sm);
}
.why-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--grad-cool);
    background-size: 100% 300%;
    animation: hueSlide 10s linear infinite;
}
.why-card::after {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 9, 26, 0.18), transparent 65%);
    transition: transform .5s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--blue-500); box-shadow: var(--shadow-lg); }
.why-card:hover::after { transform: scale(1.2); }
.why-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
    color: #fff;
    display: grid; place-items: center;
    font-size: 22px;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(179, 9, 26, 0.35);
}
.why-tag {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--blue-500); font-weight: 700;
    margin-bottom: 10px;
}
.why-card h3 {
    font-size: 19px; margin-bottom: 8px;
    color: var(--navy-900); font-weight: 700;
}
.why-card p { color: var(--gray-700); font-size: 14.5px; }

/* =====================================================
   DUAL CARD COLOR VARIANTS
   ===================================================== */
.dual-card.variant-blue {
    background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
    border-color: #e2e2e6;
}
.dual-card.variant-blue::after {
    background: var(--blue-500);
    animation: none;
}
.dual-card.variant-blue h3 { color: var(--blue-500); }
.dual-card.variant-blue ul li::before {
    background: var(--blue-500);
    box-shadow: 0 0 10px rgba(179, 9, 26, 0.55);
}
.dual-card.variant-blue .dual-icon {
    background: var(--blue-500);
}

.dual-card.variant-navy {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-color: var(--navy-700);
    color: var(--gray-200);
}
.dual-card.variant-navy::after {
    background: var(--blue-200);
    animation: none;
}
.dual-card.variant-navy h3 { color: #fff; }
.dual-card.variant-navy ul li {
    color: var(--gray-200);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dual-card.variant-navy ul li::before {
    background: var(--blue-200);
    box-shadow: 0 0 10px rgba(240, 188, 193, 0.7);
}
.dual-card.variant-navy .dual-icon {
    background: var(--blue-200);
    color: var(--navy-900);
}

.dual-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
}
.dual-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    color: #fff; font-size: 18px;
    box-shadow: 0 6px 16px rgba(26, 26, 29, 0.18);
}
.dual-card .dual-head h3 { margin-bottom: 0; }

/* =====================================================
   CONTROLS & OPERATIONAL EFFECTIVENESS
   ===================================================== */
.controls-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.control-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    box-shadow: var(--shadow-sm);
}
.control-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.control-illu {
    position: relative; height: 220px;
    margin: -10px -10px 18px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #fdf5f6 0%, #ffffff 100%);
    overflow: hidden;
}
.control-illu.illu-operational {
    background: linear-gradient(135deg, #fff7f8 0%, #fef0e9 100%);
}
.ctrl-disc {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b3091a 0%, #fb7185 100%);
    box-shadow: 0 14px 32px rgba(122, 29, 45, 0.30);
    animation: corePulse 4s ease-in-out infinite;
}
.ctrl-disc.alt {
    background: linear-gradient(135deg, #f97316 0%, #fcd34d 100%);
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.32);
}
.ctrl-ring {
    position: absolute; left: 50%; top: 50%;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 1px dashed rgba(183, 48, 72, 0.28);
    transform: translate(-50%, -50%);
    animation: spin 18s linear infinite;
}
.ctrl-ring.r-2 { width: 220px; height: 220px; animation-duration: 28s; animation-direction: reverse; }
.illu-operational .ctrl-ring { border-color: rgba(249, 115, 22, 0.28); }
.ctrl-main {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    color: #fff; font-size: 34px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}
.ctrl-sat {
    position: absolute;
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(122, 29, 45, 0.18);
    color: var(--maroon-700, #7a1d2d);
    display: grid; place-items: center;
    font-size: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 14px rgba(122, 29, 45, 0.10);
    animation: nodeFloat 4s ease-in-out infinite;
}
.illu-operational .ctrl-sat {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(249, 115, 22, 0.24);
    color: #b45309;
}
.ctrl-sat.s1 { left: 10%; top: 16%; animation-delay: -0.3s; }
.ctrl-sat.s2 { right: 12%; top: 20%; animation-delay: -1.1s; }
.ctrl-sat.s3 { left: 14%; bottom: 18%; animation-delay: -1.8s; }
.ctrl-sat.s4 { right: 10%; bottom: 14%; animation-delay: -2.6s; }

.control-card h4 {
    font-size: 20px; color: var(--navy-900);
    margin-bottom: 14px;
}
.control-list { display: grid; gap: 8px; }
.control-list li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--gray-700); font-size: 14.5px;
    padding: 4px 0;
}
.control-list li i {
    color: var(--blue-500); font-size: 14px; margin-top: 4px; flex-shrink: 0;
}

/* =====================================================
   REGULATORY TOUCHPOINTS
   ===================================================== */
.regulatory { background: linear-gradient(180deg, transparent 0%, rgba(179, 9, 26, 0.05) 50%, transparent 100%); }
.reg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.reg-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .35s, box-shadow .35s, border-color .35s;
    box-shadow: var(--shadow-sm);
    /* Flex column so cards in the same row stretch to equal height
       and the .reg-tag pin sticks to the bottom of every card. */
    display: flex;
    flex-direction: column;
    min-height: 260px;
}
.reg-card .reg-tag { margin-top: auto; align-self: flex-start; }
.reg-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, #fb7185, #fcd34d);
    transform: scaleY(0); transform-origin: top;
    transition: transform .4s ease;
}
.reg-card:hover { transform: translateY(-4px); border-color: rgba(183, 48, 72, .25); box-shadow: 0 14px 30px rgba(122, 29, 45, .10); }
.reg-card:hover::before { transform: scaleY(1); }

/* Soft pastel badge variants — rotated across cards so the section reads light and varied. */
.reg-badge {
    display: inline-flex; flex-direction: column; align-items: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fde3e7 0%, #fb7185 100%);
    color: #7a1d2d;
    margin-bottom: 14px;
    box-shadow: 0 6px 14px rgba(251, 113, 133, .22);
}
.reg-badge span { font-size: 18px; font-weight: 800; letter-spacing: 0.02em; }
.reg-badge small { font-size: 9px; letter-spacing: 0.22em; opacity: 0.85; text-transform: uppercase; margin-top: 2px; }
.reg-badge.accent {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    color: #92400e;
    box-shadow: 0 6px 14px rgba(252, 211, 77, .28);
}
.reg-badge.muted {
    background: linear-gradient(135deg, #ccfbf1 0%, #5eead4 100%);
    color: #115e59;
    box-shadow: 0 6px 14px rgba(94, 234, 212, .28);
}
.reg-card h4 { color: var(--navy-900); font-size: 17px; margin-bottom: 8px; }
.reg-card p  { color: var(--gray-700); font-size: 14px; margin-bottom: 14px; }
.reg-tag {
    display: inline-block;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(183, 48, 72, .08);
    color: var(--maroon-700, #7a1d2d);
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    border: 1px solid rgba(183, 48, 72, .20);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
    .hero-grid, .showcase, .dual, .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .controls-grid { grid-template-columns: 1fr; }
    .reg-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card.b-1, .bento-card.b-2, .bento-card.b-3,
    .bento-card.b-4, .bento-card.b-5, .bento-card.b-6 { grid-column: span 2; grid-row: auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .brochures-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-mobile {
        display: none; padding: 16px 0 22px;
        border-top: 1px solid var(--line);
    }
    .nav-inner.open ~ .nav-mobile { display: block; }
    .nav-mobile a { display: block; padding: 10px 0; color: var(--gray-700); }
}
@media (max-width: 600px) {
    .hero { padding: 60px 0 40px; }
    .hero-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr; }
    .bento-card.b-1, .bento-card.b-2, .bento-card.b-3,
    .bento-card.b-4, .bento-card.b-5, .bento-card.b-6 { grid-column: auto; }
    .brochures-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrap { padding: 24px; }
    .reg-grid { grid-template-columns: 1fr; }
    .style-picker { flex-wrap: wrap; justify-content: center; }
    .ticker { max-width: 100%; }
}

/* ============================================================
   Hero (full-bleed slideshow with text overlay)
   ============================================================ */
.hero.hero-bleed {
  position: relative;
  width: 100%;
  /* Aspect-matched height: ~50vw mirrors the 2:1 source images so they fill
     without cropping at common viewport widths. Clamped for sanity. */
  height: clamp(520px, 52vw, 960px);
  padding: 0;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: #0f172a;
}
.hero-bleed-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bleed-stage .hs-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0f172a;
  opacity: 0;
  animation: hsFade 25s infinite ease-in-out;
  will-change: opacity, transform;
}
.hero-bleed-stage .hs-slide:nth-child(1) { animation-delay: 0s;  }
.hero-bleed-stage .hs-slide:nth-child(2) { animation-delay: 5s;  }
.hero-bleed-stage .hs-slide:nth-child(3) { animation-delay: 10s; }
.hero-bleed-stage .hs-slide:nth-child(4) { animation-delay: 15s; }
.hero-bleed-stage .hs-slide:nth-child(5) { animation-delay: 20s; }
/* Dark scrim so the text reads cleanly on any image */
.hero-bleed-stage::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .55) 0%, rgba(15, 23, 42, .35) 40%, rgba(15, 23, 42, .55) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, .35) 100%);
  z-index: 1;
}


.hero-bleed-dots {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 6px;
}

/* ============================================================
   Cinematic FX layer — diagonal light sheen, soft bokeh, vignette
   ============================================================ */
.hero-cinema-fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* ===== Per-frame AI FX — each fx-N appears only while its slide is visible =====
   5 slides × 5s = 25s cycle. Each fx fades in around the slide's enter point and
   fades out near the slide's exit. */
.fx {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fxFrame 25s infinite ease-in-out;
  pointer-events: none;
}
.fx-1 { animation-delay: 0s;  }
.fx-2 { animation-delay: 5s;  }
.fx-3 { animation-delay: 10s; }
.fx-4 { animation-delay: 15s; }
.fx-5 { animation-delay: 20s; }
@keyframes fxFrame {
  0%, 1%    { opacity: 0; }
  5%, 18%   { opacity: 1; }
  22%, 100% { opacity: 0; }
}

/* ---- Frame 1: Soft centre target-lock — light concentric pulses + thin crosshair ---- */
.fx1-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid currentColor;
  filter: drop-shadow(0 0 3px currentColor);
  transform: translate(-50%, -50%) scale(.3);
  opacity: 0;
  animation: fx1PulseRing 4.5s ease-out infinite;
}
.fx1-pulse.p1 { color: rgba(34, 211, 238, .55); animation-delay: 0s;    }
.fx1-pulse.p2 { color: rgba(255, 255, 255, .45); animation-delay: -1.5s; }
.fx1-pulse.p3 { color: rgba(252, 211, 77, .45); animation-delay: -3s;   }
@keyframes fx1PulseRing {
  0%   { opacity: .55; transform: translate(-50%, -50%) scale(.3); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(6); }
}
.fx1-cross {
  position: absolute;
  top: 50%; left: 50%;
  width: 38px; height: 38px;
  transform: translate(-50%, -50%);
  opacity: .55;
  animation: fx1CrossBlink 2.4s ease-in-out infinite;
}
.fx1-cross::before,
.fx1-cross::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 0 4px rgba(34, 211, 238, .4);
}
.fx1-cross::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.fx1-cross::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
@keyframes fx1CrossBlink {
  0%, 100% { opacity: .55; }
  50%      { opacity: .25; }
}

/* ---- Frame 2: Horizontal scan beam (single bright line sweeps top → bottom) ---- */
.fx2-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(34,211,238,.9) 25%, rgba(252,211,77,1) 50%, rgba(34,211,238,.9) 75%, transparent 100%);
  box-shadow: 0 0 14px #22d3ee, 0 0 30px rgba(34, 211, 238, .5);
  filter: blur(.5px);
  animation: fx2ScanSweep 4s ease-in-out infinite;
}
@keyframes fx2ScanSweep {
  0%   { top: -3px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ---- Frame 3: Vertical data streams (5 falling gradient lines, Matrix-style) ---- */
.fx3-stream {
  position: absolute;
  width: 1.5px; height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, .95) 60%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 0 8px rgba(34, 211, 238, .7);
  animation: fx3Fall 2.4s linear infinite;
}
.fx3-stream.s1 { left: 12%; animation-delay:  0s; }
.fx3-stream.s2 { left: 30%; animation-delay: -.5s; background: linear-gradient(180deg, transparent, rgba(252, 211, 77, .95) 60%, #fff); box-shadow: 0 0 8px rgba(252, 211, 77, .7); }
.fx3-stream.s3 { left: 56%; animation-delay: -1.0s; }
.fx3-stream.s4 { left: 73%; animation-delay: -1.5s; background: linear-gradient(180deg, transparent, rgba(251, 113, 133, .95) 60%, #fff); box-shadow: 0 0 8px rgba(251, 113, 133, .7); }
.fx3-stream.s5 { left: 88%; animation-delay: -1.9s; }
@keyframes fx3Fall {
  0%   { top: -38%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ---- Frame 4: Neural network (5 nodes connected by dashed flowing lines) ---- */
.fx4-net {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .8;
}
.fx4-net line {
  fill: none;
  stroke: rgba(34, 211, 238, .75);
  stroke-width: .35;
  stroke-dasharray: 2 3;
  vector-effect: non-scaling-stroke;
  animation: fx4Flow 3s linear infinite;
}
.fx4-net line:nth-of-type(2) { stroke: rgba(252, 211, 77, .75); animation-duration: 4s; animation-direction: reverse; }
.fx4-net line:nth-of-type(3) { stroke: rgba(251, 113, 133, .75); animation-duration: 3.5s; }
.fx4-net line:nth-of-type(5) { stroke: rgba(167, 139, 250, .75); animation-duration: 4.5s; animation-direction: reverse; }
.fx4-net circle {
  fill: #22d3ee;
  filter: drop-shadow(0 0 4px #22d3ee);
  animation: fx4NodePulse 1.8s ease-in-out infinite;
}
.fx4-net circle:nth-of-type(2) { fill: #fcd34d; filter: drop-shadow(0 0 4px #fcd34d); animation-delay: -.35s; }
.fx4-net circle:nth-of-type(3) { animation-delay: -.7s; }
.fx4-net circle:nth-of-type(4) { fill: #fb7185; filter: drop-shadow(0 0 4px #fb7185); animation-delay: -1.05s; }
.fx4-net circle:nth-of-type(5) { fill: #a78bfa; filter: drop-shadow(0 0 4px #a78bfa); animation-delay: -1.4s; }
@keyframes fx4Flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -25; }
}
@keyframes fx4NodePulse {
  0%, 100% { opacity: 1; transform-origin: center; }
  50%      { opacity: .45; }
}

/* ---- Frame 5: Threat heatmap — 4 pulsing colored blobs (red/amber/cyan/yellow) ---- */
.fx5-blob {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: screen;
  animation: fx5BlobPulse 3.6s ease-in-out infinite;
}
.fx5-blob.b1 { top: 14%; left: 10%; background: radial-gradient(circle, rgba(220, 38, 38, .80), transparent 60%); animation-delay:  0s;   }
.fx5-blob.b2 { top: 56%; left: 36%; background: radial-gradient(circle, rgba(245, 158, 11, .80), transparent 60%); animation-delay: -.9s; }
.fx5-blob.b3 { top: 20%; left: 66%; background: radial-gradient(circle, rgba(34, 211, 238, .80), transparent 60%); animation-delay: -1.8s; }
.fx5-blob.b4 { top: 62%; left: 78%; background: radial-gradient(circle, rgba(252, 211, 77, .80), transparent 60%); animation-delay: -2.7s; }
@keyframes fx5BlobPulse {
  0%, 100% { transform: scale(.85); opacity: .35; }
  50%      { transform: scale(1.18); opacity: .8;  }
}

/* Soft drifting bokeh circles — premium cinematic feel */
.cin-bokeh {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), rgba(255, 255, 255, .08) 55%, transparent 70%);
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: .55;
}
.cin-bokeh.b1 {
  width: 110px; height: 110px;
  top: 12%; left: 8%;
  animation: cinBokehDrift1 22s ease-in-out infinite alternate;
}
.cin-bokeh.b2 {
  width: 70px;  height: 70px;
  top: 62%; left: 78%;
  animation: cinBokehDrift2 26s ease-in-out infinite alternate;
}
.cin-bokeh.b3 {
  width: 140px; height: 140px;
  top: 78%; left: 32%;
  opacity: .35;
  animation: cinBokehDrift3 30s ease-in-out infinite alternate;
}
@keyframes cinBokehDrift1 { from { transform: translate(0,0)   scale(1);   } to { transform: translate(28px,-20px) scale(1.08); } }
@keyframes cinBokehDrift2 { from { transform: translate(0,0)   scale(1);   } to { transform: translate(-22px,18px) scale(1.12); } }
@keyframes cinBokehDrift3 { from { transform: translate(0,0)   scale(1);   } to { transform: translate(16px,-26px) scale(1.05); } }

/* Edge vignette — pulls focus inward, lets the headline breathe */
.cin-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 80% at 50% 50%, transparent 55%, rgba(0, 0, 0, .35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, .28) 100%);
}

@media (max-width: 540px) {
  .cin-bokeh.b1 { width: 80px; height: 80px; }
  .cin-bokeh.b2 { width: 50px; height: 50px; }
  .cin-bokeh.b3 { width: 100px; height: 100px; }
}
@media (prefers-reduced-motion: reduce) {
  .cin-bokeh, .fx, .fx1-pulse, .fx1-cross,
  .fx2-scan, .fx3-stream, .fx4-net line, .fx4-net circle,
  .fx5-blob { animation: none; }
  .fx { display: none; }
}

/* Headline overlay — left-aligned, sat ~20% below center over the slideshow */
.hero-bleed-overlay {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  top: 70%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: min(560px, calc(100% - 40px));
}
.hero-bleed-overlay h1 {
  margin: 0 !important;
  text-align: left !important;
  /* White overrides the canonical .hero h1 navy color — the hero
     headline sits over a dark photo and needs to read as white. */
  color: #fff !important;
  font-family: 'EB Garamond', Georgia, serif !important;
  font-weight: 600 !important;
  /* Reduced twice by 20% from the canonical clamp(28px, 3.6vw, 46px). */
  font-size: clamp(18px, 2.3vw, 30px) !important;
  line-height: 1.25 !important;
  letter-spacing: -.01em !important;
  padding: 18px 26px;
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}
.hero-bleed-overlay h1 .gradient-text {
  background: linear-gradient(135deg, #fca5a5 0%, #fb7185 35%, #f97316 70%, #fcd34d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 540px) {
  .hero-bleed-overlay { left: 14px; max-width: calc(100% - 28px); }
  .hero-bleed-overlay h1 { font-size: 1rem; padding: 14px 18px; }
}

/* === Transparent nav floating over the hero slideshow ===
   Only applies on pages that have a full-bleed hero (uses :has). */
body:has(.hero.hero-bleed) .nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body:has(.hero.hero-bleed) .nav::after { display: none; }

/* Soft top scrim so light nav text reads cleanly on any image */
body:has(.hero.hero-bleed) .nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .55) 0%, rgba(15, 23, 42, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Logo: keep original 1024:324 (≈3.16:1) aspect, sit in a frosted pill */
body:has(.hero.hero-bleed) .nav .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  /* Reserve space matching the image aspect so the pill never squashes the logo */
  height: 46px;
}
body:has(.hero.hero-bleed) .nav .logo img {
  filter: none;
  height: 36px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
  aspect-ratio: 1024 / 324;
}
/* Nav links go light, divider lines fade to white-translucent */
body:has(.hero.hero-bleed) .nav-links a {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}
body:has(.hero.hero-bleed) .nav-links a:hover,
body:has(.hero.hero-bleed) .nav-links a.active { color: #fff; }
body:has(.hero.hero-bleed) .nav-links > .nav-item + .nav-item {
  border-left-color: rgba(255, 255, 255, .18);
}
body:has(.hero.hero-bleed) .mobile-toggle { color: #fff; }

/* Hero must now extend up under the floating nav */
body:has(.hero.hero-bleed) .hero.hero-bleed {
  margin-top: 0;
}

/* Keep dropdowns (mega-panel) readable when nav is dark */
body:has(.hero.hero-bleed) .mega-panel,
body:has(.hero.hero-bleed) .dropdown-panel { color: var(--gray-800); }

@media (max-width: 540px) {
  .hero.hero-bleed { height: clamp(280px, 56vw, 480px); }
}

/* Standalone ticker panel (lives below the hero now) */
.ticker-panel {
  padding: 28px 0 36px;
}
.ticker.ticker-standalone {
  max-width: 100%;
}

/* ============================================================
   Hero slideshow — cross-fading 5-image carousel
   ============================================================ */
.hero-slideshow {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .28), 0 0 0 1px rgba(179, 9, 26, .08);
  text-decoration: none;
}
.hero-slideshow .hs-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hsFade 25s infinite ease-in-out;
  will-change: opacity, transform;
}
/* 5 slides, each visible ~5s with smooth cross-fade. 25s total cycle. */
.hero-slideshow .hs-slide:nth-child(1) { animation-delay: 0s;  }
.hero-slideshow .hs-slide:nth-child(2) { animation-delay: 5s;  }
.hero-slideshow .hs-slide:nth-child(3) { animation-delay: 10s; }
.hero-slideshow .hs-slide:nth-child(4) { animation-delay: 15s; }
.hero-slideshow .hs-slide:nth-child(5) { animation-delay: 20s; }
@keyframes hsFade {
  0%   { opacity: 0; transform: scale(1.04); }
  5%   { opacity: 1; transform: scale(1); }
  20%  { opacity: 1; transform: scale(1.02); }
  25%  { opacity: 0; transform: scale(1.04); }
  100% { opacity: 0; transform: scale(1.04); }
}
/* Subtle vignette + bottom gradient so any captions/badges stay readable */
.hero-slideshow::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.32) 100%);
  pointer-events: none;
  z-index: 2;
}
/* AI status badge stays on top of the slideshow */
.hero-slideshow .ai-status {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .96);
  color: #5c0a0a;
  border: 1px solid rgba(179, 9, 26, .25);
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .14);
}
.hero-slideshow .ai-status .ai-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #b3091a;
  box-shadow: 0 0 8px #b3091a;
  animation: hsAiPulse 1.4s ease-in-out infinite;
}
@keyframes hsAiPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.3); } }

/* Slide indicator dots at the bottom */
.hero-slideshow .hs-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 3;
}
.hero-slideshow .hs-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  box-shadow: 0 1px 4px rgba(0,0,0,.4);
  animation: hsDotActive 25s infinite ease-in-out;
}
.hero-slideshow .hs-dots span:nth-child(1) { animation-delay: 0s;  }
.hero-slideshow .hs-dots span:nth-child(2) { animation-delay: 5s;  }
.hero-slideshow .hs-dots span:nth-child(3) { animation-delay: 10s; }
.hero-slideshow .hs-dots span:nth-child(4) { animation-delay: 15s; }
.hero-slideshow .hs-dots span:nth-child(5) { animation-delay: 20s; }
@keyframes hsDotActive {
  0%, 4%    { background: rgba(255,255,255,.45); width: 7px; }
  6%, 18%   { background: #fff; width: 20px; box-shadow: 0 0 10px rgba(255,255,255,.7), 0 1px 4px rgba(0,0,0,.4); border-radius: 99px; }
  22%, 100% { background: rgba(255,255,255,.45); width: 7px; }
}

@media (max-width: 980px) { .hero-slideshow { max-width: 460px; } }
@media (max-width: 540px) { .hero-slideshow { max-width: 360px; aspect-ratio: 4 / 3; } }
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hs-slide,
  .hero-slideshow .hs-dots span,
  .hero-slideshow .ai-status .ai-pulse { animation: none; }
  .hero-slideshow .hs-slide:nth-child(1) { opacity: 1; }
}

/* ============================================================
   Clients & Integrations — imported from CC_website
   (self-contained: own CSS variables so no clash with destination)
   ============================================================ */
.cc-imp {
  --cc-radius: 10px;
  --cc-radius-lg: 18px;
  --cc-border: rgba(15, 23, 42, .1);
  --cc-shadow-sm: 0 2px 6px rgba(15, 23, 42, .06);
  --cc-shadow: 0 14px 30px rgba(15, 23, 42, .1);
  --cc-dur: .25s;
  --cc-ease-out: cubic-bezier(.22, .61, .36, 1);
  --cc-accent: #2563eb;
}
.cc-imp .cc-section-head {
  text-align: center;
  margin: 0 auto 14px;
  max-width: 720px;
}
.cc-imp .cc-eyebrow {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cc-accent);
  margin-bottom: 6px;
}
/* .cc-imp .cc-section-head h2 — canonical heading style is set in
   style.css (single typography standard for all panel headings).
   The .cc-grad span inside it uses the same canonical gradient. */

/* --- Integrations glassmorphic panel --- */
.cc-imp .integrations-glass {
  position: relative;
  padding: 32px 44px;
  border-radius: var(--cc-radius-lg);
  background:
    radial-gradient(circle at 18% 26%, rgba(59,130,246,.55) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(139,92,246,.55) 0%, transparent 45%),
    linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #4c1d95 100%);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  overflow: hidden;
}
.cc-imp .integrations-glass::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cc-imp .glass-card {
  position: relative;
  height: 88px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--cc-radius);
  display: grid; place-items: center;
  padding: 14px;
  animation: ccGlassBob 5s ease-in-out infinite;
  transition: transform .3s, background .3s, border-color .3s, box-shadow .3s;
  z-index: 1;
}
.cc-imp .glass-card:nth-child(6n+1) { animation-delay: 0s; }
.cc-imp .glass-card:nth-child(6n+2) { animation-delay: .6s; }
.cc-imp .glass-card:nth-child(6n+3) { animation-delay: 1.2s; }
.cc-imp .glass-card:nth-child(6n+4) { animation-delay: 1.8s; }
.cc-imp .glass-card:nth-child(6n+5) { animation-delay: 2.4s; }
.cc-imp .glass-card:nth-child(6n+6) { animation-delay: 3.0s; }
@keyframes ccGlassBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.cc-imp .glass-card:hover {
  background: #fff;
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  transform: translateY(-6px) scale(1.03);
  z-index: 5;
}
.cc-imp .glass-card img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
}
@media (max-width: 760px) { .cc-imp .integrations-glass { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .cc-imp .integrations-glass { grid-template-columns: repeat(3, 1fr); padding: 24px 16px; } }
@media (prefers-reduced-motion: reduce) {
  .cc-imp .glass-card { animation: none !important; }
}

/* --- Clients wall: 5 alternating-direction marquee rows --- */
.cc-imp .clients-wall {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
}
.cc-imp .clients-row {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.cc-imp .clients-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: ccClientsScroll 55s linear infinite;
}
.cc-imp .clients-row:nth-child(even) .clients-track { animation-direction: reverse; }
.cc-imp .clients-row:nth-child(1) .clients-track { animation-duration: 55s; }
.cc-imp .clients-row:nth-child(2) .clients-track { animation-duration: 72s; }
.cc-imp .clients-row:nth-child(3) .clients-track { animation-duration: 62s; }
.cc-imp .clients-row:nth-child(4) .clients-track { animation-duration: 68s; }
.cc-imp .clients-row:nth-child(5) .clients-track { animation-duration: 58s; }
.cc-imp .clients-row:hover .clients-track { animation-play-state: paused; }
@keyframes ccClientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cc-imp .clients-card {
  flex-shrink: 0;
  width: 150px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow-sm);
  transition: transform var(--cc-dur) var(--cc-ease-out), box-shadow var(--cc-dur) var(--cc-ease-out), border-color var(--cc-dur) var(--cc-ease-out);
}
.cc-imp .clients-card:hover {
  transform: translateY(-3px);
  border-color: var(--cc-accent);
  box-shadow: var(--cc-shadow);
}
.cc-imp .clients-card img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(45%);
  opacity: .82;
  transition: filter var(--cc-dur) var(--cc-ease-out), opacity var(--cc-dur) var(--cc-ease-out);
}
.cc-imp .clients-card:hover img { filter: grayscale(0); opacity: 1; }
@media (max-width: 640px) {
  .cc-imp .clients-card { width: 120px; height: 64px; padding: 8px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .cc-imp .clients-track { animation: none !important; }
}

/* Container wrappers — note the .cc-imp.cc-section-tight selector (both classes
   on the SAME element). Without this the global "section { padding: 96px 0 }"
   rule wins and creates a 192px gap between panels. */
.cc-imp.cc-section-tight { padding: 48px 0; }
.cc-imp .cc-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
/* Tighter clients-wall and integrations padding too */
.cc-imp .clients-wall { padding: 2px 0; gap: 8px; }
.cc-imp .integrations-glass { padding: 16px 32px; }
/* Tight section heads */
.cc-imp .cc-section-head { margin: 0 auto 8px; }

/* ============================================================
   THE LIVEEX PLATFORM section — product cards
   Ported from CC_website (.prod-*), adapted to the LXS maroon palette.
   ============================================================ */
.lx-platform { padding: 56px 0; background: var(--white, #fff); }
.lx-platform .section-head { text-align: center; }
.lx-platform .section-head .eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon-700, #7a1d2d);
  margin-bottom: 10px;
}
.lx-platform .section-head h2 { margin: 0; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.prod-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white, #fff);
  border: 1px solid var(--line, #f1e5e8);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.prod-card:hover {
  border-color: var(--maroon-500, #b73048);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(183, 48, 72, .16);
}
.prod-icon {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: rgba(183, 48, 72, .10);
  color: var(--maroon-700, #7a1d2d);
  border-radius: 10px;
  transition: background .25s ease, color .25s ease;
}
.prod-icon svg { width: 18px; height: 18px; }
.prod-card:hover .prod-icon {
  background: linear-gradient(135deg, #b3091a 0%, #fb7185 100%);
  color: #fff;
}
.prod-meta {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.prod-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900, #0a1428);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.prod-tag {
  font-size: .68rem;
  font-weight: 600;
  color: var(--maroon-700, #7a1d2d);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.prod-arrow {
  flex: 0 0 auto;
  color: rgba(10, 20, 40, .35);
  display: grid;
  place-items: center;
  transition: color .25s ease, transform .25s ease;
}
.prod-arrow svg { width: 16px; height: 16px; }
.prod-card:hover .prod-arrow {
  color: var(--maroon-500, #b73048);
  transform: translateX(4px);
}


/* CERTS ROW — tight inline variant for the index footer-strip placement */
.certs-row-tight { padding: 14px 0 !important; }
.certs-row-tight .container { padding-top: 0 !important; padding-bottom: 0 !important; }
.cc-certs-inline { margin-top: 0 !important; padding-top: 0 !important; border-top: 0 !important; justify-content: center; }
.cc-certs-inline .cc-certs-label { margin-right: 12px; }

/* CERTS strip placed inside the dark footer (no light-on-light override). */
footer .cc-certs-in-footer { margin: 18px 0 12px; padding-top: 16px; border-top: 1px dashed rgba(255,255,255,.12); justify-content: center; }
footer .cc-certs-in-footer .cc-certs-label { color: rgba(255,255,255,.55); margin-right: 12px; }

/* ============================================================
   TMS deep-page extras — num-card grid, prose, callout, feature-list.
   Ported from CC_website, repainted in the LXS maroon palette.
   ============================================================ */
.tms-extra { padding: 45px 0; background: var(--white, #fff); }
.tms-extra-alt { background: linear-gradient(180deg, #ffffff 0%, #faf5f6 100%); }
.tms-extra .section-head { text-align: center; max-width: 760px; margin: 0 auto 25px; }
.tms-extra .section-head h2 { margin: 6px 0 0; }
.tms-sub { margin-top: 22px !important; color: var(--maroon-700, #7a1d2d); }

/* 'Why TMS matters' — 2-column layout, no image. Left = paragraph, right = FATF list. */
.tms-why-head { text-align: center; margin-bottom: 28px !important; }
.tms-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.tms-why-col p { font-size: 1rem; line-height: 1.75; color: rgba(10, 20, 40, .80); margin: 0 0 14px; }
.tms-why-col h4 { color: var(--maroon-700, #7a1d2d); }
@media (max-width: 820px) {
  .tms-why-grid { grid-template-columns: 1fr; gap: 28px; }
}

.num-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.num-grid-3 { grid-template-columns: repeat(3, 1fr); }
.num-grid-tight { margin-top: 28px; }
@media (max-width: 900px) { .num-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .num-grid-3 { grid-template-columns: 1fr; } }

.num-card {
  padding: 22px 22px 20px;
  background: var(--white, #fff);
  border: 1px solid var(--line, #f1e5e8);
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.num-card:hover {
  transform: translateY(-3px);
  border-color: var(--maroon-500, #b73048);
  box-shadow: 0 10px 24px rgba(183, 48, 72, .12);
}
.num-badge {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #b3091a 0%, #fb7185 100%);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  box-shadow: 0 6px 14px rgba(183, 9, 26, .28);
}
.num-card h4 { margin: 0 0 4px !important; }
.num-card p { margin: 0; font-size: .92rem; line-height: 1.5; color: rgba(10, 20, 40, .72); }

/* Custom-styled feature list (checkmark bullet, LXS maroon accent) */
.feature-list { list-style: none; margin: 18px 0; padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: .98rem;
  color: rgba(10, 20, 40, .82);
}
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: rgba(183, 48, 72, .14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237a1d2d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Prose block — long-form regulatory text with callout */
.prose-block { max-width: 820px; margin: 0 auto; }
.prose-block .eyebrow { display: inline-block; margin-bottom: 14px; }
.prose-block h2 { margin: 8px 0 18px; }
.prose-block h3 { margin: 28px 0 12px; color: var(--maroon-800, #5c1524); }
.prose-block p, .prose-block li { color: rgba(10, 20, 40, .80); font-size: 1rem; line-height: 1.75; }
.prose-block ul, .prose-block ol { padding-left: 1.4em; margin: 12px 0 16px; }
.prose-block li { margin: 4px 0; }
.prose-block strong { color: var(--navy-900, #0a1428); font-weight: 600; }
.callout {
  background: rgba(183, 48, 72, .06);
  border-left: 3px solid var(--maroon-500, #b73048);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 22px 0;
}
.callout p:last-child { margin: 0; }


/* ============================================================
   TMS page — intro card + animated detection & tuning graphics
   ============================================================ */
.tms-intro { padding: 40px 0 22px; background: var(--white, #fff); }
.tms-intro-card {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.tms-intro-card h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 18px;
  color: var(--maroon-800, #5c1524);
}
.tms-intro-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(10, 20, 40, .80);
  margin: 0 auto 14px;
  max-width: 760px;
}

/* Shared FX-card frame for animated graphics */
.tms-fx-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #fff 0%, #fdf5f6 100%);
  border: 1px solid var(--line, #f1e5e8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(122, 29, 45, .12);
}

/* --- Detection logic animated SVG --- */
.tms-detect-fx svg { width: 100%; height: 100%; display: block; }

.tms-detect-fx .scan-bar,
.tms-detect-fx .scan-line { animation: tms-scan 5s linear infinite; }
@keyframes tms-scan {
  0%   { transform: translateY(0);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(360px); opacity: 0; }
}

.tms-detect-fx .tx-dot { animation: tms-twinkle 3.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.tms-detect-fx .tx-dot:nth-child(3n)   { animation-delay: .4s; }
.tms-detect-fx .tx-dot:nth-child(3n+1) { animation-delay: 1.1s; }
.tms-detect-fx .tx-dot:nth-child(5n)   { animation-delay: 1.8s; }
.tms-detect-fx .tx-dot:nth-child(7n)   { animation-delay: 2.5s; }
@keyframes tms-twinkle {
  0%, 100% { opacity: .25; }
  50%      { opacity: .85; }
}

.tms-detect-fx .tx-alert { animation: tms-alert 2.6s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.tms-detect-fx .tx-alert.a1 { animation-delay: 0s; }
.tms-detect-fx .tx-alert.a2 { animation-delay: .55s; }
.tms-detect-fx .tx-alert.a3 { animation-delay: 1.1s; }
.tms-detect-fx .tx-alert.a4 { animation-delay: 1.65s; }
.tms-detect-fx .tx-alert.a5 { animation-delay: 2.2s; }
@keyframes tms-alert {
  0%   { r: 4;  opacity: 1; }
  60%  { r: 14; opacity: 0; }
  100% { r: 4;  opacity: 0; }
}

.tms-detect-fx .fx-chip {
  position: absolute;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(183, 9, 26, .35);
  color: var(--maroon-700, #7a1d2d);
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(183, 9, 26, .12);
  opacity: 0;
  animation: tms-chip-pop 9s linear infinite;
  pointer-events: none;
}
.tms-detect-fx .fx-chip.c1 { top: 14%;    left: 10%; animation-delay: 0s;   }
.tms-detect-fx .fx-chip.c2 { top: 36%;    right: 8%; animation-delay: 2.25s;}
.tms-detect-fx .fx-chip.c3 { bottom: 28%; left: 8%;  animation-delay: 4.5s; }
.tms-detect-fx .fx-chip.c4 { bottom: 10%; right: 14%; animation-delay: 6.75s;}
@keyframes tms-chip-pop {
  0%, 4%, 100%  { opacity: 0; transform: translateY(8px); }
  10%, 20%      { opacity: 1; transform: translateY(0); }
  26%           { opacity: 0; transform: translateY(-8px); }
}

/* --- Tuning workbench animated graphic --- */
.tms-tune-fx { background: linear-gradient(135deg, #fff 0%, #faf0f2 100%); }
.tms-tune-fx .tune-frame {
  position: absolute;
  inset: 18px;
  background: #fff;
  border: 1px solid var(--line, #f1e5e8);
  border-radius: 12px;
  padding: 14px 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 6px 18px rgba(122,29,45,.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tms-tune-fx .tune-head {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(122, 29, 45, .18);
}
.tms-tune-fx .tune-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(122, 29, 45, .35);
}
.tms-tune-fx .tune-dot:nth-child(1) { background: #fb7185; }
.tms-tune-fx .tune-dot:nth-child(2) { background: #fcd34d; }
.tms-tune-fx .tune-dot:nth-child(3) { background: #34d399; }
.tms-tune-fx .tune-title {
  flex: 1; margin-left: 10px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(10, 20, 40, .72);
  letter-spacing: .04em;
}
.tms-tune-fx .tune-pill {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .12em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(16, 185, 129, .12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, .32);
}

.tms-tune-fx .tune-row {
  display: flex; align-items: center; gap: 10px;
  font-size: .72rem;
}
.tms-tune-fx .tune-label {
  flex: 0 0 80px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--maroon-700, #7a1d2d);
}
.tms-tune-fx .tune-track {
  flex: 1;
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: rgba(122, 29, 45, .12);
}
.tms-tune-fx .tune-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #b3091a, #fb7185);
}
.tms-tune-fx .tune-handle {
  position: absolute;
  top: -5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #b3091a;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  transform: translateX(-50%);
}
.tms-tune-fx .f1 { animation: tune-fill1 6s ease-in-out infinite alternate; }
.tms-tune-fx .h1 { animation: tune-handle1 6s ease-in-out infinite alternate; }
.tms-tune-fx .f2 { animation: tune-fill2 5s ease-in-out infinite alternate; }
.tms-tune-fx .h2 { animation: tune-handle2 5s ease-in-out infinite alternate; }
.tms-tune-fx .f3 { animation: tune-fill3 7s ease-in-out infinite alternate; }
.tms-tune-fx .h3 { animation: tune-handle3 7s ease-in-out infinite alternate; }
@keyframes tune-fill1   { 0% { width: 35%; } 100% { width: 58%; } }
@keyframes tune-handle1 { 0% { left: 35%;  } 100% { left: 58%;  } }
@keyframes tune-fill2   { 0% { width: 62%; } 100% { width: 45%; } }
@keyframes tune-handle2 { 0% { left: 62%;  } 100% { left: 45%;  } }
@keyframes tune-fill3   { 0% { width: 48%; } 100% { width: 72%; } }
@keyframes tune-handle3 { 0% { left: 48%;  } 100% { left: 72%;  } }

.tms-tune-fx .tune-val {
  flex: 0 0 36px;
  text-align: right;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 600;
  font-size: .72rem;
  color: var(--maroon-800, #5c1524);
}

.tms-tune-fx .tune-spark {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px dashed rgba(122, 29, 45, .18);
}
.tms-tune-fx .tune-spark-lbl {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 20, 40, .55);
  margin-bottom: 6px;
}
.tms-tune-fx .tune-spark svg { width: 100%; height: 38px; display: block; }
.tms-tune-fx .spark-fill { fill: rgba(183, 9, 26, .08); }
.tms-tune-fx .spark-ln {
  fill: none;
  stroke: #b3091a;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: spark-draw 3.5s ease-out forwards infinite;
}
.tms-tune-fx .spark-pt   { fill: #b3091a; animation: spark-pulse 2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes spark-draw  { 0% { stroke-dashoffset: 800; } 60%, 100% { stroke-dashoffset: 0; } }
@keyframes spark-pulse { 0%, 100% { r: 3; opacity: 1; } 50% { r: 5; opacity: .55; } }

.tms-tune-fx .tune-foot {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: auto;
}
.tms-tune-fx .tune-tag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(122, 29, 45, .08);
  color: var(--maroon-700, #7a1d2d);
}

@media (prefers-reduced-motion: reduce) {
  .tms-detect-fx *,
  .tms-tune-fx * { animation: none !important; }
}

/* Stand-for dark panel — heading must read white over the dark gradient,
   overriding the canonical .lx-h2 navy colour. */
.stand-copy h2,
.stand-panel .stand-copy h2 { color: #fff !important; }

/* ============================================================
   LIGHT FOOTER — overrides the prior dark navy/maroon footers.
   Soft ivory-rose backdrop, dark text, maroon accents.
   ============================================================ */
footer {
  background: linear-gradient(180deg, #faf0f2 0%, #ffffff 100%) !important;
  color: rgba(10, 20, 40, 0.78) !important;
  border-top: 1px solid rgba(122, 29, 45, 0.15) !important;
}
footer::before {
  background: linear-gradient(90deg, #b3091a, #fb7185, #b3091a) !important;
  opacity: .9;
}

footer .footer-col h4 {
  color: var(--maroon-800, #5c1524) !important;
  border-bottom-color: rgba(122, 29, 45, 0.22) !important;
}
footer .footer-col p,
footer .footer-col li,
footer .footer-col ul li a {
  color: rgba(10, 20, 40, 0.72) !important;
}
footer .footer-col ul li a:hover {
  color: var(--maroon-700, #7a1d2d) !important;
}

footer .footer-contact-info a { color: var(--maroon-700, #7a1d2d) !important; }
footer .footer-contact-info i { color: var(--maroon-500, #b73048) !important; }

footer .footer-social a {
  background: rgba(122, 29, 45, 0.06) !important;
  color: var(--maroon-700, #7a1d2d) !important;
  border: 1px solid rgba(122, 29, 45, 0.18) !important;
}
footer .footer-social a:hover {
  background: var(--maroon-500, #b73048) !important;
  color: #fff !important;
  border-color: var(--maroon-500, #b73048) !important;
}

footer .footer-bottom {
  border-top: 1px solid rgba(122, 29, 45, 0.15) !important;
}
footer .footer-bottom,
footer .footer-bottom p {
  color: rgba(10, 20, 40, 0.55) !important;
}

/* Logo sits on a soft white pill, sized 30% larger than the base rule. */
footer .footer-col img {
  background: #ffffff !important;
  padding: 16px 23px !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 14px rgba(122, 29, 45, .10) !important;
  height: 78px !important;
  max-width: 312px !important;
  width: auto !important;
}

/* Cert strip inside the footer — swap to the light variant chip colours. */
footer .cc-certs-in-footer {
  border-top-color: rgba(122, 29, 45, 0.18) !important;
}
footer .cc-certs-in-footer .cc-certs-label {
  color: rgba(10, 20, 40, 0.55) !important;
}
footer .cc-certs .cc-cert {
  background: rgba(183, 48, 72, 0.06) !important;
  border-color: rgba(183, 48, 72, 0.30) !important;
}
footer .cc-certs .cc-cert-prefix { color: var(--maroon-700, #7a1d2d) !important; }
footer .cc-certs .cc-cert-num    { color: var(--navy-900, #1a1f3a) !important; }
footer .cc-certs .cc-cert.cc-cert-gdpr   { border-color: rgba(16, 185, 129, 0.30) !important; }
footer .cc-certs .cc-cert.cc-cert-gdpr   .cc-cert-prefix { color: #15803d !important; }
footer .cc-certs .cc-cert.cc-cert-peppol { border-color: rgba(176, 38, 255, 0.30) !important; }
footer .cc-certs .cc-cert.cc-cert-peppol .cc-cert-prefix { color: #7c3aed !important; }

/* Footer typography — black text in Cambria, overriding the canonical Inter body font. */
footer,
footer p,
footer li,
footer a,
footer h4,
footer .footer-col p,
footer .footer-col li,
footer .footer-col ul li a,
footer .footer-bottom,
footer .footer-bottom p,
footer .footer-contact-info a,
footer .footer-contact-info i,
footer .cc-certs-in-footer .cc-certs-label,
footer .cc-certs .cc-cert-prefix,
footer .cc-certs .cc-cert-num {
  font-family: Cambria, Georgia, 'Times New Roman', serif !important;
  color: #000 !important;
}
footer .footer-col h4 {
  color: #000 !important;
}
footer .footer-col ul li a:hover {
  color: var(--maroon-700, #7a1d2d) !important;
}

/* ============================================================
   LIGHTEN dark site-wide panels — stats ribbon, talk section, CTA banner.
   Soft ivory-rose backdrops with maroon accents instead of dark navy/maroon.
   ============================================================ */

/* Stats ribbon (27+ Years, 16 Countries, 95%, 1M+, 1500+) */
.stats {
  background: linear-gradient(120deg, #fdf5f6 0%, #ffffff 50%, #fef0e9 100%) !important;
  border-block: 1px solid rgba(122, 29, 45, .15) !important;
  color: var(--navy-900, #0a1428) !important;
}
.stats::before {
  background:
    radial-gradient(600px 200px at 20% 50%, rgba(183, 9, 26, .10), transparent),
    radial-gradient(600px 200px at 80% 50%, rgba(251, 113, 133, .10), transparent) !important;
}
.stats::after {
  background-image:
    linear-gradient(rgba(122, 29, 45, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 29, 45, .05) 1px, transparent 1px) !important;
  opacity: .6 !important;
}
.stats .stat .num {
  background: linear-gradient(115deg, #b3091a 0%, #fb7185 55%, #f97316 100%) !important;
  background-size: 300% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.stats .stat .lbl {
  color: var(--maroon-700, #7a1d2d) !important;
  letter-spacing: .08em !important;
  font-weight: 600 !important;
}

/* Talk-section CTA strip (the "Want to see X end-to-end?" block) */
.talk-section {
  background: linear-gradient(120deg, #fff7f8 0%, #faf0f2 100%) !important;
}
.talk-section h3,
.talk-section p {
  color: var(--navy-900, #0a1428) !important;
}
.talk-section p { color: rgba(10, 20, 40, .75) !important; }
.talk-section .btn {
  background: var(--maroon-700, #7a1d2d) !important;
  color: #fff !important;
  border-color: var(--maroon-700, #7a1d2d) !important;
}
.talk-section .btn:hover {
  background: var(--maroon-500, #b73048) !important;
  border-color: var(--maroon-500, #b73048) !important;
}

/* CTA banner (the "Book a demo" panel) */
.cta-banner {
  background: linear-gradient(120deg, #fdf5f6 0%, #ffffff 60%, #fef0e9 100%) !important;
  color: var(--navy-900, #0a1428) !important;
  box-shadow: 0 18px 40px rgba(122, 29, 45, .08) !important;
}
.cta-banner h2,
.cta-banner p {
  color: var(--navy-900, #0a1428) !important;
}
.cta-banner p { color: rgba(10, 20, 40, .75) !important; }
.cta-banner .btn-primary,
.cta-banner .btn-lg {
  background: var(--maroon-700, #7a1d2d) !important;
  color: #fff !important;
  border-color: var(--maroon-700, #7a1d2d) !important;
}
.cta-banner .btn-primary:hover,
.cta-banner .btn-lg:hover {
  background: var(--maroon-500, #b73048) !important;
  border-color: var(--maroon-500, #b73048) !important;
}

/* ============================================================
   'Why Compliance Teams Choose LiveEx-Shield' — light pastel
   icon tiles (yellow / green / pink / peach), matching the
   Regulatory Touchpoints badge palette earlier on the page.
   ============================================================ */
.why-grid .why-card:nth-child(1) .why-icon {
  background: linear-gradient(135deg, #fde3e7 0%, #fb7185 100%) !important;
  color: #7a1d2d !important;
  box-shadow: 0 8px 18px rgba(251, 113, 133, .25) !important;
}
.why-grid .why-card:nth-child(2) .why-icon {
  background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%) !important;
  color: #92400e !important;
  box-shadow: 0 8px 18px rgba(252, 211, 77, .30) !important;
}
.why-grid .why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, #ccfbf1 0%, #5eead4 100%) !important;
  color: #115e59 !important;
  box-shadow: 0 8px 18px rgba(94, 234, 212, .30) !important;
}
.why-grid .why-card:nth-child(4) .why-icon {
  background: linear-gradient(135deg, #fff7ed 0%, #fdba74 100%) !important;
  color: #9a3412 !important;
  box-shadow: 0 8px 18px rgba(253, 186, 116, .30) !important;
}
/* The little eyebrow tag above the heading echoes the tile's accent colour. */
.why-grid .why-card:nth-child(1) .why-tag { color: #b3091a !important; }
.why-grid .why-card:nth-child(2) .why-tag { color: #b45309 !important; }
.why-grid .why-card:nth-child(3) .why-tag { color: #0f766e !important; }
.why-grid .why-card:nth-child(4) .why-tag { color: #c2410c !important; }

/* ============================================================
   'What We Stand For / Six principles, one operating standard.'
   panel — lightened. Replaces the prior dark indigo gradient,
   drops the dense shield+rings+chips graphic for a simple
   'Six Principles' emblem. company.html only uses these names.
   ============================================================ */
.stand-panel {
  background: linear-gradient(135deg, #fdf5f6 0%, #ffffff 60%, #fef0e9 100%) !important;
  box-shadow: 0 22px 48px rgba(122, 29, 45, .12),
              0 0 0 1px rgba(183, 48, 72, .14) !important;
}
.stand-panel-bg {
  background:
    radial-gradient(700px 360px at 12% 8%, rgba(183, 48, 72, .14), transparent 55%),
    radial-gradient(600px 320px at 88% 92%, rgba(251, 113, 133, .14), transparent 55%) !important;
}
.stand-panel::after {
  background: linear-gradient(90deg, transparent, #b3091a, #fb7185, #f97316, transparent) !important;
}
.stand-panel-grid { color: var(--navy-900, #0a1428) !important; }

/* Override the earlier 'white heading' rule — this panel is now light. */
.stand-copy h2,
.stand-panel .stand-copy h2 { color: var(--maroon-800, #5c1524) !important; }
.stand-lede { color: rgba(10, 20, 40, .78) !important; }
.stand-lede b, .stand-lede strong { color: var(--navy-900, #0a1428) !important; }
.stand-checks li { color: rgba(10, 20, 40, .80) !important; }
.stand-checks li i {
  color: var(--maroon-500, #b73048) !important;
  filter: none !important;
}
.stand-checks li b { color: var(--navy-900, #0a1428) !important; }

.stand-pill {
  background: rgba(183, 48, 72, .08) !important;
  color: var(--maroon-700, #7a1d2d) !important;
  border-color: rgba(183, 48, 72, .25) !important;
}
.stand-pill i { color: var(--maroon-700, #7a1d2d) !important; }

.stand-cta {
  background: var(--maroon-700, #7a1d2d) !important;
  color: #fff !important;
}
.stand-cta i { color: #fff !important; }
.stand-cta:hover {
  background: var(--maroon-500, #b73048) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(183, 48, 72, .28) !important;
}

/* Hide remnants of the old dense graphic (rings, badge text, chips). */
.stand-graphic .sg-ring,
.stand-graphic .sg-shield,
.stand-graphic .sg-badge-text,
.stand-graphic .sg-chips { display: none !important; }

/* New simple emblem: shield with a centered '6' + caption */
.sg-emblem {
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  filter: drop-shadow(0 16px 30px rgba(183, 9, 26, .22));
  animation: sgEmblemFloat 4s ease-in-out infinite;
}
@keyframes sgEmblemFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.sg-emblem-text { text-align: center; }
.sg-emblem-tag {
  display: block;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--maroon-800, #5c1524);
  margin-bottom: 4px;
}
.sg-emblem-sub {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  color: rgba(10, 20, 40, .55);
  text-transform: uppercase;
  font-weight: 700;
}

/* Six animated flowing lines — one per Trust Principle.
   Each line has a label, a track, and a gradient pulse that
   slides left→right. Staggered start delays keep the panel
   alive without going noisy. Honours prefers-reduced-motion. */
.sg-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 18px;
}
.sg-line {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
}
.sg-line-label {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--maroon-800, #5c1524);
  text-align: right;
  letter-spacing: .01em;
}
.sg-line-track {
  position: relative;
  height: 4px;
  background: rgba(183, 48, 72, .12);
  border-radius: 2px;
  overflow: hidden;
}
.sg-line-fill {
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, #b3091a 30%, #fb7185 65%, transparent);
  border-radius: 2px;
  animation: sgLineFlow 4s linear infinite;
}
.sg-line:nth-child(1) .sg-line-fill { animation-delay: 0s;   }
.sg-line:nth-child(2) .sg-line-fill { animation-delay: .35s; }
.sg-line:nth-child(3) .sg-line-fill { animation-delay: .70s; }
.sg-line:nth-child(4) .sg-line-fill { animation-delay: 1.05s;}
.sg-line:nth-child(5) .sg-line-fill { animation-delay: 1.40s;}
.sg-line:nth-child(6) .sg-line-fill { animation-delay: 1.75s;}
@keyframes sgLineFlow {
  0%   { left: -40%; }
  100% { left: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .sg-line-fill { animation: none !important; left: 0 !important; width: 60% !important; }
}

/* Old emblem (sg-emblem with the '6' shield) is hidden — kept in source
   only because the markup still references it on older caches. */
.stand-graphic .sg-emblem { display: none !important; }

/* Each of the six principle-lines gets its own light pastel sweep,
   so the panel reads as varied rather than monochrome maroon. */
.sg-line:nth-child(1) .sg-line-fill { background: linear-gradient(90deg, transparent, #fda4af 30%, #fb7185 65%, transparent); }
.sg-line:nth-child(2) .sg-line-fill { background: linear-gradient(90deg, transparent, #fde68a 30%, #fcd34d 65%, transparent); }
.sg-line:nth-child(3) .sg-line-fill { background: linear-gradient(90deg, transparent, #99f6e4 30%, #5eead4 65%, transparent); }
.sg-line:nth-child(4) .sg-line-fill { background: linear-gradient(90deg, transparent, #fed7aa 30%, #fdba74 65%, transparent); }
.sg-line:nth-child(5) .sg-line-fill { background: linear-gradient(90deg, transparent, #bfdbfe 30%, #93c5fd 65%, transparent); }
.sg-line:nth-child(6) .sg-line-fill { background: linear-gradient(90deg, transparent, #ddd6fe 30%, #c4b5fd 65%, transparent); }

/* Accuracy pillar (p2) — switch the blue icon for a mint→teal gradient
   that matches the light pastel palette used elsewhere on the page. */
.pillar-card.p2 .pillar-icon {
  background: linear-gradient(135deg, #5eead4, #14b8a6) !important;
  box-shadow: 0 8px 22px rgba(20, 184, 166, .28) !important;
}
.pillar-card.p2::before {
  background: linear-gradient(90deg, #5eead4, #14b8a6) !important;
}


/* ============================================================
   WHAT SETS US APART — head-to-head comparison + differentiator chips.
   Ported from CC_website /whoweare and repainted to the LXS light
   maroon palette so it sits with the surrounding pastel panels.
   ============================================================ */
.apart-section { padding: 56px 0; background: linear-gradient(180deg, #ffffff 0%, #fdf5f6 100%); }
.apart-section .section-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.apart-section .section-head .eyebrow { margin-bottom: 10px; }
.apart-section .section-intro { font-size: .96rem; color: rgba(10, 20, 40, .72); margin-top: 8px; }

/* Compare panel — light blush card */
.compare-panel {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fdf5f6 60%, #fef0e9 100%);
  color: var(--navy-900, #0a1428);
  border-radius: 20px;
  padding: 28px 30px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(122, 29, 45, .12), 0 0 0 1px rgba(183, 48, 72, .14);
}
.compare-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 15% 10%, rgba(251, 113, 133, .14), transparent 55%),
    radial-gradient(500px 280px at 90% 90%, rgba(252, 211, 77, .10), transparent 55%);
  pointer-events: none;
}
.compare-panel::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b3091a, #fb7185, #f97316, transparent);
  background-size: 200% 100%;
  animation: compareShimmer 5s linear infinite;
}
@keyframes compareShimmer { from { background-position: 0% 0; } to { background-position: 200% 0; } }

.compare-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.compare-head .ttl {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--maroon-800, #5c1524);
  letter-spacing: -.01em;
}
.compare-head .ttl svg { width: 18px; height: 18px; color: var(--maroon-700, #7a1d2d); }
.compare-legend { display: flex; gap: 16px; font-size: .72rem; letter-spacing: .04em; }
.compare-legend .lg { display: inline-flex; align-items: center; gap: 7px; color: rgba(10, 20, 40, .72); }
.compare-legend .lg-sw { width: 10px; height: 10px; border-radius: 3px; }
.compare-legend .lg-us .lg-sw { background: linear-gradient(135deg, #b3091a, #fb7185); box-shadow: 0 0 8px rgba(183, 9, 26, .35); }
.compare-legend .lg-them .lg-sw { background: rgba(10, 20, 40, .18); }

.compare-rows { position: relative; display: flex; flex-direction: column; gap: 18px; }
.compare-row { display: grid; grid-template-columns: 1fr; gap: 6px; }
.compare-row-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.compare-row-head .lab {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy-900, #0a1428);
}
.compare-row-head .lab svg { width: 15px; height: 15px; color: var(--maroon-500, #b73048); opacity: .9; }
.compare-row-head .delta {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 99px;
  background: rgba(16, 185, 129, .12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, .32);
}

.compare-pair { display: grid; gap: 5px; }
.compare-bar {
  display: grid;
  grid-template-columns: 64px 1fr 70px;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
}
.compare-bar .who {
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .65rem;
}
.compare-bar.us .who { color: var(--maroon-700, #7a1d2d); }
.compare-bar.them .who { color: rgba(10, 20, 40, .55); }
.compare-bar .track {
  height: 10px;
  border-radius: 99px;
  background: rgba(183, 48, 72, .10);
  overflow: hidden;
  position: relative;
}
.compare-bar .fill {
  position: absolute;
  inset: 0;
  width: var(--w);
  border-radius: 99px;
  animation: compareBarGrow 1.6s cubic-bezier(.22,.61,.36,1);
}
.compare-bar.us .fill {
  background: linear-gradient(90deg, #b3091a 0%, #fb7185 100%);
  box-shadow: 0 0 14px rgba(183, 9, 26, .35), inset 0 0 6px rgba(255, 255, 255, .15);
}
.compare-bar.them .fill {
  background: linear-gradient(90deg, rgba(10, 20, 40, .32), rgba(10, 20, 40, .12));
}
@keyframes compareBarGrow { from { width: 0; } }
.compare-bar .val {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 700;
  font-size: .9rem;
  text-align: right;
  letter-spacing: -.01em;
}
.compare-bar.us .val { color: var(--navy-900, #0a1428); }
.compare-bar.them .val { color: rgba(10, 20, 40, .55); }

.compare-foot {
  position: relative;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(122, 29, 45, .18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(10, 20, 40, .72);
}
.compare-foot .src { font-family: 'JetBrains Mono', 'Courier New', monospace; font-size: .7rem; color: rgba(10, 20, 40, .55); }

@media (max-width: 640px) {
  .compare-panel { padding: 22px 18px; }
  .compare-bar { grid-template-columns: 48px 1fr 60px; gap: 8px; }
  .compare-bar .val { font-size: .8rem; }
  .compare-head { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .compare-panel::after, .compare-bar .fill { animation: none !important; }
}

/* Differentiator chip strip below the chart */
.diff-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.diff-chip {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(122, 29, 45, .14);
  border-radius: 12px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.diff-chip:hover {
  border-color: rgba(183, 48, 72, .35);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(122, 29, 45, .10);
}
.diff-chip .diff-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #b3091a, #fb7185);
  color: #fff;
}
.diff-chip .diff-icon svg { width: 16px; height: 16px; }
.diff-chip .diff-text strong {
  display: block;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: -.01em;
  margin-bottom: 2px;
  color: var(--navy-900, #0a1428);
}
.diff-chip .diff-text span {
  font-size: .74rem;
  color: rgba(10, 20, 40, .68);
  line-height: 1.4;
  display: block;
}

/* Cycle each chip's icon tile across pastel accents for variety. */
.diff-strip .diff-chip:nth-child(1) .diff-icon { background: linear-gradient(135deg, #fde3e7, #fb7185); color: #7a1d2d; }
.diff-strip .diff-chip:nth-child(2) .diff-icon { background: linear-gradient(135deg, #fef3c7, #fcd34d); color: #92400e; }
.diff-strip .diff-chip:nth-child(3) .diff-icon { background: linear-gradient(135deg, #ccfbf1, #5eead4); color: #115e59; }
.diff-strip .diff-chip:nth-child(4) .diff-icon { background: linear-gradient(135deg, #fff7ed, #fdba74); color: #9a3412; }
.diff-strip .diff-chip:nth-child(5) .diff-icon { background: linear-gradient(135deg, #bfdbfe, #93c5fd); color: #1e3a8a; }
.diff-strip .diff-chip:nth-child(6) .diff-icon { background: linear-gradient(135deg, #ddd6fe, #c4b5fd); color: #4c1d95; }

/* ============================================================
   PRODUCTS MEGA-MENU — wider panel with a product-per-column
   layout. Each column has a clickable heading + sub-anchor list.
   ============================================================ */
.mega-panel.mega-panel-products { min-width: 780px; padding: 22px 26px; }
.mega-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
}
.mega-product-col { display: flex; flex-direction: column; }

.mega-product-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
    border: 1px solid transparent;
    text-decoration: none;
}
.mega-product-head:hover {
    background: var(--maroon-50, #fdf2f4);
    border-color: var(--maroon-100, #f9d5da);
    transform: translateY(-1px);
}
.mega-product-head .mega-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
}
.mega-product-head .mega-text h5 {
    font-size: 13px;
    color: var(--maroon-800, #5c1524);
    margin: 0 0 3px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.25;
}
.mega-product-head:hover .mega-text h5 { color: var(--maroon-600, #a02238); }
.mega-product-head .mega-text p {
    font-size: 11.5px;
    color: var(--muted, #6b7280);
    line-height: 1.45;
    margin: 0;
}

.mega-sublinks {
    list-style: none;
    padding: 4px 0 6px 62px;
    margin: 0;
}
.mega-sublinks li { padding: 0; line-height: 1.2; }
.mega-sublinks li a {
    display: block;
    padding: 4px 0;
    font-size: 12px;
    color: rgba(10, 20, 40, .62);
    text-decoration: none;
    transition: color .15s ease, padding-left .2s ease;
    position: relative;
}
.mega-sublinks li a::before {
    content: '\203A';
    position: absolute;
    left: -10px;
    color: var(--maroon-500, #b73048);
    opacity: 0;
    transition: opacity .15s ease, left .2s ease;
    font-weight: 700;
}
.mega-sublinks li a:hover {
    color: var(--maroon-700, #7a1d2d);
    padding-left: 10px;
}
.mega-sublinks li a:hover::before { opacity: 1; left: 0; }

@media (max-width: 880px) {
    .mega-panel.mega-panel-products { min-width: 0; }
    .mega-products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV / MEGA-MENU ICON CLEANUP
   Kill the reddish maroon→navy gradient backgrounds on icons.
   Use the swatch colour for the GLYPH on a subtle gray pill,
   and a solid maroon nav underline (no gray→red gradient).
   ============================================================ */
.mega-icon {
    background: rgba(122, 29, 45, .07) !important;
    background-color: rgba(122, 29, 45, .07) !important;
    box-shadow: none !important;
    color: var(--gray-700, #4a4a52) !important;
}
.mega-icon.c-red    { color: #b3091a !important; }
.mega-icon.c-blue   { color: #2563eb !important; }
.mega-icon.c-teal   { color: #0d9488 !important; }
.mega-icon.c-amber  { color: #d97706 !important; }
.mega-icon.c-green  { color: #059669 !important; }
.mega-icon.c-indigo { color: #4f46e5 !important; }
.mega-icon.c-pink   { color: #db2777 !important; }
.mega-icon.c-slate  { color: #475569 !important; }
.mega-icon.c-violet { color: #7c3aed !important; }
.mega-icon.c-rose   { color: #e11d48 !important; }

/* Hover — deeper pill tint, no full red/swatch flood, no white-glyph swap. */
.mega-item:hover .mega-icon,
.mega-product-head:hover .mega-icon {
    background: rgba(122, 29, 45, .14) !important;
    background-color: rgba(122, 29, 45, .14) !important;
    box-shadow: none !important;
    transform: scale(1.06) !important;
}
/* Keep the GLYPH coloured (not flipped to white) on hover. */
.mega-item:hover .mega-icon.c-red,    .mega-product-head:hover .mega-icon.c-red    { color: #b3091a !important; }
.mega-item:hover .mega-icon.c-blue,   .mega-product-head:hover .mega-icon.c-blue   { color: #2563eb !important; }
.mega-item:hover .mega-icon.c-teal,   .mega-product-head:hover .mega-icon.c-teal   { color: #0d9488 !important; }
.mega-item:hover .mega-icon.c-amber,  .mega-product-head:hover .mega-icon.c-amber  { color: #d97706 !important; }
.mega-item:hover .mega-icon.c-green,  .mega-product-head:hover .mega-icon.c-green  { color: #059669 !important; }
.mega-item:hover .mega-icon.c-indigo, .mega-product-head:hover .mega-icon.c-indigo { color: #4f46e5 !important; }
.mega-item:hover .mega-icon.c-pink,   .mega-product-head:hover .mega-icon.c-pink   { color: #db2777 !important; }
.mega-item:hover .mega-icon.c-slate,  .mega-product-head:hover .mega-icon.c-slate  { color: #475569 !important; }

/* Top-level nav underline — solid maroon, no gray→red gradient. */
.nav-links a::after {
    background: var(--red-600, #b3091a) !important;
}
.nav-links a:hover, .nav-links a.active,
.nav-item.has-dropdown:hover > a { color: var(--red-700, #9a0e1c) !important; }

/* ============================================================
   FOOTER & CERTIFIED BLOCKS
   Footer = high-impact hover interactions (bold lift, slide,
   thick accent lines, background panel highlight).
   Cert chips = soft/minimal (quiet lift, soft shadow).
   ============================================================ */

/* Top accent strip — thicker, with a static three-stop gradient. */
footer::before {
  height: 5px !important;
  background: linear-gradient(90deg, #7a1d2d 0%, #b3091a 35%, #fb7185 50%, #b3091a 65%, #7a1d2d 100%) !important;
  opacity: 1 !important;
}

/* Each footer column gets a panel highlight on hover. */
footer .footer-col {
  position: relative;
  padding: 18px 18px 14px;
  margin: -18px -18px -14px;
  border-radius: 14px;
  transition: background .3s ease, box-shadow .35s ease, transform .35s cubic-bezier(.2, .7, .2, 1);
}
footer .footer-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #b3091a, #fb7185);
  opacity: 0;
  transform: scaleY(.4);
  transform-origin: center;
  transition: opacity .35s ease, transform .4s cubic-bezier(.2, .7, .2, 1);
}
footer .footer-col:hover {
  background: rgba(183, 48, 72, .055);
  box-shadow: 0 12px 30px rgba(122, 29, 45, .10);
  transform: translateY(-3px);
}
footer .footer-col:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Column heading — thick maroon accent that grows on column hover,
   plus a small letter-spacing lift on the heading itself. */
footer .footer-col h4 {
  position: relative;
  transition: color .3s ease, letter-spacing .3s ease, transform .35s ease;
}
footer .footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #7a1d2d, #b3091a, #fb7185);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
  border-radius: 2px;
}
footer .footer-col:hover h4 {
  letter-spacing: 1.2px;
  color: var(--maroon-900, #3a0a14) !important;
}
footer .footer-col:hover h4::after {
  transform: scaleX(1);
}

/* Footer links — bold slide-right + thick underline + chevron pop-in. */
footer .footer-col ul li a {
  position: relative;
  display: inline-block;
  padding-left: 0;
  font-weight: 500;
  transition: padding-left .3s cubic-bezier(.2, .7, .2, 1),
              color .25s ease,
              font-weight .25s ease,
              transform .3s ease !important;
}
footer .footer-col ul li a::before {
  content: '\203A';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translate(-4px, -52%);
  opacity: 0;
  color: #b3091a;
  font-weight: 800;
  font-size: 1.1em;
  transition: opacity .25s ease, transform .3s cubic-bezier(.2, .7, .2, 1);
}
footer .footer-col ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #b3091a, #fb7185);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
  border-radius: 2px;
}
footer .footer-col ul li a:hover {
  padding-left: 18px;
  font-weight: 700;
  color: var(--maroon-800, #5c1524) !important;
  transform: none !important;
}
footer .footer-col ul li a:hover::before {
  opacity: 1;
  transform: translate(0, -52%);
}
footer .footer-col ul li a:hover::after {
  transform: scaleX(1);
}

/* Footer logo — strong lift + maroon glow on hover. */
footer .footer-col img {
  transition: transform .4s cubic-bezier(.2, .7, .2, 1),
              box-shadow .4s ease !important;
}
footer .footer-col img:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 38px rgba(122, 29, 45, .28),
              0 0 0 2px rgba(183, 48, 72, .25) !important;
}

/* Social icons — bold lift, scale up, maroon glow. */
footer .footer-social a {
  transition: background .25s ease, color .25s ease,
              border-color .25s ease,
              transform .35s cubic-bezier(.2, .7, .2, 1),
              box-shadow .35s ease !important;
}
footer .footer-social a:hover {
  transform: translateY(-5px) scale(1.12) !important;
  box-shadow: 0 10px 22px rgba(183, 48, 72, .35) !important;
}

/* Footer bottom — subtle separator emphasis on hover of the row. */
footer .footer-bottom {
  transition: border-color .3s ease, color .3s ease;
}
footer .footer-bottom:hover {
  border-top-color: rgba(183, 48, 72, .45) !important;
  color: var(--maroon-800, #5c1524) !important;
}

/* Cert chips — soft/minimal hover (quiet lift + soft shadow)
   + a continuous light sweep traveling across each chip.
   Children sit above the sweep overlay via z-index. */
.cc-cert {
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1),
              background .3s ease,
              border-color .3s ease,
              box-shadow .3s ease;
}
.cc-cert > * {
  position: relative;
  z-index: 1;
}
.cc-cert::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 28%,
    rgba(255, 255, 255, .65) 50%,
    transparent 72%);
  transform: translateX(-140%);
  pointer-events: none;
  z-index: 0;
  animation: lx-cert-light-sweep 4.5s ease-in-out infinite;
}
@keyframes lx-cert-light-sweep {
  0%        { transform: translateX(-140%); }
  55%, 100% { transform: translateX(140%);  }
}
/* Stagger the sweep across siblings so it ripples down the row. */
.cc-certs .cc-cert:nth-of-type(1)::before { animation-delay: 0s;    }
.cc-certs .cc-cert:nth-of-type(2)::before { animation-delay: .35s;  }
.cc-certs .cc-cert:nth-of-type(3)::before { animation-delay: .70s;  }
.cc-certs .cc-cert:nth-of-type(4)::before { animation-delay: 1.05s; }
.cc-certs .cc-cert:nth-of-type(5)::before { animation-delay: 1.40s; }
.cc-certs .cc-cert:nth-of-type(6)::before { animation-delay: 1.75s; }
.cc-certs .cc-cert:nth-of-type(7)::before { animation-delay: 2.10s; }
.cc-certs .cc-cert:nth-of-type(8)::before { animation-delay: 2.45s; }

.cc-cert:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(183, 48, 72, .14);
}
footer .cc-certs .cc-cert:hover {
  background: rgba(183, 48, 72, .08) !important;
  border-color: rgba(183, 48, 72, .42) !important;
}

/* Respect reduced-motion preference — drop transitions + cert sweep. */
@media (prefers-reduced-motion: reduce) {
  footer .footer-col,
  footer .footer-col::before,
  footer .footer-col h4,
  footer .footer-col h4::after,
  footer .footer-col ul li a,
  footer .footer-col ul li a::before,
  footer .footer-col ul li a::after,
  footer .footer-col img,
  footer .footer-social a,
  footer .footer-bottom,
  .cc-cert {
    transition: none !important;
  }
  .cc-cert::before {
    animation: none !important;
    opacity: 0 !important;
  }
}
