/* ============================================
   LLA Technology — Public Site Stylesheet
   White/Blue Enterprise Parallax Edition
   ============================================ */

:root {
    /* ═══════════════════════════════════════════
       LLA SaaS Design System — Phase 4G
       Professional enterprise B2B palette
       ═══════════════════════════════════════════ */

    /* ── Brand colors ── */
    --lla-navy:       #071526;
    --lla-navy-mid:   #0a1a2e;
    --lla-blue:       #2563eb;
    --lla-blue-hover: #1d4ed8;
    --lla-cyan:       #06b6d4;
    --lla-ice:        #f8fafc;
    --lla-silver:     #94a3b8;
    --lla-amber:      #f59e0b;
    --lla-green:      #059669;
    --lla-violet:     #7c3aed;

    /* ── Legacy aliases (kept for homepage compat) ── */
    --h-navy: var(--lla-navy); --h-navy2: var(--lla-navy-mid);
    --h-blue: var(--lla-blue); --h-blue2: var(--lla-blue-hover);
    --h-cyan: var(--lla-cyan); --h-ice: var(--lla-ice);
    --h-silver: var(--lla-silver); --h-amber: var(--lla-amber);
    --h-green: var(--lla-green); --h-violet: var(--lla-violet);
    --h-graph: #101820;

    /* ── Surfaces ── */
    --bg-primary:    #ffffff;
    --bg-secondary:  #f8fafc;
    --bg-card:       #ffffff;
    --surface:       #f1f5f9;

    /* ── Primary action ── */
    --accent:        var(--lla-blue);
    --accent-dark:   #1d4ed8;
    --accent-light:  #3b82f6;
    --accent-glow:   rgba(37, 99, 235, 0.10);
    --accent-tint:   #eff6ff;

    /* ── Secondary accents (used sparingly) ── */
    --sky:           var(--lla-cyan);
    --sky-glow:      rgba(6, 182, 212, 0.08);
    --amber:         #f59e0b;
    --amber-dark:    #d97706;
    --amber-light:   #fbbf24;
    --amber-glow:    rgba(245, 158, 11, 0.10);
    --violet:        var(--lla-violet);
    --emerald:       #059669;

    /* ── Typography colors ── */
    --text:          #0f172a;
    --text-primary:  #0f172a;
    --text-secondary:#475569;
    --text-muted:    #94a3b8;

    /* ── Contrast-safe text on tinted light backgrounds ── */
    --lla-text-on-light:       #0c1629;
    --lla-text-muted-on-light: #334155;
    --lla-text-subtle-on-light:#475569;

    /* ── Inverse text (on dark) ── */
    --lla-text-inverse:       #f8fafc;
    --lla-text-inverse-muted: #cbd5e1;
    --lla-text-inverse-subtle:#94a3b8;

    /* ── Borders ── */
    --border:        rgba(15, 23, 42, 0.08);
    --border-accent: rgba(37, 99, 235, 0.22);
    --border-strong: rgba(15, 23, 42, 0.12);

    /* ── Shadows ── */
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
    --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.05);
    --shadow-lg: 0 12px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.06);
    --shadow-xl: 0 24px 64px rgba(15,23,42,0.12), 0 8px 24px rgba(15,23,42,0.08);

    /* ── Responsive typography scale ── */
    --lla-font-size-xs:   clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
    --lla-font-size-sm:   clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
    --lla-font-size-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
    --lla-font-size-lg:   clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --lla-font-size-xl:   clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
    --lla-font-size-2xl:  clamp(1.75rem, 1.35rem + 1.5vw, 2.5rem);
    --lla-font-size-hero: clamp(2rem, 1.5rem + 2.2vw, 4rem);

    /* ── Layout spacing ── */
    --lla-section-py:         clamp(4rem, 7vw, 7.5rem);
    --lla-section-py-compact: clamp(2.75rem, 5vw, 5rem);
    --lla-container-max:  1180px;
    --lla-container-wide: 1320px;
    --lla-grid-gap:       clamp(1rem, 2vw, 1.5rem);

    /* ── Radii ── */
    --lla-radius-sm: 10px;
    --lla-radius-md: 16px;
    --lla-radius-lg: 24px;

    /* ── Type ── */
    --font-sans:       'Be Vietnam Pro', 'Inter', system-ui, -apple-system, sans-serif;
    --font-display:    'Be Vietnam Pro', 'Sora', 'Inter', system-ui, -apple-system, sans-serif;
    --tracking-tight:  -0.03em;
    --tracking-normal: -0.01em;

    /* ── Mobile nav breakpoint ── */
    --lla-nav-breakpoint: 1024px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* scroll-behavior: auto — Lenis handles smooth scroll; native smooth conflicts with it */
html { scroll-behavior: auto; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
    touch-action: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

:focus-visible {
    outline: 2px solid #20D8FF;
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem; height: 84px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border-strong);
}
.nav-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; text-decoration: none; }
.nav-logo {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--violet));
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; color: white;
}
/* The logo SVG is tightly cropped; the nav gives it enough height to read clearly. */
.nav-logo-img {
    display: block;
    height: 44px;
    width: auto;
    object-fit: contain;
    position: relative;
}
.navbar .nav-logo-img {
    height: 72px;
    margin: 0;
}
.nav-links { display: flex; align-items: center; gap: 0.125rem; }
.nav-item { position: relative; }
.nav-link {
    display: flex; align-items: center; gap: 0.25rem;
    padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;
    color: var(--text-secondary); border-radius: 6px;
    transition: color 0.2s, background 0.2s; cursor: pointer; white-space: nowrap;
}
.nav-link:hover { color: var(--text-primary); background: var(--surface); }
.nav-link svg { width: 13px; height: 13px; transition: transform 0.2s; flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* ─── Standard dropdown (Năng lực / Pháp lý menus) ─── */
.nav-dropdown {
    position: absolute; top: calc(100% + 8px); left: 50%;
    width: 310px; background: var(--bg-card);
    border: 1px solid var(--border-strong); border-radius: 14px;
    padding: 0.5rem; opacity: 0; visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    box-shadow: var(--shadow-xl); z-index: 1001;
}
.nav-dropdown-sm { width: 240px; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.nav-dropdown-item {
    display: flex; align-items: flex-start; gap: 0.625rem;
    padding: 0.625rem 0.75rem; border-radius: 9px;
    transition: background 0.15s; text-decoration: none; color: inherit;
}
.nav-dropdown-item:hover { background: var(--surface); }
.nav-dd-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px;
}
.nav-dd-dot-blue   { background: var(--accent); }
.nav-dd-dot-cyan   { background: #0ea5e9; }
.nav-dd-dot-violet { background: var(--violet); }
.nav-dd-dot-amber  { background: var(--amber); }
.nav-dd-dot-emerald{ background: var(--emerald); }
.nav-dd-dot-slate  { background: #94a3b8; }
.nav-dd-name {
    font-size: 0.8125rem; font-weight: 600; color: var(--text-primary);
    line-height: 1.25; margin-bottom: 0.15rem;
}
.nav-dd-desc {
    font-size: 0.73rem; color: var(--text-muted); line-height: 1.4;
}
.nav-dropdown-item-footer {
    margin-top: 0.25rem; padding-top: 0.625rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem; font-weight: 600; color: var(--accent);
}
.nav-dropdown-item-footer:hover { background: var(--accent-tint); color: var(--accent-dark); }
.nav-actions { display: flex; align-items: center; gap: 0.625rem; }
.language-switcher { display: inline-flex; border: 1px solid var(--border-strong); border-radius: 8px; overflow: hidden; }
.language-switcher a { min-width: 38px; padding: 0.45rem 0.6rem; font-size: 0.75rem; font-weight: 700; color: var(--text-secondary); text-align: center; }
.language-switcher a:hover { color: var(--accent); background: var(--accent-tint); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5625rem 1.125rem; font-size: 0.875rem; font-weight: 600;
    border-radius: 8px; border: none; cursor: pointer;
    transition: all 0.18s; text-decoration: none; font-family: inherit;
    will-change: transform;
}
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-strong); }
.btn-ghost:hover { color: var(--text-primary); border-color: var(--accent); background: var(--accent-tint); }
.btn-primary {
    background: var(--accent); color: #ffffff; font-weight: 700;
    box-shadow: 0 1px 3px rgba(37,99,235,0.3), 0 4px 16px rgba(37,99,235,0.18);
}
.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 2px 8px rgba(37,99,235,0.4), 0 8px 24px rgba(37,99,235,0.25);
    transform: translateY(-1px);
}
.btn-outline { background: transparent; color: var(--accent); border: 1px solid rgba(37,99,235,0.35); }
.btn-outline:hover { background: var(--accent-tint); border-color: var(--accent); transform: translateY(-1px); }
.btn-blue { background: var(--accent); color: white; box-shadow: 0 4px 16px rgba(37,99,235,0.2); }
.btn-blue:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; border-radius: 10px; }
.btn-xl { padding: 1rem 2rem; font-size: 1.0625rem; border-radius: 10px; }

/* ─────────────────────────────────────────────
   MAIN / MOBILE NAV
───────────────────────────────────────────── */
main { padding-top: 84px; min-height: calc(100vh - 84px); }
.mobile-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    height: calc(100dvh - 84px);
    max-height: calc(100dvh - 84px);
    background: var(--bg-primary);
    z-index: 999;
    padding: 1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    clip-path: inset(0 0 100% 0);
    transition: opacity .22s ease, transform .22s ease, clip-path .22s ease, visibility .22s ease;
}
.mobile-nav.open,
body.menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}
.mobile-nav a {
    display: block; padding: 0.875rem 0; font-size: 1rem; font-weight: 500;
    color: var(--text-secondary); border-bottom: 1px solid var(--border); transition: color 0.2s;
    overflow-wrap: anywhere;
}
.mobile-nav a:hover, .mobile-nav a.cta { color: var(--accent); }
.mobile-language-switcher { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; padding: 1rem 0; }
.mobile-language-switcher a { text-align: center; border: 1px solid var(--border-accent); border-radius: 8px; padding: 0.75rem; color: var(--accent); }

/* ─────────────────────────────────────────────
   FOOTER  (stays dark — logo pops on navy)
───────────────────────────────────────────── */
footer { background: radial-gradient(circle at 18% 0%, rgba(37,99,235,.16), transparent 44%), radial-gradient(circle at 82% 100%, rgba(14,165,233,.12), transparent 42%), #0f172a; border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 2rem 2rem; color: #cbd5e1; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-prelude { margin-bottom: 2.2rem; border: 1px solid rgba(148,163,184,.28); border-radius: 18px; background: linear-gradient(135deg, rgba(15,23,42,.72), rgba(30,41,59,.62)); padding: 1.3rem 1.4rem; display: grid; grid-template-columns: minmax(0,1.4fr) auto; gap: 1.1rem; align-items: center; }
.footer-prelude-kicker { display: inline-flex; align-items: center; padding: .3rem .72rem; border-radius: 999px; border: 1px solid rgba(125,211,252,.35); color: #bae6fd; text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; font-weight: 700; }
.footer-prelude h3 { margin: .75rem 0 .55rem; color: #f8fafc; font-size: clamp(1.1rem,2.4vw,1.5rem); line-height: 1.25; overflow-wrap: anywhere; }
.footer-prelude p { margin: 0; color: #cbd5e1; font-size: .92rem; line-height: 1.7; max-width: 58ch; overflow-wrap: anywhere; }
.footer-prelude-actions { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-text { font-size: 0.875rem; color: #94a3b8; margin-top: 1rem; line-height: 1.7; overflow-wrap: anywhere; }
.footer-col h4 { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #64748b; margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.4375rem; }
.footer-col a { font-size: 0.875rem; color: #94a3b8; transition: color 0.2s; overflow-wrap: anywhere; }
.footer-col a:hover { color: #ffffff; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; font-size: 0.8125rem; color: #94a3b8; gap: 1rem; }
.footer-bottom span { overflow-wrap: anywhere; }

/* ─────────────────────────────────────────────
   LAYOUT UTILS
───────────────────────────────────────────── */
.section    { padding: var(--lla-section-py) 2rem; }
.section-sm { padding: var(--lla-section-py-compact) 2rem; }
.container        { max-width: var(--lla-container-max); margin: 0 auto; }
.container-narrow { max-width: 860px;  margin: 0 auto; }
.container-wide   { max-width: var(--lla-container-wide); margin: 0 auto; }

.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: var(--lla-font-size-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); background: var(--accent-tint);
    border: 1px solid var(--border-accent); border-radius: 100px;
    padding: 0.3125rem 0.875rem; margin-bottom: 1.25rem;
}
.section-title { font-size: var(--lla-font-size-2xl); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--text-primary); margin-bottom: 1.125rem; }
.section-subtitle { font-size: var(--lla-font-size-base); color: var(--text-secondary); max-width: 580px; line-height: 1.75; }
.section-title,
.hero-title,
.prod-name,
.product-name {
    font-family: var(--font-display);
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-accent  { color: var(--accent); }
.text-violet  { color: var(--violet); }
.text-emerald { color: var(--emerald); }

.card { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-sm); transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.6875rem; font-weight: 700; padding: 0.25rem 0.5625rem; border-radius: 6px; letter-spacing: 0.04em; }
.badge-blue   { background: var(--accent-tint); color: var(--accent); }
.badge-violet { background: rgba(124,58,237,0.08); color: var(--violet); }
.badge-green  { background: rgba(5,150,105,0.08); color: var(--emerald); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
    padding: 5rem 2rem 4rem;
    background: linear-gradient(160deg, var(--accent-tint) 0%, #ffffff 55%);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
    pointer-events: none;
}
.page-hero-center { text-align: center; }

/* ─────────────────────────────────────────────
   HERO  (homepage)
───────────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #eef4ff 0%, #ffffff 45%, #fafbff 100%);
    padding: 6rem 2rem 4rem;
}

/* Parallax dot-grid */
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(37,99,235,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 100%);
    pointer-events: none; will-change: transform;
}

/* Ambient blobs */
.hero::before {
    content: ''; position: absolute; top: -20%; right: -12%;
    width: 70vw; height: 70vw; max-width: 1000px; max-height: 1000px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.06) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none; will-change: transform;
}
.hero::after {
    content: ''; position: absolute; bottom: -25%; left: -18%;
    width: 55vw; height: 55vw; max-width: 800px; max-height: 800px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.04) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none; will-change: transform;
}

.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); background: var(--accent-tint);
    border: 1px solid var(--border-accent); border-radius: 100px;
    padding: 0.3125rem 0.875rem; margin-bottom: 1.5rem;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(1.5); } }

.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; color: var(--text-primary); margin-bottom: 1.5rem; }
.hero-title .line-2 {
    background: linear-gradient(135deg, var(--accent) 0%, var(--sky) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2.5rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-strong); }
.hero-stat-num { font-size: 1.75rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.03em; line-height: 1; }
.hero-stat-label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Hero dashboard — light card */
.hero-visual { position: relative; will-change: transform; }
.hero-dashboard {
    background: #ffffff; border: 1px solid var(--border-strong);
    border-radius: 20px; padding: 1.5rem;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(37,99,235,0.03);
}
.dashboard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; } .dot-yellow { background: #febc2e; } .dot-green { background: #28c840; }
.dashboard-title { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.dash-metric { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 10px; padding: 0.875rem; }
.dash-metric-val { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.dash-metric-label { font-size: 0.6875rem; color: var(--text-muted); margin-top: 0.125rem; }
.dash-metric-change { font-size: 0.6875rem; color: var(--emerald); margin-top: 0.375rem; }
.dash-bars { margin-bottom: 1.25rem; }
.dash-bar-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.dash-bar-label { font-size: 0.6875rem; color: var(--text-muted); width: 70px; flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 3px; animation: barGrow 1.5s ease-out forwards; }
@keyframes barGrow { from { width: 0 !important; } }
.bar-accent { background: var(--accent); } .bar-violet { background: var(--violet); } .bar-emerald { background: var(--emerald); }
.dash-bar-pct { font-size: 0.6875rem; color: var(--text-secondary); width: 70px; text-align: right; }
.dash-modules { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.dash-module-tag { font-size: 0.6875rem; font-weight: 600; padding: 0.25rem 0.5rem; border-radius: 4px; border: 1px solid var(--border); color: var(--text-secondary); background: var(--surface); }

.hero-float {
    position: absolute; background: #ffffff; border: 1px solid var(--border-accent);
    border-radius: 12px; padding: 0.75rem 1rem;
    font-size: 0.75rem; font-weight: 600; color: var(--text-primary);
    display: flex; align-items: center; gap: 0.5rem;
    box-shadow: var(--shadow-md);
    animation: floatUp 3s ease-in-out infinite; will-change: transform;
}
.hero-float-1 { top: -20px; right: 40px; animation-delay: 0s; }
.hero-float-2 { bottom: 20px; left: -30px; animation-delay: 1.5s; }
.hero-float .icon { font-size: 1rem; }
@keyframes floatUp { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }

/* ─────────────────────────────────────────────
   TRUSTED BAND
───────────────────────────────────────────── */
.trusted { padding: 3rem 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-secondary); }
.trusted-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.trusted-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; }
.trusted-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trusted-logo { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text-muted); opacity: 0.5; transition: opacity 0.2s, color 0.2s; text-transform: uppercase; }
.trusted-logo:hover { opacity: 0.9; color: var(--accent); }

/* ─────────────────────────────────────────────
   SOLUTION CARDS
───────────────────────────────────────────── */
.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.sol-card {
    background: var(--bg-card); border: 1px solid var(--border-strong);
    border-radius: 16px; padding: 1.75rem; box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; will-change: transform;
}
.sol-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sol-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; margin-bottom: 1.125rem; }
.sol-icon-blue   { background: var(--accent-tint); }
.sol-icon-violet { background: rgba(124,58,237,0.08); }
.sol-icon-emerald{ background: rgba(5,150,105,0.08); }
.sol-icon-amber  { background: rgba(245,158,11,0.08); }
.sol-icon-cyan   { background: rgba(14,165,233,0.08); }
.sol-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.sol-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.sol-link  { font-size: 0.8125rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.sol-card:hover .sol-link { gap: 0.55rem; }

/* ─────────────────────────────────────────────
   PRODUCT CARDS  (homepage)
───────────────────────────────────────────── */
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.prod-card {
    background: var(--bg-card); border: 1px solid var(--border-strong);
    border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; will-change: transform;
}
.prod-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.prod-card-top { padding: 1.75rem 1.75rem 1.25rem; background: linear-gradient(150deg, var(--accent-tint) 0%, #ffffff 60%); }
.prod-badge { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.prod-num  { font-size: 0.6875rem; color: var(--text-muted); font-family: monospace; }
.prod-name { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.prod-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.prod-card-bottom { padding: 1.25rem 1.75rem 1.75rem; border-top: 1px solid var(--border); }
.prod-features { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 1.25rem; }
.prod-feature-tag { font-size: 0.6875rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 4px; background: var(--surface); border: 1px solid var(--border); color: var(--text-secondary); }
.prod-cta { font-size: 0.8125rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.prod-card:hover .prod-cta { gap: 0.55rem; }

/* ─────────────────────────────────────────────
   WORKFLOW STEPS
───────────────────────────────────────────── */
.workflow-steps { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; position: relative; }
.workflow-steps::before { content: ''; position: absolute; top: 28px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), var(--sky), transparent); z-index: 0; }
.wf-step { text-align: center; position: relative; z-index: 1; padding: 0 0.5rem; }
.wf-num { width: 56px; height: 56px; border-radius: 50%; background: #ffffff; border: 2px solid var(--border-accent); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: var(--accent); margin: 0 auto 1rem; font-family: monospace; box-shadow: 0 0 0 6px rgba(37,99,235,0.06); }
.wf-label    { font-size: 0.8125rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.wf-sublabel { font-size: 0.75rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────
   STATS BAND  (bold blue gradient)
───────────────────────────────────────────── */
.stats-band {
    background: linear-gradient(135deg, #1e40af 0%, var(--accent) 40%, #7c3aed 100%);
    padding: 4.5rem 2rem; position: relative; overflow: hidden;
}
.stats-band::before {
    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: 48px 48px; pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.stat-item  { text-align: center; }
.stat-num   { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.04em; color: #ffffff; line-height: 1; }
.stat-suffix{ font-size: 1.5rem; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.72); margin-top: 0.5rem; }

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--accent-tint) 0%, #f0f7ff 50%, #faf5ff 100%);
    border: 1px solid var(--border-accent); border-radius: 24px; padding: 4rem; text-align: center;
    position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; top: -60%; left: -30%; width: 200%; height: 200%;
    background: radial-gradient(ellipse 40% 40% at 60% 40%, rgba(37,99,235,0.05), transparent);
    pointer-events: none;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   PRODUCT PAGE CARDS
───────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.product-card {
    background: var(--bg-card); border: 1px solid var(--border-strong);
    border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    display: flex; flex-direction: column; will-change: transform;
}
.product-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.product-card-hero { padding: 2rem 2rem 1.5rem; background: linear-gradient(150deg, var(--accent-tint) 0%, #ffffff 60%); }
.product-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.product-name  { font-size: 1.375rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 0.5rem; }
.product-short { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.product-card-body { padding: 1.5rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.product-feature-list { flex: 1; margin-bottom: 1.5rem; }
.product-feature-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8125rem; color: var(--text-secondary); padding: 0.375rem 0; border-bottom: 1px solid var(--border); }
.product-feature-item:last-child { border-bottom: none; }
.feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }

/* ─────────────────────────────────────────────
   BLOG PAGE
───────────────────────────────────────────── */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.post-card {
    background: var(--bg-card); border: 1px solid var(--border-strong);
    border-radius: 16px; padding: 1.75rem; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; will-change: transform;
}
.post-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.post-meta  { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.post-title { font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.4; flex: 1; }
.post-title a { transition: color 0.2s; }
.post-title a:hover { color: var(--accent); }
.post-summary { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.post-footer { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); padding-top: 1.25rem; border-top: 1px solid var(--border); margin-top: auto; }
.post-footer a { color: var(--accent); font-weight: 600; transition: opacity 0.2s; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info { position: sticky; top: 5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-tint); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.125rem; }
.contact-detail-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail-val { font-size: 0.9375rem; color: var(--text-primary); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-group  { margin-bottom: 1.25rem; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-form label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; }
.contact-form input,
.contact-form textarea { width: 100%; padding: 0.75rem 1rem; background: var(--bg-secondary); border: 1px solid var(--border-strong); border-radius: 8px; color: var(--text-primary); font-family: inherit; font-size: 0.9375rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.10); background: #ffffff; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.success-banner { background: rgba(5,150,105,0.06); border: 1px solid rgba(5,150,105,0.25); border-radius: 10px; padding: 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; color: var(--emerald); font-size: 0.9375rem; font-weight: 600; }
.error-banner   { background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.2); border-radius: 10px; padding: 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; color: #dc2626; font-size: 0.9375rem; }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.tech-tag { font-size: 0.8125rem; font-weight: 600; padding: 0.375rem 0.875rem; border-radius: 6px; background: var(--surface); border: 1px solid var(--border-strong); color: var(--text-secondary); transition: border-color 0.2s, color 0.2s; }
.tech-tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-tint); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.value-card { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 16px; padding: 1.75rem; box-shadow: var(--shadow-sm); transition: border-color 0.25s, transform 0.25s; will-change: transform; }
.value-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.value-icon  { font-size: 1.75rem; margin-bottom: 1rem; }
.value-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.value-text  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ─────────────────────────────────────────────
   SHARED CONTENT CARDS
───────────────────────────────────────────── */
.solution-card { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-sm); transition: border-color 0.25s, transform 0.25s; will-change: transform; }
.solution-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.solution-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.solution-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.solution-card p  { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.25rem; }
.solution-card a  { font-size: 0.875rem; color: var(--accent); font-weight: 600; }
.solution-card a:hover { text-decoration: underline; }

.industry-card { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-sm); transition: border-color 0.25s, transform 0.25s; will-change: transform; }
.industry-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.industry-icon { font-size: 2rem; margin-bottom: 1rem; }
.industry-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.industry-card p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.industry-list { list-style: none; margin: 0; padding: 0; }
.industry-list li { font-size: 0.8125rem; color: var(--text-secondary); padding: 0.25rem 0 0.25rem 1.25rem; position: relative; }
.industry-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.case-card { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-sm); transition: border-color 0.25s, transform 0.25s; will-change: transform; }
.case-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.case-tag  { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.875rem; }
.case-title{ font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.4; }
.case-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; }
.case-metrics { display: flex; gap: 1.5rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--border); }
.case-metric  { display: flex; flex-direction: column; gap: 0.125rem; }
.case-metric-num { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); }

/* ─────────────────────────────────────────────
   PARALLAX DECORATIVE ELEMENTS
───────────────────────────────────────────── */
.parallax-section { position: relative; overflow: hidden; }

/* Soft ambient blobs that GSAP will translate on scroll */
.parallax-blob {
    position: absolute; border-radius: 50%;
    pointer-events: none; will-change: transform; filter: blur(80px); z-index: -1;
}
.parallax-blob-blue   { background: rgba(37,99,235,0.07);  width: 600px; height: 600px; }
.parallax-blob-violet { background: rgba(124,58,237,0.05); width: 500px; height: 500px; }
.parallax-blob-sky    { background: rgba(14,165,233,0.06);  width: 400px; height: 400px; }

/* ─────────────────────────────────────────────
   LLA COMMAND CENTER
───────────────────────────────────────────── */
.command-center-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    align-items: start;
}

.command-points {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.875rem;
}

.command-point {
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1rem 1.125rem;
    box-shadow: var(--shadow-sm);
}

.command-point h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.command-point p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.command-panel {
    border: 1px solid var(--border-accent);
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 55%);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.command-topbar {
    padding: 1rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    background: #f2f7ff;
}

.command-topbar span:first-child {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #1e3a8a;
}

.command-matrix {
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.command-card {
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 0.85rem;
}

.command-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.command-value {
    margin-top: 0.2rem;
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.command-meta {
    margin-top: 0.35rem;
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.command-rails {
    padding: 0 1rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.command-rails figure {
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.command-rails img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.command-rails figcaption {
    padding: 0.5rem 0.6rem 0.6rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Section-specific highlight line */
.section-accent-line {
    display: block; width: 48px; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--sky));
    margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────
   LANGUAGE SWITCHER
───────────────────────────────────────────── */
.lang-switch { display: flex; align-items: center; gap: 0.2rem; margin-right: 0.5rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; }
.lang-btn { color: var(--text-muted); text-decoration: none; padding: 0.2rem 0.35rem; border-radius: 4px; transition: color 0.15s, background 0.15s; }
.lang-btn:hover { color: var(--accent); }
.lang-btn.lang-active { color: var(--accent); background: var(--accent-tint); }
.lang-sep { color: var(--border-strong); font-size: 0.85em; }

/* ─────────────────────────────────────────────
   PARALLAX / ANIMATION INITIAL STATES
───────────────────────────────────────────── */
/* GSAP sets opacity/transform — these ensure no flash */
[data-parallax-reveal] { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    [data-parallax-reveal],
    [data-aos],
    .hero-grid, .hero-float,
    .parallax-blob,
    .parallax-layer,
    .story-copy-layer,
    .complexity-visual {
        opacity: 1 !important; transform: none !important;
        transition: none !important; animation: none !important;
    }
}

/* GPU hints */
.btn-primary, .btn-outline { will-change: transform; transform-origin: center; }
.product-card, .solution-card, .case-card, .industry-card,
.sol-card, .prod-card, .value-card, .post-card { will-change: transform, box-shadow; }
/* Pre-warm GPU for scroll-reveal animated elements */
[data-aos], [data-parallax-reveal],
.wf-step, .content-card, .feature-showcase-card { will-change: transform, opacity; }

/* ─────────────────────────────────────────────
   ADMIN-CARD  (also used inline on public pages)
───────────────────────────────────────────── */
.admin-card {
    background: var(--bg-card); border: 1px solid var(--border-strong);
    border-radius: 14px; box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    will-change: transform;
}
.admin-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
/* stat-num inside admin-card / company credentials is dark on white */
.admin-card .stat-num { color: var(--accent); font-size: 2rem; }

/* ─────────────────────────────────────────────
   SECTION BACKGROUND VARIANTS
───────────────────────────────────────────── */
.bg-white { background: #ffffff; }
.bg-light { background: var(--bg-secondary); }
.bg-tint  { background: var(--accent-tint); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .solutions-grid { grid-template-columns: repeat(2,1fr); }
    .workflow-steps { grid-template-columns: repeat(3,1fr); row-gap: 2rem; }
    .workflow-steps::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-prelude { grid-template-columns: 1fr; }
    .footer-prelude-actions { justify-content: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .product-grid { grid-template-columns: repeat(2,1fr); }
    .post-grid { grid-template-columns: repeat(2,1fr); }
    .values-grid { grid-template-columns: repeat(2,1fr); }
    .command-center-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { position: static; }
    .form-row { grid-template-columns: 1fr; }
}
/* ── Mobile nav: hide desktop links, show hamburger at 1024px ── */
@media (max-width: 1024px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .navbar { height: 68px; padding: 0 1.25rem; }
    .navbar .nav-logo-img { height: 52px; }
    main { padding-top: 68px; }
    .mobile-nav { top: 68px; height: calc(100dvh - 68px); max-height: calc(100dvh - 68px); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    footer { padding: 2.5rem 1.25rem 1.5rem; }
    .footer-prelude { padding: 1rem; border-radius: 14px; }
    .footer-prelude h3 { margin-top: .55rem; font-size: 1.05rem; }
    .footer-prelude-actions { width: 100%; }
    .footer-prelude-actions .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-brand-text { margin-top: 0.5rem; font-size: 0.8rem; }
    .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; font-size: 0.75rem; }
    .section { padding: var(--lla-section-py-compact) 1.25rem; }
    .hero { min-height: 0; padding: 3.5rem 1.25rem 2.5rem; }
    .hero-title { font-size: var(--lla-font-size-hero); line-height: 1.15; letter-spacing: 0; }
    .hero-subtitle { font-size: var(--lla-font-size-base); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; }
    .hero-stat-label { font-size: 0.75rem; }
    .workflow-steps { grid-template-columns: repeat(2,1fr); }
    .cta-band { padding: 2.5rem 1.5rem; }
    .products-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .product-grid { grid-template-columns: 1fr; }
    .post-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .stats-band { padding: 3rem 1.5rem; }
    .parallax-blob { display: none; }
    .command-matrix { grid-template-columns: 1fr; }
    .command-rails { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .workflow-steps { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero { min-height: 0; padding: 5rem 1.5rem 3.5rem; }
    .hero-title { font-size: 1.95rem; line-height: 1.12; letter-spacing: 0; }
}

/* ══════════════════════════════════════════════════════════════
   LLA v2 — ENTERPRISE DESIGN SYSTEM EXTENSION
   Dark sections, mega-menu, product showcase, refined typography
   ══════════════════════════════════════════════════════════════ */

/* ── Dark section token layer ── */
.section-dark {
    --bg-primary:    #0b0f1a;
    --bg-secondary:  #0f1525;
    --bg-card:       #131929;
    --surface:       #1a2235;
    --text-primary:  #f1f5f9;
    --text-secondary:#94a3b8;
    --text-muted:    #475569;
    --border:        rgba(255,255,255,0.07);
    --border-strong: rgba(255,255,255,0.10);
    --border-accent: rgba(59,130,246,0.30);
    --accent-tint:   rgba(37,99,235,0.12);
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.3);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.5);
    --shadow-xl:  0 24px 64px rgba(0,0,0,0.6);
    background: var(--bg-primary);
    color: var(--text-primary);
}
.section-dark .section-label {
    color: #60a5fa;
    background: rgba(37,99,235,0.15);
    border-color: rgba(59,130,246,0.3);
}
.section-dark .section-title { color: #f1f5f9; }
.section-dark .section-subtitle { color: #94a3b8; }
.section-dark .card,
.section-dark .sol-card,
.section-dark .prod-card,
.section-dark .product-card {
    background: var(--bg-card);
    border-color: var(--border-strong);
}
.section-dark .card:hover,
.section-dark .sol-card:hover { border-color: var(--border-accent); }
.section-dark .sol-title,
.section-dark .prod-name,
.section-dark .product-name { color: #f1f5f9; }
.section-dark .sol-desc,
.section-dark .prod-desc,
.section-dark .product-short { color: #94a3b8; }

/* Dark hero variant */
.hero-dark {
    background: linear-gradient(155deg, #08101f 0%, #0d1627 50%, #0f172a 100%);
    color: #f1f5f9;
}
.hero-dark .hero-grid {
    background-image:
        linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 100%);
}
/* remove blobs on dark hero */
.hero-dark::before,
.hero-dark::after { display: none; }

.hero-dark .hero-title { color: #f1f5f9; }
.hero-dark .hero-title .line-2 {
    background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 60%, #818cf8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-dark .hero-subtitle { color: #94a3b8; }
.hero-dark .hero-eyebrow {
    color: #60a5fa; background: rgba(37,99,235,0.15); border-color: rgba(59,130,246,0.3);
}
.hero-dark .hero-eyebrow span { background: #60a5fa; }
.hero-dark .hero-stats { border-top-color: rgba(255,255,255,0.08); }
.hero-dark .hero-stat-num { color: #f1f5f9; }
.hero-dark .hero-stat-label { color: #94a3b8; }

/* ─── MEGA-MENU (wide nav dropdowns with icon+title+desc) ─── */
.nav-mega {
    position: absolute; top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 680px; background: #ffffff;
    border: 1px solid rgba(15,23,42,0.10); border-radius: 16px;
    padding: 1.25rem; opacity: 0; visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    box-shadow: 0 24px 64px rgba(15,23,42,0.14), 0 4px 16px rgba(15,23,42,0.06);
    z-index: 1001;
}
.nav-item:hover .nav-mega {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0.375rem; }
.nav-mega-item {
    display: grid; grid-template-columns: auto 1fr; gap: 0.75rem;
    align-items: start; padding: 0.75rem; border-radius: 10px;
    transition: background 0.15s;
    text-decoration: none;
}
.nav-mega-item:hover { background: #f8fafc; }
.nav-mega-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0; margin-top: 1px;
}
.nav-mega-icon-blue   { background: #eff6ff; }
.nav-mega-icon-violet { background: rgba(124,58,237,0.08); }
.nav-mega-icon-emerald{ background: rgba(5,150,105,0.08); }
.nav-mega-icon-amber  { background: rgba(245,158,11,0.08); }
.nav-mega-icon-cyan   { background: rgba(14,165,233,0.08); }
.nav-mega-icon-rose   { background: rgba(244,63,94,0.08); }
.nav-mega-icon-slate  { background: rgba(100,116,139,0.08); }
.nav-mega-name {
    font-size: 0.8125rem; font-weight: 700; color: #0f172a; line-height: 1.25;
    margin-bottom: 0.2rem;
}
.nav-mega-desc {
    font-size: 0.75rem; color: #475569; line-height: 1.45;
}
.nav-mega-divider {
    grid-column: 1 / -1; height: 1px; background: rgba(15,23,42,0.06);
    margin: 0.375rem 0;
}
.nav-mega-footer {
    grid-column: 1 / -1; padding: 0.75rem 0.75rem 0; margin-top: 0.25rem;
    border-top: 1px solid rgba(15,23,42,0.06);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.5rem;
}
.nav-mega-footer a {
    font-size: 0.75rem; font-weight: 600; color: #2563eb;
    display: inline-flex; align-items: center; gap: 0.25rem;
}
.nav-mega-footer a:hover { text-decoration: underline; }

/* ─── PLATFORMS mega-menu: 3-column wide layout ─── */
.nav-mega-platforms {
    width: 880px;
    left: 50%;
}
.nav-mega-inner-wide {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.nav-mega-col {
    padding: 0.25rem 0.75rem;
    border-right: 1px solid rgba(15,23,42,0.06);
}
.nav-mega-col:last-child { border-right: none; }
.nav-mega-col-header {
    font-size: 0.6125rem; font-weight: 800; letter-spacing: 0.10em;
    text-transform: uppercase; color: #475569;
    padding: 0.5rem 0.75rem 0.375rem; margin-bottom: 0.25rem;
}
/* SVG icons inside mega items (replaces emoji approach) */
.nav-mega-icon svg { width: 18px; height: 18px; }
.nav-mega-icon-blue   svg { color: #2563eb; }
.nav-mega-icon-violet svg { color: #7c3aed; }
.nav-mega-icon-emerald svg { color: #059669; }
.nav-mega-icon-amber  svg { color: #d97706; }
.nav-mega-icon-cyan   svg { color: #0ea5e9; }
.nav-mega-icon-slate  svg { color: #64748b; }

/* Mobile nav improvements */
.mobile-nav-section { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav-section-title {
    font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); padding: 0.75rem 0 0.25rem;
}
.mobile-nav .mobile-nav-section a {
    border-bottom: none; padding: 0.625rem 0.5rem;
    font-size: 0.9375rem;
}

/* ─── DARK PAGE HERO VARIANT ─── */
.page-hero-dark {
    background: linear-gradient(155deg, #08101f 0%, #0d1627 70%, #0f172a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #f1f5f9; position: relative; overflow: hidden;
}
.page-hero-dark::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
    pointer-events: none;
}
.page-hero-dark .section-label { color: #60a5fa; background: rgba(37,99,235,0.15); border-color: rgba(59,130,246,0.30); }
.page-hero-dark .section-title { color: #f1f5f9; }
.page-hero-dark .section-subtitle { color: #94a3b8; }

/* ─── PRODUCT PLATFORM CARDS (v2 — darker, cleaner) ─── */
.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.platform-card {
    background: #ffffff; border: 1px solid rgba(15,23,42,0.10);
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    display: flex; flex-direction: column;
}
.platform-card:hover { border-color: rgba(37,99,235,0.28); box-shadow: 0 16px 48px rgba(15,23,42,0.12); transform: translateY(-4px); }
.section-dark .platform-card { background: #131929; border-color: rgba(255,255,255,0.08); }
.section-dark .platform-card:hover { border-color: rgba(59,130,246,0.35); }

.platform-card-top {
    padding: 1.75rem 1.75rem 1.25rem;
    border-bottom: 1px solid rgba(15,23,42,0.07);
    position: relative; overflow: hidden;
}
.section-dark .platform-card-top { border-bottom-color: rgba(255,255,255,0.06); }
.platform-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.accent-blue   { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.accent-violet { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.accent-emerald{ background: linear-gradient(90deg, #059669, #34d399); }
.accent-cyan   { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.accent-amber  { background: linear-gradient(90deg, #d97706, #fbbf24); }
.accent-rose   { background: linear-gradient(90deg, #dc2626, #fb7185); }
.accent-slate  { background: linear-gradient(90deg, #475569, #94a3b8); }

.platform-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; margin-bottom: 1.125rem; }
.platform-name { font-size: 1.125rem; font-weight: 800; letter-spacing: -0.02em; color: #0f172a; margin-bottom: 0.375rem; font-family: var(--font-display); }
.section-dark .platform-name { color: #f1f5f9; }
.platform-tagline { font-size: 0.8125rem; color: #64748b; line-height: 1.55; }
.section-dark .platform-tagline { color: #94a3b8; }
.platform-demo-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 4px;
    background: rgba(5,150,105,0.10); color: #059669; border: 1px solid rgba(5,150,105,0.2);
    margin-top: 0.75rem;
}
.platform-demo-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #059669; animation: pulse 2s infinite; }

.platform-card-body { padding: 1.25rem 1.75rem; flex: 1; }
.platform-modules { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 1.125rem; }
.platform-module { font-size: 0.6875rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 4px; background: #f1f5f9; border: 1px solid rgba(15,23,42,0.09); color: #475569; }
.section-dark .platform-module { background: #1a2235; border-color: rgba(255,255,255,0.08); color: #94a3b8; }

.platform-card-footer {
    padding: 1rem 1.75rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(15,23,42,0.07);
    gap: 0.75rem; flex-wrap: wrap;
}
.section-dark .platform-card-footer { border-top-color: rgba(255,255,255,0.06); }
.platform-link {
    font-size: 0.8125rem; font-weight: 700; color: #2563eb;
    display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s;
}
.platform-card:hover .platform-link { gap: 0.5rem; }
.btn-demo {
    font-size: 0.75rem; font-weight: 600; padding: 0.375rem 0.75rem; border-radius: 6px;
    background: rgba(5,150,105,0.08); color: #059669; border: 1px solid rgba(5,150,105,0.2);
    transition: background 0.15s, border-color 0.15s;
}
.btn-demo:hover { background: rgba(5,150,105,0.15); border-color: rgba(5,150,105,0.35); }

/* ─── SOLUTION DOMAIN CARDS (v2) ─── */
.domain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.domain-card {
    background: #ffffff; border: 1px solid rgba(15,23,42,0.09); border-radius: 14px;
    padding: 1.5rem; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex; flex-direction: column;
}
.domain-card:hover { border-color: rgba(37,99,235,0.30); box-shadow: 0 8px 32px rgba(15,23,42,0.10); transform: translateY(-3px); }
.section-dark .domain-card { background: #131929; border-color: rgba(255,255,255,0.08); }
.section-dark .domain-card:hover { border-color: rgba(59,130,246,0.35); }
.domain-num { font-size: 0.65rem; font-weight: 800; font-family: monospace; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.75rem; }
.domain-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; margin-bottom: 1rem; }
.domain-name { font-size: 0.9375rem; font-weight: 800; color: #0f172a; line-height: 1.3; margin-bottom: 0.5rem; font-family: var(--font-display); }
.section-dark .domain-name { color: #f1f5f9; }
.domain-desc { font-size: 0.8125rem; color: #64748b; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.section-dark .domain-desc { color: #94a3b8; }
.domain-products { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.domain-product-tag {
    font-size: 0.6rem; font-weight: 700; padding: 0.15rem 0.4rem; border-radius: 3px;
    background: #eff6ff; color: #2563eb; border: 1px solid rgba(37,99,235,0.15);
}
.section-dark .domain-product-tag { background: rgba(37,99,235,0.12); border-color: rgba(59,130,246,0.25); }

/* ─── INTEGRATION BADGE ROW ─── */
.integration-grid { display: flex; flex-wrap: wrap; gap: 0.625rem; align-items: center; }
.integration-badge {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.8125rem; font-weight: 600; padding: 0.5rem 0.875rem;
    border-radius: 8px; border: 1px solid rgba(15,23,42,0.09);
    background: #ffffff; color: #475569;
    transition: border-color 0.2s, color 0.2s;
}
.integration-badge:hover { border-color: rgba(37,99,235,0.30); color: #2563eb; }
.section-dark .integration-badge { background: #131929; border-color: rgba(255,255,255,0.08); color: #94a3b8; }
.integration-badge-icon { font-size: 1rem; }

/* ─── DEMO PRODUCT FRAME ─── */
.demo-frame-wrap {
    border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(15,23,42,0.10);
    box-shadow: 0 24px 64px rgba(15,23,42,0.18), 0 2px 8px rgba(15,23,42,0.08);
    background: #f8fafc;
}
.demo-frame-topbar {
    display: flex; align-items: center; gap: 0.625rem;
    padding: 0.625rem 1rem; background: #f1f5f9;
    border-bottom: 1px solid rgba(15,23,42,0.07);
}
.demo-dots { display: flex; gap: 5px; }
.demo-dots span { width: 9px; height: 9px; border-radius: 50%; }
.demo-url-bar {
    flex: 1; background: #ffffff; border: 1px solid rgba(15,23,42,0.09);
    border-radius: 5px; padding: 0.3rem 0.75rem;
    font-size: 0.6875rem; color: #64748b; font-family: monospace;
    display: flex; align-items: center; gap: 0.4rem;
}
.demo-url-lock { color: #059669; }
.demo-iframe {
    width: 100%; display: block;
    border: none; background: #ffffff;
    min-height: 400px;
}

/* ─── SCROLL REVEAL states (replaces AOS) ─── */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal-left { opacity: 0; transform: translateX(-24px); }
.reveal-right { opacity: 0; transform: translateX(24px); }
.reveal-scale { opacity: 0; transform: scale(0.96); }
/* GSAP adds class 'is-visible' */
.is-visible { opacity: 1 !important; transform: none !important; transition: opacity 0.6s ease, transform 0.6s ease; }

/* ─── STATS COUNTER (dark band) ─── */
.stat-dark-band {
    background: #0b0f1a; border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 2rem; position: relative; overflow: hidden;
}
.stat-dark-band::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
    background-size: 52px 52px; pointer-events: none;
}
.stat-dark-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
}
.stat-dark-item { text-align: center; }
.stat-dark-num {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.04em;
    color: #f1f5f9; line-height: 1; font-family: var(--font-display);
    font-variant-numeric: tabular-nums;
}
.stat-dark-label { font-size: 0.875rem; color: #94a3b8; margin-top: 0.5rem; }
.stat-dark-accent { color: #60a5fa; }

/* ─── RESPONSIVE additions for new components ─── */
@media (max-width: 1024px) {
    /* Nav mega-menus hidden since desktop nav is hidden at this breakpoint */
    .nav-mega { display: none; }
    .platform-grid { grid-template-columns: repeat(2,1fr); }
    .domain-grid { grid-template-columns: repeat(2,1fr); }
    .stat-dark-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .platform-grid { grid-template-columns: 1fr; }
    .domain-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .stat-dark-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   Shared Public Presentation Components
   Used by cleaned-up Razor partials for section headers, CTA bands,
   and product evidence frames.
   ═══════════════════════════════════════════════════════════════ */
.section-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}
.section-header-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-header-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}
.public-cta-section {
    background: var(--bg-secondary);
}
.public-cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #0b1525 0%, #102044 100%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    padding: clamp(2rem, 4vw, 3rem);
    color: #f8fafc;
    overflow: hidden;
    position: relative;
}
.public-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96,165,250,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96,165,250,0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, black 10%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, black 10%, transparent 80%);
    pointer-events: none;
}
.public-cta-band > * {
    position: relative;
    z-index: 1;
}
.public-cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.12;
    margin-bottom: 0.75rem;
}
.public-cta-band p {
    color: #94a3b8;
    max-width: 620px;
    line-height: 1.75;
}
.public-cta-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.evidence-frame {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1.5rem;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
}
.evidence-frame-copy {
    padding: 1rem;
}
.evidence-frame-copy span {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.evidence-frame-copy h3 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.evidence-frame-copy p {
    color: var(--text-secondary);
    line-height: 1.75;
}
.evidence-frame-screen {
    min-height: 280px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(37,99,235,0.10), rgba(14,165,233,0.04)),
        #f8fafc;
    border: 1px solid rgba(15,23,42,0.08);
    padding: 1rem;
    display: grid;
    align-content: start;
    gap: 1rem;
}
.evidence-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
.evidence-metric {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 12px;
    padding: 0.85rem;
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 700;
}
.evidence-workflow {
    display: grid;
    gap: 0.6rem;
}
.evidence-workflow-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    color: #475569;
    font-size: 0.8rem;
}
.evidence-workflow-row span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
}
@media (max-width: 900px) {
    .public-cta-band,
    .evidence-frame {
        grid-template-columns: 1fr;
    }
    .public-cta-actions {
        justify-content: flex-start;
    }
}
@media (max-width: 560px) {
    .evidence-metrics {
        grid-template-columns: 1fr;
    }
}

/* Product strategic narrative sections */
.strategic-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    max-width: 700px;
}
.strategic-title-sm {
    font-size: 2rem;
}
.section-customer-reality {
    position: relative;
    overflow: hidden;
    background-color: #f4f8ff;
    background-image: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.section-customer-reality::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .5;
    pointer-events: none;
}
.section-customer-reality .container {
    position: relative;
    z-index: 1;
}
.reality-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.reality-card {
    background-color: #f7fbff;
    background-image: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,251,255,.9));
    border: 1px solid rgba(148,163,184,.26);
    border-radius: 18px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15,23,42,.06);
    transform: translate3d(0, var(--parallax-offset, 0px), 0);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.reality-card:hover {
    transform: translate3d(0, calc(var(--parallax-offset, 0px) - 4px), 0);
    border-color: rgba(59,130,246,.42);
    box-shadow: 0 18px 36px rgba(30,64,175,.12);
}
.reality-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    opacity: .1;
    margin-bottom: .25rem;
}
.reality-card h3,
.pillar-card h3,
.eco-card h3,
.roadmap-card h3 {
    color: var(--text-primary);
}
.reality-card h3 {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.reality-icon {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56,189,248,.2), rgba(59,130,246,.18));
    color: #0b3b7a;
    font-size: .85rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}
.reality-card h3 {
    margin-bottom: .75rem;
    font-size: 1.05rem;
    color: var(--lla-text-on-light);
}
.reality-card p {
    color: var(--lla-text-muted-on-light);
    line-height: 1.85;
    font-size: .93rem;
    margin: 0;
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.pillar-header {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.pillar-header h3 {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}
.pillar-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    background: rgba(14, 165, 233, .1);
}
.pillar-kicker {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: .4rem;
}
.pillar-kicker-problem {
    color: #f87171;
}
.pillar-kicker-outcome {
    color: #4ade80;
    margin-top: .75rem;
}
.pillar-problem,
.pillar-outcome {
    font-size: .87rem;
    line-height: 1.65;
    padding-left: .75rem;
    margin: 0;
}
.pillar-problem {
    color: #64748b;
    border-left: 2px solid rgba(239, 68, 68, .45);
}
.pillar-outcome {
    color: var(--text-secondary);
    border-left: 2px solid rgba(74, 222, 128, .5);
}
.pillar-governance {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    font-size: .79rem;
    color: var(--text-muted);
    padding: .6rem .75rem;
    background: rgba(14, 165, 233, .05);
    border-radius: 8px;
}
.pillar-governance span:first-child {
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 800;
}
.transformation-timeline {
    display: grid;
    gap: 0;
    margin-top: 2rem;
    position: relative;
    padding-left: 0;
}
.transformation-timeline::before {
    content: "";
    position: absolute;
    left: 2rem;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(14, 165, 233, .15));
}
.t-step {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1.25rem;
    padding: 1rem 0;
    position: relative;
}
.t-step-num {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--bg-secondary);
    box-shadow: inset 0 0 0 100px rgba(14, 165, 233, .12);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    color: var(--accent);
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: .1rem;
    position: relative;
    z-index: 1;
}
.t-step-body {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
}
.t-step-phase {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .25rem;
}
.t-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .5rem;
}
.t-step-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: .9rem;
    margin: 0;
}
.t-step-milestone {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .75rem;
    padding: .3rem .7rem;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 8px;
    font-size: .77rem;
    color: #4ade80;
}
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.eco-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
}
.eco-card-type {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .4rem;
}
.eco-card h3 {
    font-size: .95rem;
    margin-bottom: .4rem;
}
.eco-card p,
.roadmap-card p {
    color: var(--text-secondary);
    font-size: .85rem;
    line-height: 1.62;
    margin: 0;
}
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    counter-reset: roadmap;
}
.roadmap-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.35rem;
    counter-increment: roadmap;
    position: relative;
    overflow: hidden;
}
.roadmap-card::before {
    content: counter(roadmap);
    position: absolute;
    top: .5rem;
    right: 1.25rem;
    font-size: 3rem;
    font-weight: 900;
    opacity: .06;
    color: var(--accent);
    line-height: 1;
}
.roadmap-card h3 {
    margin-bottom: .65rem;
    font-size: 1rem;
}
.roadmap-card p {
    font-size: .9rem;
    line-height: 1.7;
}
.roadmap-modern-section .section-subtitle.roadmap-modern-subtitle {
    max-width: 72ch;
}
.roadmap-modern-shell {
    margin-top: 1.25rem;
    background: rgba(30, 50, 90, 0.02);
    border: 1px solid rgba(30, 50, 90, 0.08);
    border-radius: 1.5rem;
    padding: 1rem;
}
.roadmap-modern-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.95fr);
    gap: 1rem;
}
.roadmap-modern-intro,
.roadmap-modern-card {
    background: #fff;
    border: 1px solid rgba(30, 50, 90, 0.08);
    border-radius: 1.25rem;
    color: #0f172a;
}
.roadmap-modern-intro {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.roadmap-placeholder-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(30, 50, 90, 0.12);
    background: rgba(30, 50, 90, 0.04);
    color: #1f365f;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.roadmap-modern-intro h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.45;
    color: #0f172a;
}
.roadmap-modern-intro p {
    margin: 0;
    color: #475569;
    font-size: .9rem;
    line-height: 1.65;
}
.roadmap-modern-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.roadmap-btn {
    appearance: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .03em;
    padding: .48rem .9rem;
    border: 1px solid transparent;
    transition: all .25s ease;
    cursor: pointer;
}
.roadmap-btn-primary {
    background: #1e325a;
    color: #fff;
    border-color: #1e325a;
}
.roadmap-btn-primary:hover {
    background: #263f72;
    border-color: #263f72;
}
.roadmap-btn-ghost,
.roadmap-btn-inline {
    background: #fff;
    color: #30466f;
    border-color: rgba(30, 50, 90, 0.2);
}
.roadmap-btn-ghost:hover,
.roadmap-btn-inline:hover {
    border-color: rgba(30, 50, 90, 0.38);
    color: #1e325a;
}
.roadmap-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}
.roadmap-modern-card {
    padding: 1rem;
    transition: box-shadow .25s ease, transform .25s ease;
}
.roadmap-modern-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}
.roadmap-modern-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .7rem;
}
.roadmap-step-btn {
    appearance: none;
    border-radius: 999px;
    border: 1px solid rgba(30, 50, 90, 0.14);
    background: rgba(30, 50, 90, 0.03);
    color: #1f365f;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .32rem .7rem;
}
.roadmap-mini-placeholder {
    display: block;
    width: 2.7rem;
    height: .48rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(30, 50, 90, 0.16), rgba(30, 50, 90, 0.05));
}
.roadmap-modern-card h3 {
    margin: 0 0 .45rem;
    color: #0f172a;
    font-size: .97rem;
    line-height: 1.45;
}
.roadmap-modern-card p {
    margin: 0;
    color: #475569;
    font-size: .86rem;
    line-height: 1.62;
}
.roadmap-line-placeholder {
    margin: .85rem 0 .7rem;
    width: 100%;
    height: .5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(30, 50, 90, 0.14), rgba(30, 50, 90, 0.04));
}
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.outcome-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}
.outcome-role {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .2rem;
}
.outcome-role-vi {
    font-size: .78rem;
    color: var(--accent);
    margin-bottom: .85rem;
}
.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.outcome-list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    color: var(--text-secondary);
    font-size: .87rem;
    line-height: 1.55;
}
.outcome-list li::before {
    content: ">";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05em;
}
.governance-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, var(--parallax-offset, 0px), 0);
}
.governance-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(14, 165, 233, .25));
}
.governance-box p {
    color: var(--lla-text-muted-on-light);
    line-height: 1.85;
    font-size: .95rem;
    margin: 0;
}
.section-governance-spotlight {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4ff 100%);
}
.section-governance-spotlight::before,
.section-why-lla-spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .25;
    background-image:
        linear-gradient(rgba(59,130,246,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,.05) 1px, transparent 1px);
    background-size: 64px 64px;
}
.section-governance-spotlight .container,
.section-why-lla-spotlight .container {
    position: relative;
    z-index: 1;
}
.section-governance-spotlight .governance-box,
.section-why-lla-spotlight .why-lla-item {
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,252,255,.92));
    border-color: rgba(148,163,184,.26);
    box-shadow: 0 14px 30px rgba(15,23,42,.07);
}
/* Ensure titles on tinted spotlight sections maintain contrast */
.section-customer-reality .section-title,
.section-governance-spotlight .section-title,
.section-why-lla-spotlight .section-title {
    color: var(--lla-text-on-light);
}
.section-customer-reality .section-subtitle,
.section-governance-spotlight .section-subtitle,
.section-why-lla-spotlight .section-subtitle {
    color: var(--lla-text-muted-on-light);
}

.section-why-lla-spotlight {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f4ff 0%, #eaf0ff 100%);
}
.why-lla-bullet {
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    margin-right: .55rem;
    color: #1d4ed8;
    background: linear-gradient(135deg, rgba(56,189,248,.22), rgba(59,130,246,.18));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
    transform: translateY(-1px);
}
.why-lla-list {
    display: grid;
    gap: .7rem;
    margin-top: 1.5rem;
}
.why-lla-item {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transform: translate3d(0, var(--parallax-offset, 0px), 0);
}
.why-lla-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(14, 165, 233, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    color: var(--accent);
    flex-shrink: 0;
}
.why-lla-text {
    color: var(--lla-text-muted-on-light);
    line-height: 1.65;
    font-size: .92rem;
    margin: 0;
    padding-top: .35rem;
}
@media (max-width: 980px) {
    .reality-grid,
    .pillar-grid,
    .ecosystem-grid,
    .roadmap-grid,
    .roadmap-modern-layout,
    .roadmap-modern-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    .roadmap-modern-shell {
        border-radius: 1.25rem;
        padding: .85rem;
    }
    .transformation-timeline {
        padding-left: 0;
    }
    .transformation-timeline::before {
        display: none;
    }
    .t-step {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .t-step-num {
        width: 3rem;
        height: 3rem;
        font-size: .8rem;
    }
    .evidence-frame {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .reality-grid { gap: 0.75rem; }
    .pillar-grid { gap: 0.75rem; }
    .ecosystem-grid { gap: 0.75rem; }
    .roadmap-modern-grid { gap: .75rem; }
    .transformation-timeline { margin-top: 1.25rem; }
    .t-step-body { padding: 1rem; }
    .why-lla-item {
        grid-template-columns: 2rem 1fr;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
    }
    .why-lla-num {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   Phase 4G — SaaS Standardization Layer
   Reusable classes, 430px breakpoint, reduced motion, cleanup
   ═══════════════════════════════════════════════════════════════ */

/* ── Standardized SaaS section classes ── */
.lla-section { padding: var(--lla-section-py) 2rem; }
.lla-section-light { background: var(--bg-secondary); }
.lla-section-dark {
    background: #0b0f1a; color: #f1f5f9;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --bg-card: #131929;
    --border: rgba(255,255,255,0.07);
    --border-strong: rgba(255,255,255,0.10);
}
.lla-section-gradient {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.lla-container { max-width: var(--lla-container-max); margin: 0 auto; }
.lla-eyebrow {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: var(--lla-font-size-xs); font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1rem;
}
.lla-section-title {
    font-family: var(--font-display);
    font-size: var(--lla-font-size-2xl); font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.1;
    color: var(--text-primary); margin-bottom: 1rem;
}
.lla-section-subtitle {
    font-size: var(--lla-font-size-base);
    color: var(--text-secondary);
    max-width: 600px; line-height: 1.75;
}

/* ── Standardized card ── */
.lla-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--lla-radius-md);
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.lla-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.lla-card-dark {
    background: var(--bg-card);
    border-color: rgba(255,255,255,0.08);
}

/* ── Standardized button variants ── */
.lla-button-primary {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.625rem 1.25rem; font-size: var(--lla-font-size-sm);
    font-weight: 700; font-family: inherit;
    background: var(--accent); color: #fff;
    border: none; border-radius: 8px; cursor: pointer;
    box-shadow: 0 1px 3px rgba(37,99,235,0.3);
    transition: all 0.18s; text-decoration: none;
}
.lla-button-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
.lla-button-secondary {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.625rem 1.25rem; font-size: var(--lla-font-size-sm);
    font-weight: 600; font-family: inherit;
    background: transparent; color: var(--text-secondary);
    border: 1px solid var(--border-strong); border-radius: 8px;
    cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.lla-button-secondary:hover {
    color: var(--accent); border-color: var(--accent);
    background: var(--accent-tint);
}

/* ── Responsive grid helper ── */
.lla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--lla-grid-gap);
}

/* ── Dashboard shell (for product page mockups) ── */
.lla-dashboard-shell {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: var(--lla-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.lla-dashboard-shell-dark {
    background: #0f172a;
    border-color: rgba(255,255,255,0.08);
}

/* ── 430px breakpoint (modern mobile like iPhone 14 Pro Max) ── */
@media (max-width: 430px) {
    .section, .lla-section { padding: 3rem 1rem; }
    .hero { padding: 2.5rem 1rem 2rem; }
    .hero-title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
    .hero-subtitle { font-size: 0.9375rem; line-height: 1.65; }
    .btn-lg { padding: 0.75rem 1.25rem; font-size: 0.9375rem; }
    .btn-xl { padding: 0.875rem 1.5rem; font-size: 0.9375rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .reality-card { padding: 1.25rem; }
    .pillar-card { padding: 1.125rem; }
    .strategic-title { font-size: clamp(1.35rem, 5vw, 1.8rem); }
    .public-cta-band { padding: 1.75rem; }
    .public-cta-band h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}

/* ── Reduced motion support ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
    .parallax-blob { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   PHASE 4: CINEMATIC ENHANCEMENT STYLES
   Premium SaaS landing page components & animations
   ═══════════════════════════════════════════════════════════════════ */

/* ── Animation keyframes ── */
@keyframes parallax-drift {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.25); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.45); }
}

@keyframes float-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-left {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* ── Hero Section Component ── */
.hero-cinematic {
    position: relative;
    min-height: clamp(500px, 70vh, 700px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--lla-navy);
    padding: var(--lla-section-py) var(--lla-section-py-compact);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    will-change: transform;
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lla-section-py);
    max-width: var(--lla-container-wide);
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--lla-radius-lg);
    color: var(--accent);
    font-size: var(--lla-font-size-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-headline {
    font-size: var(--lla-font-size-hero);
    font-weight: 800;
    line-height: 1.1;
    color: var(--lla-text-inverse);
    letter-spacing: var(--tracking-tight);
    margin: 0;
}

.hero-headline em {
    font-style: italic;
    background: linear-gradient(120deg, var(--accent), var(--lla-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subheadline {
    font-size: var(--lla-font-size-xl);
    line-height: 1.5;
    color: var(--lla-text-inverse-muted);
    margin: 0;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin: var(--space-lg) 0;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.metric-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--lla-radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.metric-icon {
    font-size: 24px;
    margin-bottom: var(--space-sm);
}

.metric-value {
    display: block;
    font-size: var(--lla-font-size-2xl);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.metric-label {
    font-size: var(--lla-font-size-sm);
    color: var(--lla-text-inverse-muted);
    line-height: 1.4;
}

/* ── Problem Section Component ── */
.problem-section {
    padding: var(--lla-section-py) var(--lla-section-py-compact);
    background-color: var(--lla-navy-mid);
}

.section-container {
    max-width: var(--lla-container-wide);
    margin: 0 auto;
    width: 100%;
}

.problem-section h2 {
    color: var(--lla-text-inverse);
    margin-bottom: var(--lla-section-py-compact);
    font-size: var(--lla-font-size-2xl);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--lla-grid-gap);
}

.problem-card {
    background: var(--lla-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lla-radius-lg);
    padding: var(--space-2xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.problem-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.08);
}

.problem-icon {
    font-size: 32px;
    margin-bottom: var(--space-md);
    display: block;
}

.problem-card h3 {
    color: var(--lla-text-inverse);
    font-size: var(--lla-font-size-lg);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.problem-card p {
    color: var(--lla-text-inverse-muted);
    font-size: var(--lla-font-size-sm);
    line-height: 1.6;
    margin: 0;
}

/* ── Solution Section Component ── */
.solution-section {
    padding: var(--lla-section-py) var(--lla-section-py-compact);
    background-color: var(--lla-navy);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--lla-grid-gap);
    margin-top: var(--lla-section-py-compact);
}

.solution-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--lla-radius-lg);
    padding: var(--space-2xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card h3 {
    color: var(--lla-text-inverse);
    font-size: var(--lla-font-size-lg);
    margin-bottom: var(--space-md);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.solution-card p {
    color: var(--lla-text-inverse-muted);
    font-size: var(--lla-font-size-sm);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* ── Workflow/Timeline Section ── */
.workflow-section {
    padding: var(--lla-section-py) var(--lla-section-py-compact);
    background-color: var(--lla-navy-mid);
}

.workflow-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: var(--lla-section-py-compact);
    position: relative;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--lla-cyan));
    color: white;
    font-size: var(--lla-font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.step-title {
    color: var(--lla-text-inverse);
    font-size: var(--lla-font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.step-description {
    color: var(--lla-text-inverse-muted);
    font-size: var(--lla-font-size-sm);
    line-height: 1.6;
}

/* ── Trust/Security Section ── */
.trust-section {
    padding: var(--lla-section-py) var(--lla-section-py-compact);
    background-color: var(--lla-navy);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--lla-grid-gap);
    margin-top: var(--lla-section-py-compact);
}

.trust-card {
    background: var(--lla-navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lla-radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.08);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: var(--space-md);
    display: block;
}

.trust-card h3 {
    color: var(--lla-text-inverse);
    font-size: var(--lla-font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.trust-card p {
    color: var(--lla-text-inverse-muted);
    font-size: var(--lla-font-size-sm);
    line-height: 1.6;
    margin: 0;
}

/* ── Feature Grid Section ── */
.feature-grid-section {
    padding: var(--lla-section-py) var(--lla-section-py-compact);
    background: linear-gradient(180deg, var(--lla-navy) 0%, var(--lla-navy-mid) 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--lla-grid-gap);
    margin-top: var(--lla-section-py-compact);
}

.feature-card {
    border-radius: var(--lla-radius-xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 14, 36, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-icon {
    display: inline-flex;
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    color: var(--lla-text-inverse);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--lla-text-inverse-muted);
    margin: 0 0 var(--space-md);
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: var(--lla-font-size-xs);
    font-weight: 700;
    color: var(--accent);
    border: 1px solid rgba(37, 99, 235, 0.35);
    background: rgba(37, 99, 235, 0.12);
}

/* ── Use Case Cards Section ── */
.usecase-section {
    padding: var(--lla-section-py) var(--lla-section-py-compact);
    background: var(--lla-navy-mid);
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--lla-grid-gap);
    margin-top: var(--lla-section-py-compact);
}

.usecase-card {
    border-radius: var(--lla-radius-xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, rgba(30, 58, 138, 0.32), rgba(15, 23, 42, 0.65));
}

.usecase-industry {
    display: inline-flex;
    margin-bottom: var(--space-md);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: var(--lla-font-size-xs);
    color: var(--lla-cyan);
    border: 1px solid rgba(6, 182, 212, 0.35);
    background: rgba(6, 182, 212, 0.12);
}

.usecase-card h3 {
    color: var(--lla-text-inverse);
    margin-bottom: var(--space-sm);
}

.usecase-card p {
    color: var(--lla-text-inverse-muted);
    margin: 0 0 var(--space-md);
}

.usecase-outcome {
    font-weight: 700;
    color: var(--emerald);
    font-size: var(--lla-font-size-sm);
}

/* ── Integration Cards Section ── */
.integration-section {
    padding: var(--lla-section-py) var(--lla-section-py-compact);
    background: var(--lla-navy);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--lla-grid-gap);
    margin-top: var(--lla-section-py-compact);
}

.integration-card {
    border-radius: var(--lla-radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 11, 29, 0.75);
}

.integration-icon {
    display: inline-flex;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.integration-card h3 {
    color: var(--lla-text-inverse);
    margin-bottom: var(--space-xs);
}

.integration-category {
    font-size: var(--lla-font-size-xs);
    color: var(--accent);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.integration-card p {
    color: var(--lla-text-inverse-muted);
    margin: 0;
}

/* ── CTA Band Cinematic Variant ── */
.cta-band-cinematic .public-cta-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--lla-radius-xl);
    border: 1px solid rgba(37, 99, 235, 0.28);
    background:
        radial-gradient(100% 140% at 0% 0%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
        linear-gradient(140deg, rgba(9, 14, 36, 0.96), rgba(15, 23, 42, 0.95));
    box-shadow: 0 16px 48px rgba(2, 6, 23, 0.45);
}

.cta-band-cinematic .public-cta-band h2 {
    color: var(--lla-text-inverse);
}

.cta-band-cinematic .public-cta-band p {
    color: var(--lla-text-inverse-muted);
}

/* ── Scroll Reveal Utility ── */
[data-scroll-reveal] {
    opacity: 0;
    animation: float-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-scroll-reveal].visible {
    opacity: 1;
}

/* ── Parallax Enhancement ── */
[data-parallax-speed] {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.1, 0.5, 0.1, 1);
}

/* ── Glassmorphism Utility ── */
.glassmorphic {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   Phase 5: PREMIUM SaaS ENHANCEMENT LAYER
   Heading backgrounds, icon system, mockup cards, visual polish
   ═══════════════════════════════════════════════════════════ */

/* ── Section Heading with Background Pattern ── */
.section-heading-wrapper {
    position: relative;
    margin-bottom: 3rem;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    overflow: hidden;
}

.section-heading-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-heading-wrapper h2,
.section-heading-wrapper h3 {
    position: relative;
    z-index: 1;
    color: var(--lla-text-inverse);
    margin: 0;
}

.section-heading-wrapper p {
    position: relative;
    z-index: 1;
    color: var(--lla-text-inverse-muted);
    margin: 0.5rem 0 0 0;
}

/* ── Icon Library System ── */
.icon-library {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--accent);
    font-size: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon-library.size-sm {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.icon-library.size-lg {
    width: 64px;
    height: 64px;
    font-size: 32px;
}

/* ── Feature Card with Icon ── */
.feature-card-enhanced {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-enhanced:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
}

.feature-card-enhanced-icon {
    flex-shrink: 0;
}

.feature-card-enhanced-content h4 {
    color: var(--lla-text-inverse);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.feature-card-enhanced-content p {
    color: var(--lla-text-inverse-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ── Mockup Card / Dashboard Preview ── */
.mockup-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.mockup-card-placeholder {
    text-align: center;
    padding: 2rem;
}

.mockup-card-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.mockup-card-placeholder-text {
    color: var(--lla-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mockup-card.dark {
    background: linear-gradient(135deg, #0a1a2e 0%, #0f172a 100%);
    border-color: rgba(37, 99, 235, 0.3);
}

.mockup-card.dark .mockup-card-placeholder-text {
    color: var(--lla-text-inverse-muted);
}

/* ── Use Case / Benefit Box ── */
.use-case-box {
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.08);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.use-case-box:hover {
    background: rgba(37, 99, 235, 0.12);
    border-left-color: var(--lla-cyan);
    transform: translateX(4px);
}

.use-case-box h4 {
    color: var(--lla-text-inverse);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.use-case-box p {
    color: var(--lla-text-inverse-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ── Comparison Matrix ── */
.comparison-matrix {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.comparison-matrix thead {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.08));
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.comparison-matrix th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--lla-text-primary);
    font-size: 0.95rem;
}

.comparison-matrix td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--lla-text-secondary);
    font-size: 0.9rem;
}

.comparison-matrix tbody tr:hover {
    background: #fafafa;
}

.comparison-matrix .checkmark {
    color: var(--lla-green);
    font-weight: 700;
}

/* ── Integration Flow Diagram ── */
.flow-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.flow-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.flow-step-text h4 {
    color: var(--lla-text-inverse);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.flow-step-text p {
    color: var(--lla-text-inverse-muted);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

/* ── Section Divider / Spacer ── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
    margin: 3rem 0;
}

/* ── Responsive Fixes ── */
@media (max-width: 768px) {
    .section-heading-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-card-enhanced {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon-library {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .mockup-card {
        aspect-ratio: auto;
        min-height: 250px;
    }

    .comparison-matrix {
        font-size: 0.85rem;
    }

    .comparison-matrix th,
    .comparison-matrix td {
        padding: 0.75rem;
    }

    .flow-diagram {
        gap: 0.75rem;
    }

    .flow-step {
        padding: 0.75rem;
    }
}

/* ── Hover Lift Utility ── */
[data-card-hover] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-card-hover]:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

/* ── Responsive Hero Section ── */
@media (max-width: 768px) {
    .hero-cinematic {
        min-height: auto;
        padding: var(--lla-section-py-compact) var(--lla-section-py-compact);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--lla-section-py-compact);
    }

    .hero-visual {
        display: none;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .problem-section,
    .solution-section,
    .workflow-section,
    .trust-section,
    .feature-grid-section,
    .usecase-section,
    .integration-section {
        padding: var(--lla-section-py-compact) var(--lla-section-py-compact);
    }

    .workflow-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-grid,
    .usecase-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }
}
