/* =========================================================
   LiveEx Shield — Heritage Maroon Edition
   Palette inspired by the LiveEx-Shield logo:
   deep maroon (primary) + rose/champagne accents +
   dark navy depth on warm ivory / porcelain backgrounds.
   ========================================================= */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Brand scale */
    --maroon-900: #3a0a14;   /* deepest maroon — footer, hero overlays */
    --maroon-800: #5c1524;   /* dark maroon — headings on light */
    --maroon-700: #7a1d2d;   /* primary brand maroon */
    --maroon-600: #9a2638;   /* primary maroon mid */
    --maroon-500: #b73048;   /* vibrant maroon */
    --maroon-400: #d05a6d;   /* rose */
    --maroon-300: #e08c9a;   /* soft rose */
    --maroon-200: #f0c9d0;   /* blush */
    --maroon-100: #f9e4e7;   /* pale blush */
    --maroon-50:  #fdf5f6;   /* ivory-rose wash */

    /* Navy depth */
    --navy-900: #0a1428;
    --navy-800: #12223f;
    --navy-700: #1b3058;
    --navy-600: #2a436e;
    --navy-200: #c9d2e2;
    --navy-100: #e5eaf2;

    /* Neutrals */
    --ink:     #1a1a1f;
    --slate:   #3d3d45;
    --muted:   #6b6b75;
    --hint:    #9a9aa3;
    --border:  #e9d8dc;
    --line:    #f1e5e8;
    --cream:   #fbf7f4;
    --paper:   #fdfbf9;
    --white:   #ffffff;

    /* Semantic aliases */
    --primary:    var(--maroon-700);
    --secondary:  var(--navy-800);
    --accent:     var(--maroon-500);
    --dark:       var(--maroon-900);
    --light:      var(--cream);
    --text:       #2a2025;
    --text-light: var(--muted);

    /* Gradients */
    --gradient:        linear-gradient(135deg, #7a1d2d 0%, #5c1524 50%, #12223f 100%);
    --gradient-hero:   linear-gradient(135deg, #5c1524 0%, #7a1d2d 40%, #1b3058 100%);
    --gradient-rose:   linear-gradient(135deg, #9a2638 0%, #d05a6d 100%);
    --gradient-navy:   linear-gradient(135deg, #12223f 0%, #2a436e 100%);
    --gradient-wash:   linear-gradient(180deg, #fdf5f6 0%, #ffffff 100%);
    --gradient-cream:  linear-gradient(180deg, #fbf7f4 0%, #fdfbf9 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(58, 10, 20, 0.05);
    --shadow-sm: 0 2px 10px rgba(58, 10, 20, 0.06);
    --shadow-md: 0 10px 28px rgba(58, 10, 20, 0.10);
    --shadow-lg: 0 22px 54px rgba(58, 10, 20, 0.16);
    --shadow-maroon: 0 14px 32px rgba(122, 29, 45, 0.28);

    /* Radii */
    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    /* Typography */
    --font-sans:  'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--maroon-800);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--maroon-700); color: #fff; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--maroon-600);
    padding: 6px 14px;
    background: var(--maroon-100);
    border-radius: 30px;
    margin-bottom: 18px;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--maroon-900);
    color: rgba(255,255,255,0.82);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left a {
    color: rgba(255,255,255,0.85);
    margin-right: 22px;
    display: inline-flex;
    align-items: center;
}

.top-bar-left i {
    margin-right: 8px;
    color: var(--maroon-300);
    font-size: 13px;
}

.top-bar-left a:hover,
.top-bar-left a:hover i { color: #fff; }

.top-bar-right a {
    color: var(--maroon-200);
    margin-left: 14px;
    font-size: 14px;
}

.top-bar-right a:hover { color: #fff; }

/* ---------- Header / Nav ---------- */
header {
    background: var(--white);
    box-shadow: 0 1px 0 var(--line), var(--shadow-xs);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo img {
    max-height: 62px;
    width: auto;
}

.main-nav > ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav > ul > li { position: static; }

.main-nav > ul > li > a {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--maroon-800);
    font-size: 13px;
    padding: 25px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    position: relative;
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--maroon-600);
    transition: width .3s ease;
}

.main-nav > ul > li:hover > a::after,
.main-nav > ul > li > a.active::after {
    width: 100%;
}

.main-nav > ul > li > a:hover { color: var(--maroon-600); }

.main-nav > ul > li.has-mega > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 11px;
    display: inline-block;
    float: right;
    margin-top: 3px;
    transition: transform .3s;
    color: var(--maroon-400);
}

.main-nav > ul > li.has-mega:hover > a::before {
    transform: rotate(180deg);
    color: var(--maroon-700);
}

/* Mega menu */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 40px 0 36px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s ease;
    border-top: 3px solid var(--maroon-700);
    z-index: 999;
}

.main-nav > ul > li.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mega-item {
    display: flex;
    gap: 16px;
    padding: 14px;
    border-radius: var(--radius);
    transition: all .25s ease;
    cursor: pointer;
    align-items: flex-start;
    border: 1px solid transparent;
}

.mega-item:hover {
    background: var(--maroon-50);
    border-color: var(--maroon-100);
    transform: translateY(-2px);
}

.mega-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.mega-item:hover .mega-icon {
    background: var(--gradient-rose);
}

.mega-text h4 {
    font-size: 13.5px;
    color: var(--maroon-800);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.mega-item:hover .mega-text h4 { color: var(--maroon-600); }

.mega-text p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
}

/* Contact button */
.btn-contact {
    background: var(--maroon-700);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid var(--maroon-700);
    transition: all .25s ease;
}

.btn-contact::after { display: none !important; }

.btn-contact:hover {
    background: var(--maroon-900);
    border-color: var(--maroon-900);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-maroon);
}

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

/* =========================================================
   ANIMATED GRAPHICS — reusable component
   Used on hero + throughout the site as accent visuals.
   ========================================================= */
.animated-graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
}

.animated-graphic .ag-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(122, 29, 45, 0.28);
    animation: ag-spin 28s linear infinite;
}

.animated-graphic .ag-ring.ring-2 {
    inset: 10%;
    border-color: rgba(27, 48, 88, 0.22);
    border-style: dotted;
    animation-duration: 22s;
    animation-direction: reverse;
}

.animated-graphic .ag-ring.ring-3 {
    inset: 22%;
    border-color: rgba(208, 90, 109, 0.35);
    border-style: dashed;
    animation-duration: 16s;
}

.animated-graphic .ag-orb {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-rose);
    box-shadow: 0 0 22px rgba(183, 48, 72, 0.55);
}
.animated-graphic .ag-orb.orb-1 { top: -4px; left: 50%; transform: translateX(-50%); animation: ag-pulse 3s ease-in-out infinite; }
.animated-graphic .ag-orb.orb-2 { bottom: 8%; right: 2%; width: 14px; height: 14px; background: var(--gradient-navy); animation: ag-pulse 3.6s ease-in-out infinite .8s; }
.animated-graphic .ag-orb.orb-3 { top: 40%; left: -4px; width: 12px; height: 12px; animation: ag-pulse 4.2s ease-in-out infinite 1.4s; }

.animated-graphic .ag-core {
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--maroon-50) 40%, var(--maroon-100) 100%);
    box-shadow: var(--shadow-lg), inset 0 -10px 30px rgba(122, 29, 45, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ag-float 6s ease-in-out infinite;
}

.animated-graphic .ag-core i {
    font-size: clamp(40px, 6vw, 68px);
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 10px rgba(122, 29, 45, 0.3));
}

.animated-graphic .ag-core img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(122, 29, 45, 0.35));
    animation: ag-logo-breathe 4s ease-in-out infinite;
}

@keyframes ag-logo-breathe {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}

.animated-graphic .ag-scan {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
}

.animated-graphic .ag-scan::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--maroon-500), transparent);
    box-shadow: 0 0 10px var(--maroon-500);
    animation: ag-scan 3.5s ease-in-out infinite;
}

.animated-graphic .ag-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}
.animated-graphic .ag-blob.blob-1 { top: -10%; left: -10%; width: 50%; height: 50%; background: var(--maroon-300); animation: ag-morph 12s ease-in-out infinite; }
.animated-graphic .ag-blob.blob-2 { bottom: -10%; right: -10%; width: 55%; height: 55%; background: var(--navy-200); animation: ag-morph 15s ease-in-out infinite reverse; }

@keyframes ag-spin {
    to { transform: rotate(360deg); }
}
@keyframes ag-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(183, 48, 72, 0.5); }
    50%      { transform: scale(1.25); box-shadow: 0 0 32px rgba(183, 48, 72, 0.8); }
}
.animated-graphic .ag-orb.orb-1 { animation-name: ag-pulse-1; }
@keyframes ag-pulse-1 {
    0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 18px rgba(183, 48, 72, 0.5); }
    50%      { transform: translateX(-50%) scale(1.25); box-shadow: 0 0 32px rgba(183, 48, 72, 0.8); }
}
@keyframes ag-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes ag-scan {
    0%   { top: 0%;   opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes ag-morph {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33%      { transform: scale(1.2) translate(10%, -5%); }
    66%      { transform: scale(0.85) translate(-8%, 8%); }
}

/* =========================================================
   Orbiting compliance-term labels
   Pattern: a circular track rotates; inside it, invisible
   "arms" point at fixed angles (--pos); each arm has a label
   pinned to its top edge; labels counter-rotate to stay upright.
   ========================================================= */
.animated-graphic .ag-term-track {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    animation: ag-spin 32s linear infinite;
}

.animated-graphic .ag-term-track.track-outer  { inset: -4%;  animation-duration: 34s; }
.animated-graphic .ag-term-track.track-middle { inset: 10%;  animation-duration: 26s; animation-direction: reverse; }
.animated-graphic .ag-term-track.track-inner  { inset: 22%;  animation-duration: 19s; }

.animated-graphic .ag-arm {
    position: absolute;
    inset: 0;
    transform: rotate(var(--pos, 0deg));
    pointer-events: none;
}

.animated-graphic .ag-term {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--maroon-700);
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid var(--maroon-200);
    box-shadow: 0 4px 14px rgba(122, 29, 45, 0.18);
    white-space: nowrap;
    /* Counter-spin so text stays upright while parent track rotates */
    animation: ag-term-counter 34s linear infinite;
}

.animated-graphic .track-outer  .ag-arm .ag-term { animation-duration: 34s; animation-direction: reverse; }
.animated-graphic .track-middle .ag-arm .ag-term { animation-duration: 26s; animation-direction: normal;  }
.animated-graphic .track-inner  .ag-arm .ag-term { animation-duration: 19s; animation-direction: reverse; }

@keyframes ag-term-counter {
    from { rotate: 0deg; }
    to   { rotate: 360deg; }
}

.animated-graphic .track-inner .ag-term {
    background: var(--maroon-700);
    color: #fff;
    border-color: var(--maroon-700);
    box-shadow: 0 4px 14px rgba(122, 29, 45, 0.35);
}

.animated-graphic .track-middle .ag-term {
    background: var(--navy-800);
    color: #fff;
    border-color: var(--navy-800);
    box-shadow: 0 4px 14px rgba(27, 48, 88, 0.3);
}

/* When terms are present, soften orbs so it doesn't get too busy */
.animated-graphic.ag-with-terms .ag-orb { opacity: 0.65; }

/* Mobile: hide the outermost track so labels don't clip off-screen */
@media (max-width: 600px) {
    .animated-graphic .ag-term-track.track-outer { display: none; }
}

/* Mini graphic variant — inline section accents */
.animated-graphic.ag-mini { max-width: 180px; }
.animated-graphic.ag-mini .ag-core i { font-size: 36px; }
.animated-graphic.ag-mini .ag-orb { width: 10px; height: 10px; }
.animated-graphic.ag-mini .ag-orb.orb-2 { width: 8px; height: 8px; }
.animated-graphic.ag-mini .ag-orb.orb-3 { width: 7px; height: 7px; }

/* =========================================================
   TECH PANEL — rectangular animated visual for service /
   product / about sections (replaces static people photos).
   ========================================================= */
.tech-panel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: var(--gradient-hero);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.tech-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(208,90,109,0.35) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(27,48,88,0.5) 0%, transparent 50%);
    z-index: 0;
}

.tech-panel .tp-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    animation: tp-grid-move 18s linear infinite;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    z-index: 1;
}

@keyframes tp-grid-move {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 36px 36px, 36px 36px; }
}

.tech-panel .tp-scan {
    position: absolute;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--maroon-400), transparent);
    box-shadow: 0 0 18px var(--maroon-400);
    animation: tp-scan 4s ease-in-out infinite;
    z-index: 2;
    top: 0;
    opacity: 0;
}

@keyframes tp-scan {
    0%   { top: 5%;  opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { top: 95%; opacity: 0; }
}

.tech-panel .tp-bars {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 14%;
    height: 35%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6%;
    z-index: 2;
}

.tech-panel .tp-bars span {
    flex: 1;
    background: linear-gradient(to top, var(--maroon-500), var(--maroon-300));
    border-radius: 3px 3px 0 0;
    opacity: 0.9;
    transform-origin: bottom;
    animation: tp-bar-grow 2.6s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(208,90,109,0.4);
}

.tech-panel .tp-bars span:nth-child(1) { animation-delay: 0s;   height: 30%; }
.tech-panel .tp-bars span:nth-child(2) { animation-delay: .2s;  height: 55%; }
.tech-panel .tp-bars span:nth-child(3) { animation-delay: .4s;  height: 40%; }
.tech-panel .tp-bars span:nth-child(4) { animation-delay: .6s;  height: 72%; }
.tech-panel .tp-bars span:nth-child(5) { animation-delay: .8s;  height: 48%; }
.tech-panel .tp-bars span:nth-child(6) { animation-delay: 1.0s; height: 65%; }
.tech-panel .tp-bars span:nth-child(7) { animation-delay: 1.2s; height: 38%; }
.tech-panel .tp-bars span:nth-child(8) { animation-delay: 1.4s; height: 58%; }

@keyframes tp-bar-grow {
    0%, 100% { transform: scaleY(0.8); }
    50%      { transform: scaleY(1.15); }
}

.tech-panel .tp-icon {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: tp-icon-float 5s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.tech-panel .tp-icon i {
    font-size: 34px;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

@keyframes tp-icon-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-10px); }
}

.tech-panel .tp-orb {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--maroon-300);
    box-shadow: 0 0 20px rgba(224,140,154,0.8);
    z-index: 2;
}

.tech-panel .tp-orb.orb-a { top: 15%; left: 15%; animation: tp-orb-pulse 3s ease-in-out infinite; }
.tech-panel .tp-orb.orb-b { top: 25%; right: 18%; width: 8px; height: 8px; background: #fff; animation: tp-orb-pulse 4s ease-in-out infinite .5s; }
.tech-panel .tp-orb.orb-c { bottom: 55%; left: 10%; width: 6px; height: 6px; animation: tp-orb-pulse 3.5s ease-in-out infinite 1s; }

@keyframes tp-orb-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50%      { transform: scale(1.6); opacity: 1; }
}

.tech-panel .tp-label {
    position: absolute;
    bottom: 7%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-serif);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Circuit variant — network nodes */
.tech-panel.tp-network .tp-bars { display: none; }

.tech-panel.tp-network .tp-nodes {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.tech-panel.tp-network .tp-nodes::before,
.tech-panel.tp-network .tp-nodes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,140,154,0.6) 0%, transparent 70%);
    animation: tp-node-pulse 4s ease-in-out infinite;
}

.tech-panel.tp-network .tp-nodes::before {
    width: 120px; height: 120px;
    top: 20%; left: 12%;
}

.tech-panel.tp-network .tp-nodes::after {
    width: 90px; height: 90px;
    bottom: 20%; right: 15%;
    animation-delay: 1.5s;
}

@keyframes tp-node-pulse {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50%      { transform: scale(1.1); opacity: 0.9; }
}

/* Inverted (on dark backgrounds) */
.animated-graphic.ag-inverse .ag-ring { border-color: rgba(240, 201, 208, 0.35); }
.animated-graphic.ag-inverse .ag-ring.ring-2 { border-color: rgba(255, 255, 255, 0.25); }
.animated-graphic.ag-inverse .ag-ring.ring-3 { border-color: rgba(208, 90, 109, 0.55); }
.animated-graphic.ag-inverse .ag-core {
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #fff 50%, var(--maroon-100) 100%);
}

/* =========================================================
   NEW INDEX HERO — simple readable split panel
   ========================================================= */
.hero-panel {
    position: relative;
    background: var(--gradient-wash);
    padding: 80px 0 90px;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(208, 90, 109, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-panel::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(27, 48, 88, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-panel .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.15;
    color: var(--maroon-900);
    margin-bottom: 22px;
    letter-spacing: -0.015em;
    font-weight: 700;
}

.hero-copy h1 .accent-word {
    color: var(--maroon-600);
    position: relative;
    white-space: nowrap;
}

.hero-copy h1 .accent-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    height: 10px;
    width: 100%;
    background: var(--maroon-200);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.7;
}

.hero-copy .lead {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--slate);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    max-width: 520px;
}

.hero-fact strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--maroon-700);
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-fact span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

/* ---------- Inner page hero ---------- */
.page-hero {
    background: var(--gradient-hero);
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(208, 90, 109, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(27, 48, 88, 0.4) 0%, transparent 45%);
    pointer-events: none;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero h1 {
    color: #fff;
    font-size: clamp(32px, 4.4vw, 52px);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.page-hero p.lead {
    max-width: 720px;
    margin: 0 auto 18px;
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
}

.breadcrumb {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    letter-spacing: 0.4px;
}

.breadcrumb a {
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.breadcrumb a:hover { border-bottom-color: var(--maroon-200); color: var(--maroon-200); }

.breadcrumb span { margin: 0 8px; color: var(--maroon-300); }

.page-hero-graphic {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    opacity: 0.65;
    pointer-events: none;
}

.page-hero-graphic-left {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    opacity: 0.5;
    pointer-events: none;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }

.section-title {
    text-align: center;
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 46px;
    position: relative;
    padding-bottom: 20px;
    color: var(--maroon-800);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 1px;
    background: var(--maroon-200);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    background: var(--maroon-600);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    max-width: 760px;
    margin: -30px auto 50px;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.85;
    font-weight: 300;
}

/* ---------- Brands ---------- */
.brands-section {
    background: var(--paper);
    position: relative;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--maroon-200);
}

.brand-card:hover::before { transform: scaleX(1); }

.brand-card img {
    width: 110px;
    height: 110px;
    margin: 0 auto 22px;
    object-fit: contain;
    transition: transform .4s ease;
}

.brand-card:hover img { transform: scale(1.05); }

.brand-card h3 {
    font-size: 17px;
    margin-bottom: 14px;
    color: var(--maroon-800);
    letter-spacing: 0.4px;
}

.brand-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 22px;
    min-height: 60px;
    line-height: 1.65;
}

.read-more {
    color: var(--maroon-600);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.read-more:hover {
    color: var(--maroon-800);
    border-bottom-color: var(--maroon-600);
}

.read-more i { transition: transform .3s; font-size: 11px; }
.read-more:hover i { transform: translateX(4px); }

/* ---------- Integrated logos ---------- */
.integrated-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.integrated-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.integrated-track {
    display: flex;
    gap: 50px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.integrated-track img {
    height: 56px;
    width: auto;
    filter: grayscale(100%) contrast(0.9);
    opacity: 0.55;
    transition: all .3s;
}

.integrated-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ---------- Statistics ---------- */
.stats-section {
    background: var(--gradient);
    color: #fff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(208, 90, 109, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(27, 48, 88, 0.35) 0%, transparent 40%);
}

.stats-section .container { position: relative; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
    text-align: center;
}

.stat-item {
    padding: 16px 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-item img {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.stat-item h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stats-4 { grid-template-columns: repeat(4, 1fr); }

.stats-4 .stat-item { padding: 26px 16px; }

.stats-4 .stat-item .stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-serif);
    display: block;
    margin: 8px 0 6px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, var(--maroon-200) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-4 .stat-item h4 {
    color: rgba(255,255,255,0.82);
    font-size: 13.5px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ---------- CTA banner ---------- */
.services-cta {
    background: var(--maroon-50);
    text-align: center;
    padding: 70px 0;
    border-top: 1px solid var(--maroon-100);
    border-bottom: 1px solid var(--maroon-100);
    position: relative;
    overflow: hidden;
}

.services-cta h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    margin-bottom: 22px;
    color: var(--maroon-800);
    font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
    background: var(--maroon-700);
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    border: 1px solid var(--maroon-700);
    cursor: pointer;
    font-size: 13.5px;
    letter-spacing: 0.6px;
    transition: all .3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background: var(--maroon-900);
    border-color: var(--maroon-900);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-maroon);
}

.btn.btn-outline {
    background: transparent;
    color: var(--maroon-700);
}

.btn.btn-outline:hover {
    background: var(--maroon-700);
    color: #fff;
}

.btn.btn-navy {
    background: var(--navy-800);
    border-color: var(--navy-800);
}

.btn.btn-navy:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.btn.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}

.btn.btn-ghost:hover {
    background: #fff;
    color: var(--maroon-700);
    border-color: #fff;
}

/* ---------- About ---------- */
.about-section { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 22px;
    color: var(--maroon-800);
}

.about-content p {
    color: var(--slate);
    margin-bottom: 16px;
    line-height: 1.85;
    font-size: 15.5px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -16px -16px 16px 16px;
    background: var(--gradient-rose);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: 0;
}

/* ---------- Features ---------- */
.features-section { background: var(--cream); }

.feature-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 26px;
    padding: 28px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    border: 1px solid var(--line);
    border-left: 3px solid var(--maroon-600);
}

.feature-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--maroon-800);
}

.feature-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.feature-content h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--maroon-800);
}

.feature-content p {
    color: var(--slate);
    font-size: 14.5px;
    line-height: 1.75;
}

/* ---------- Benefits ---------- */
.benefits-section {
    padding: 90px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.benefit-box {
    background: var(--maroon-50);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--maroon-100);
    position: relative;
    overflow: hidden;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
}

.benefit-box h3 {
    font-size: 22px;
    margin-bottom: 22px;
    color: var(--maroon-800);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--maroon-100);
}

.benefit-box ul { list-style: none; }

.benefit-box ul li {
    padding: 11px 0 11px 32px;
    position: relative;
    color: var(--slate);
    font-size: 14.5px;
    border-bottom: 1px dashed var(--maroon-100);
}

.benefit-box ul li:last-child { border-bottom: none; }

.benefit-box ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--maroon-700);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 10px;
    width: 20px;
    height: 20px;
    background: var(--maroon-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Circuit ---------- */
.circuit-section {
    background: var(--navy-900);
    color: rgba(255,255,255,0.85);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.circuit-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(122, 29, 45, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(208, 90, 109, 0.15) 0%, transparent 50%);
}

.circuit-section .container { position: relative; }

.circuit-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
    font-size: clamp(24px, 2.8vw, 34px);
}

.circuit-section p {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.95;
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
}

/* ---------- Talk / CTA ---------- */
.talk-section {
    background: var(--gradient);
    color: #fff;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.talk-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.talk-section .container { position: relative; }

.talk-section h3 {
    color: #fff;
    font-size: clamp(24px, 2.8vw, 34px);
    margin-bottom: 14px;
}

.talk-section h4 {
    color: rgba(255,255,255,0.9);
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 22px;
}

.talk-section p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
}

.talk-section .btn {
    background: #fff;
    color: var(--maroon-700);
    border-color: #fff;
    padding: 14px 40px;
    font-size: 14px;
}

.talk-section .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* ---------- Verify ---------- */
.verify-section {
    background: var(--paper);
    padding: 90px 0;
}

.verify-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.verify-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .35s;
    border: 1px solid var(--line);
}

.verify-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--maroon-200);
}

.verify-card i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 22px;
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-maroon);
}

.verify-card h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--maroon-800);
}

.verify-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- ERP ---------- */
.erp-section {
    background: var(--white);
    padding: 80px 0;
}

.erp-section ul {
    list-style: none;
    margin-top: 25px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.erp-section ul li {
    padding: 16px 0 16px 40px;
    position: relative;
    color: var(--slate);
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
    line-height: 1.7;
}

.erp-section ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--maroon-700);
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 12px;
    width: 24px;
    height: 24px;
    background: var(--maroon-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Brochures ---------- */
.brochures-section {
    background: var(--cream);
    padding: 90px 0;
}

.brochures-intro {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    color: var(--muted);
    font-style: italic;
    font-size: 17px;
    font-weight: 300;
}

.brochures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.brochure-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
}

.brochure-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--maroon-200);
}

.brochure-image {
    height: 260px;
    overflow: hidden;
    background: var(--cream);
}

.brochure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.brochure-card:hover .brochure-image img { transform: scale(1.06); }

.brochure-content {
    padding: 26px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brochure-content h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--maroon-800);
}

.brochure-content p {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 14px;
    flex: 1;
}

.brochure-content .btn {
    background: transparent;
    color: var(--maroon-700);
    border: 1.5px solid var(--maroon-700);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    letter-spacing: 0.8px;
}

.brochure-content .btn:hover {
    background: var(--maroon-700);
    color: #fff;
}

/* ---------- DNFBP ---------- */
.dnfbp-section { background: var(--white); padding: 90px 0; }

.dnfbp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.dnfbp-grid h3 {
    font-size: 22px;
    margin-bottom: 22px;
    color: var(--maroon-800);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--maroon-600);
    display: inline-block;
}

.dnfbp-grid ul { list-style: none; }

.dnfbp-grid ul li {
    padding: 9px 0 9px 26px;
    position: relative;
    color: var(--slate);
    font-size: 15px;
}

.dnfbp-grid ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 10px;
    height: 2px;
    background: var(--maroon-600);
}

.dnfbp-grid p {
    color: var(--slate);
    line-height: 1.8;
    margin-top: 8px;
}

/* ---------- Controls ---------- */
.controls-section { background: var(--paper); padding: 90px 0; }

.controls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.control-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: all .35s;
}

.control-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.control-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.control-content { padding: 32px 34px; }

.control-content h4 {
    font-size: 21px;
    margin-bottom: 20px;
    color: var(--maroon-800);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.control-content ul { list-style: none; }

.control-content ul li {
    padding: 9px 0 9px 28px;
    position: relative;
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
}

.control-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--maroon-600);
    position: absolute;
    left: 0;
    top: 11px;
    font-size: 13px;
}

/* ---------- Regulatory ---------- */
.regulatory-section { background: var(--white); padding: 90px 0; }

.regulatory-item {
    background: var(--maroon-50);
    padding: 26px 32px;
    margin-bottom: 14px;
    border-radius: var(--radius);
    border-left: 3px solid var(--maroon-600);
    transition: all .3s;
}

.regulatory-item:hover {
    background: var(--maroon-100);
    transform: translateX(4px);
}

.regulatory-item h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--maroon-800);
}

.regulatory-item p {
    color: var(--slate);
    font-size: 15px;
    line-height: 1.75;
}

.regulatory-item ul {
    list-style: none;
    margin-top: 12px;
}

.regulatory-item ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 14px;
    color: var(--slate);
}

.regulatory-item ul li::before {
    content: '—';
    color: var(--maroon-500);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ---------- Contact (homepage section) ---------- */
.contact-section {
    background: var(--gradient);
    padding: 90px 0;
    color: #fff;
}

.contact-section h2 { color: #fff; text-align: center; }
.contact-section h2::before,
.contact-section h2::after { background: #fff; }

.contact-form {
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 28px;
    color: var(--maroon-800);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--maroon-800);
    font-weight: 500;
    font-size: 13.5px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    color: var(--text);
    transition: border-color .3s, box-shadow .3s, background .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon-600);
    background: var(--maroon-50);
    box-shadow: 0 0 0 3px rgba(183, 48, 72, 0.12);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    background: var(--maroon-700);
    color: #fff;
    padding: 14px 40px;
    border: 1px solid var(--maroon-700);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all .3s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--maroon-900);
    border-color: var(--maroon-900);
    transform: translateY(-1px);
    box-shadow: var(--shadow-maroon);
}

/* ---------- Who We Are ---------- */
.ceo-section { background: var(--white); padding: 90px 0; }

.ceo-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 70px;
}

.ceo-image {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.ceo-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.ceo-image img {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.ceo-content h2 {
    font-size: clamp(26px, 3vw, 32px);
    margin-bottom: 18px;
    color: var(--maroon-800);
}

.ceo-content h3 {
    font-size: 20px;
    color: var(--maroon-700);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--maroon-600);
    display: inline-block;
    letter-spacing: 0.3px;
}

.ceo-content p {
    color: var(--slate);
    margin-bottom: 14px;
    line-height: 1.85;
    font-size: 15px;
}

.ceo-content p strong {
    color: var(--maroon-800);
    font-weight: 600;
    font-style: italic;
}

.ceo-grid.reverse { grid-template-columns: 1fr 300px; }

/* ---------- Services page ---------- */
.services-intro { background: var(--white); padding: 90px 0; }

.services-intro p {
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 15.5px;
}

.services-intro ul {
    list-style: none;
    margin: 26px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.services-intro ul li {
    padding: 12px 0 12px 34px;
    position: relative;
    color: var(--slate);
    font-size: 15px;
    border-bottom: 1px dashed var(--maroon-100);
}

.services-intro ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--maroon-700);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 10px;
    width: 22px;
    height: 22px;
    background: var(--maroon-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail {
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.service-detail:nth-child(even) { background: var(--maroon-50); }

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.service-grid.reverse { direction: rtl; }
.service-grid.reverse > * { direction: ltr; }

.service-grid img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-text h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    margin-bottom: 22px;
    color: var(--maroon-800);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--maroon-600);
    display: inline-block;
}

.service-text p {
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 15px;
}

.service-text ul {
    list-style: none;
    margin: 18px 0 8px;
}

.service-text ul li {
    padding: 9px 0 9px 32px;
    position: relative;
    color: var(--slate);
    font-size: 14.5px;
}

.service-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--maroon-700);
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 10px;
    width: 20px;
    height: 20px;
    background: var(--maroon-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Products ---------- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 70px 0;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.product-grid:nth-child(even) > div:first-child { order: 2; }

.product-grid img {
    display: block;
    max-width: 50%;
    width: 50%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* On narrow screens (single-column stack) give the image a touch more room
   so it doesn't look stranded — still half-ish of the visible width. */
@media (max-width: 768px) {
    .product-grid img {
        max-width: 60%;
        width: 60%;
    }
}

.product-text h3 {
    font-size: clamp(22px, 2.6vw, 30px);
    margin-bottom: 22px;
    color: var(--maroon-800);
    position: relative;
    padding-bottom: 14px;
}

.product-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-rose);
    border-radius: 2px;
}

.product-text p {
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 15px;
}

.product-text ul {
    list-style: none;
    margin: 22px 0;
}

.product-text ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--slate);
    font-size: 14.5px;
}

.product-text ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--maroon-600);
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--maroon-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.product-text .read-more { display: inline-flex; margin-top: 16px; }

/* ---------- Clients map ---------- */
.clients-map-section {
    background: var(--white);
    padding: 90px 0;
    text-align: center;
}

.clients-map-section p {
    max-width: 820px;
    margin: 0 auto 40px;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.85;
    font-weight: 300;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.clients-logo-grid img {
    width: 100%;
    height: 84px;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: all .3s;
    padding: 14px;
    background: var(--paper);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.clients-logo-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-3px);
    border-color: var(--maroon-200);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

/* ---------- Contact page ---------- */
.contact-page-section { background: var(--white); padding: 90px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 20px;
    color: var(--maroon-800);
}

.contact-info > p {
    color: var(--muted);
    margin-bottom: 34px;
    line-height: 1.85;
    font-size: 15px;
}

.info-item {
    display: flex;
    gap: 22px;
    margin-bottom: 26px;
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--maroon-100);
}

.info-item:last-of-type { border-bottom: none; }

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-maroon);
}

.info-text h4 {
    margin-bottom: 6px;
    font-size: 16px;
    color: var(--maroon-800);
}

.info-text p, .info-text a {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.info-text a:hover { color: var(--maroon-700); text-decoration: underline; }

.social-light {
    display: flex;
    gap: 10px;
    margin-top: 34px;
}

.social-light a {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all .3s;
    box-shadow: var(--shadow-sm);
}

.social-light a:hover {
    background: var(--maroon-900);
    transform: translateY(-3px);
    box-shadow: var(--shadow-maroon);
}

.contact-form-box {
    background: var(--maroon-50);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--maroon-100);
    border-top: 3px solid var(--maroon-700);
}

.contact-form-box h3 {
    font-size: 22px;
    margin-bottom: 28px;
    color: var(--maroon-800);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--maroon-100);
}

/* ---------- Footer ---------- */
footer {
    background: var(--maroon-900);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 22px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon-500), var(--navy-700), var(--maroon-500));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--maroon-600);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-col img {
    max-width: 200px;
    margin-bottom: 20px;
    filter: none;
    opacity: 1;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
}

.footer-col p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 2px; line-height: 1.5; }

.footer-col ul li a {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    transition: all .3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--maroon-200);
    transform: translateX(4px);
}

.footer-social { display: flex; gap: 10px; margin-top: 16px; }

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    transition: all .3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--maroon-500);
    color: #fff;
    border-color: var(--maroon-500);
    transform: translateY(-3px);
}

.footer-contact-info { margin-top: 16px; }

.footer-contact-info a {
    color: rgba(255,255,255,0.68);
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-contact-info a:hover { color: var(--maroon-200); }

.footer-contact-info i {
    color: var(--maroon-300);
    margin-right: 10px;
    width: 14px;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .mega-menu-inner { grid-template-columns: repeat(3, 1fr); }
    .clients-logo-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 992px) {
    section { padding: 60px 0; }

    .hero-panel .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 320px; order: -1; }
    .animated-graphic { max-width: 340px; }

    .brands-grid,
    .verify-grid,
    .brochures-grid { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-4 { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 22px; }

    .about-grid,
    .benefits-grid,
    .dnfbp-grid,
    .controls-grid,
    .ceo-grid,
    .ceo-grid.reverse,
    .service-grid,
    .product-grid,
    .contact-grid { grid-template-columns: 1fr !important; gap: 36px; }

    .product-grid:nth-child(even) > div:first-child { order: 0; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0; left: 0;
        background: #fff;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--line);
    }
    .main-nav.open { display: block; }
    .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
    .main-nav > ul > li > a { padding: 16px 24px; border-bottom: 1px solid var(--line); font-size: 13px; }
    .main-nav > ul > li > a::after { display: none; }
    .main-nav > ul > li.has-mega > a::before { float: right; }
    .mega-menu { position: static; box-shadow: none; border: none; padding: 0; opacity: 1; visibility: visible; transform: none; display: none; background: var(--maroon-50); }
    .main-nav > ul > li.has-mega.active .mega-menu { display: block; }
    .mega-menu-inner { grid-template-columns: 1fr; padding: 10px 20px; gap: 8px; }
    .mega-item { padding: 12px; }

    .btn-contact { margin: 10px 24px; display: inline-block; }
    .mobile-toggle { display: block; }

    .clients-logo-grid { grid-template-columns: repeat(4, 1fr); }
    .services-intro ul { grid-template-columns: 1fr; }

    .page-hero-graphic, .page-hero-graphic-left { display: none; }
}

@media (max-width: 600px) {
    section { padding: 52px 0; }

    .hero-panel { padding: 50px 0 60px; }
    .hero-facts { grid-template-columns: 1fr 1fr; gap: 18px; }
    .hero-actions .btn { flex: 1; text-align: center; }

    .brands-grid,
    .verify-grid,
    .brochures-grid,
    .stats-grid,
    .stats-4,
    .footer-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 26px; }
    .page-hero { padding: 60px 0 50px; }
    .page-hero h1 { font-size: 30px; }

    .top-bar { font-size: 12px; }
    .top-bar .container { flex-direction: column; gap: 6px; }

    .feature-item { grid-template-columns: 1fr; text-align: center; padding: 24px; }
    .feature-icon img { margin: 0 auto; }
    .feature-item:hover { transform: none; }

    .clients-logo-grid { grid-template-columns: repeat(3, 1fr); }
    .benefit-box, .contact-form, .contact-form-box { padding: 30px 24px; }

    .animated-graphic { max-width: 280px; }
}

/* =====================================================
   BANKS & MSBs PANEL — AI methodology + 1999→2026 timeline
   ===================================================== */
.banks-msb {
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at 12% 8%, rgba(122, 29, 45, 0.06), transparent 55%),
        radial-gradient(circle at 92% 92%, rgba(27, 48, 88, 0.06), transparent 55%),
        var(--gradient-cream);
    scroll-margin-top: 96px;
}
.bm-head { max-width: 880px; margin: 0 auto 48px; text-align: center; }
.bm-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800; color: var(--maroon-800);
    margin: 14px 0 14px;
}
.bm-head .gradient-text {
    background: linear-gradient(90deg, var(--maroon-700), var(--navy-700));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bm-head .lead { color: var(--gray-700, #4a4a52); font-size: 16px; line-height: 1.7; }

/* Bank-segment imagery strip */
.bm-banks-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; margin-bottom: 48px;
}
.bm-bank-tile {
    position: relative;
    background: #fff;
    border: 1px solid rgba(122, 29, 45, 0.10);
    border-radius: var(--radius-lg);
    padding: 22px 20px 20px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s, box-shadow .35s, border-color .35s;
}
.bm-bank-tile:hover {
    transform: translateY(-4px);
    border-color: var(--maroon-500);
    box-shadow: var(--shadow-md);
}
.bm-bank-art {
    width: 64px; height: 64px; border-radius: 16px;
    display: grid; place-items: center;
    color: #fff; font-size: 26px;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(58, 10, 20, 0.18);
}
.bm-art-tier1   { background: linear-gradient(135deg, #1b3058, #2a436e); }
.bm-art-comm    { background: linear-gradient(135deg, #7a1d2d, #b73048); }
.bm-art-msb     { background: linear-gradient(135deg, #b8761a, #e6a23c); }
.bm-art-private { background: linear-gradient(135deg, #0e6b4f, #1aa179); }
.bm-bank-tile h5 { font-family: var(--font-serif); font-size: 17px; color: var(--maroon-800); margin: 0 0 6px; }
.bm-bank-tile p  { font-size: 13.5px; color: var(--gray-700, #4a4a52); line-height: 1.55; margin: 0; }

/* AI methodology feature cards */
.bm-feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 64px;
}
.bm-feature {
    background: #fff;
    border: 1px solid rgba(122, 29, 45, 0.10);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s, box-shadow .35s;
}
.bm-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bm-feature h4 { font-family: var(--font-serif); font-size: 18px; color: var(--maroon-800); margin: 0 0 8px; }
.bm-feature p  { font-size: 14px; color: var(--gray-700, #4a4a52); line-height: 1.6; margin: 0; }
.bm-feat-icon {
    width: 50px; height: 50px; border-radius: 14px;
    display: grid; place-items: center;
    color: #fff; font-size: 20px;
    margin-bottom: 14px;
}
.bm-feat-icon.c-blue   { background: linear-gradient(135deg, #1b3058, #2a436e); }
.bm-feat-icon.c-red    { background: linear-gradient(135deg, #7a1d2d, #b73048); }
.bm-feat-icon.c-teal   { background: linear-gradient(135deg, #0a5566, #0e8aa1); }
.bm-feat-icon.c-amber  { background: linear-gradient(135deg, #b8761a, #e6a23c); }
.bm-feat-icon.c-indigo { background: linear-gradient(135deg, #2c1e6b, #4d3aa8); }
.bm-feat-icon.c-green  { background: linear-gradient(135deg, #0e6b4f, #1aa179); }

/* Growth timeline 1999 -> 2026 */
.bm-timeline-wrap {
    margin-top: 28px;
    padding: 44px 32px 36px;
    background: #fff;
    border: 1px solid rgba(122, 29, 45, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}
.bm-tl-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.bm-tl-head h3 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.4vw, 30px); font-weight: 800;
    color: var(--maroon-800); margin: 12px 0 10px;
}
.bm-tl-head .gradient-text {
    background: linear-gradient(90deg, var(--maroon-700), var(--navy-700));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bm-tl-head p { color: var(--gray-700, #4a4a52); font-size: 14.5px; line-height: 1.6; }

.bm-timeline {
    position: relative;
    padding: 60px 8px 0;
    overflow-x: auto;
    overflow-y: visible;
}
.bm-timeline::-webkit-scrollbar { height: 6px; }
.bm-timeline::-webkit-scrollbar-thumb { background: var(--maroon-200); border-radius: 6px; }

.bm-tl-axis {
    position: absolute; left: 0; right: 0; bottom: 178px; height: 2px;
    background: linear-gradient(90deg, var(--maroon-300), var(--maroon-700), var(--navy-700));
    border-radius: 2px;
    pointer-events: none;
}
.bm-tl-track {
    display: flex; gap: 14px;
    min-width: 1080px;
    align-items: flex-end;
    position: relative;
    padding-bottom: 220px;
}
.bm-tl-node {
    flex: 1 1 0;
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    --g: 50%;
}
.bm-tl-bar {
    height: 200px;
    width: 30px;
    display: flex; align-items: flex-end;
    margin-bottom: 0;
    position: relative;
}
.bm-tl-bar::before {
    content: ''; position: absolute; left: 50%; bottom: -8px;
    width: 14px; height: 14px; border-radius: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 3px solid var(--maroon-600);
    box-shadow: 0 0 0 4px rgba(122, 29, 45, 0.15);
    z-index: 2;
}
.bm-tl-bar span {
    width: 100%;
    height: var(--g);
    background: linear-gradient(180deg, var(--maroon-500), var(--maroon-800));
    border-radius: 6px 6px 0 0;
    box-shadow: 0 6px 16px rgba(122, 29, 45, 0.25);
    animation: bmGrow 1.4s ease-out both;
}
.bm-tl-node.bm-tl-now .bm-tl-bar span {
    background: linear-gradient(180deg, var(--navy-600), var(--navy-900));
    box-shadow: 0 6px 16px rgba(27, 48, 88, 0.30);
}
.bm-tl-node.bm-tl-now .bm-tl-bar::before {
    border-color: var(--navy-700);
    box-shadow: 0 0 0 4px rgba(27, 48, 88, 0.18), 0 0 12px var(--navy-600);
    animation: bmPulse 1.8s ease-in-out infinite;
}
@keyframes bmGrow { from { height: 0; } to { height: var(--g); } }
@keyframes bmPulse { 0%,100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.25); } }

.bm-tl-card {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%; transform: translateX(-50%);
    width: 180px;
    text-align: center;
    background: var(--maroon-50, #fdf5f6);
    border: 1px solid rgba(122, 29, 45, 0.14);
    border-radius: var(--radius);
    padding: 12px 12px 14px;
    box-shadow: var(--shadow-xs);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.bm-tl-node:hover .bm-tl-card {
    transform: translateX(-50%) translateY(-4px);
    border-color: var(--maroon-500);
    box-shadow: var(--shadow-md);
}
.bm-tl-year {
    display: inline-block;
    font-family: var(--font-serif); font-weight: 800;
    font-size: 14px; letter-spacing: 0.06em;
    color: #fff;
    background: var(--maroon-700);
    padding: 3px 10px; border-radius: 999px;
    margin-bottom: 8px;
}
.bm-tl-node.bm-tl-now .bm-tl-year {
    background: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(27, 48, 88, 0.18);
}
.bm-tl-card h5 {
    font-family: var(--font-serif); font-size: 13.5px;
    color: var(--maroon-800); margin: 0 0 4px;
    line-height: 1.3;
}
.bm-tl-card p { font-size: 12px; color: var(--gray-700, #4a4a52); line-height: 1.45; margin: 0; }

.bm-tl-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; margin-top: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(122, 29, 45, 0.10);
}
.bm-stat { text-align: center; }
.bm-stat .num {
    display: block;
    font-family: var(--font-serif); font-size: 32px; font-weight: 800;
    background: linear-gradient(90deg, var(--maroon-700), var(--navy-700));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.bm-stat .lbl {
    display: block; margin-top: 6px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gray-600, #6b6b75);
}

@media (max-width: 980px) {
    .bm-banks-strip { grid-template-columns: repeat(2, 1fr); }
    .bm-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .bm-tl-stats { grid-template-columns: repeat(2, 1fr); }
    .bm-timeline-wrap { padding: 32px 18px 28px; }
}
@media (max-width: 600px) {
    .bm-banks-strip { grid-template-columns: 1fr; }
    .bm-feature-grid { grid-template-columns: 1fr; }
    .bm-tl-card { width: 150px; }
    .bm-tl-track { min-width: 900px; gap: 10px; }
}

/* ============================================================
   How It Pays Back — clean twin lists with iconified rows
   ============================================================ */
.benefits-clean {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
}
.bc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.bc-col {
  position: relative;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 18, 48, .05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.bc-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 18, 48, .12);
}
.bc-col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}
.bc-left::before  { background: linear-gradient(90deg, #1668c1, #4ea8e0); }
.bc-right::before { background: linear-gradient(90deg, #b3091a, #fb7185); }

.bc-col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.bc-col-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.bc-left  .bc-col-icon { background: linear-gradient(135deg, #1668c1, #2a82d8); box-shadow: 0 8px 20px rgba(22, 104, 193, .35); }
.bc-right .bc-col-icon { background: linear-gradient(135deg, #b3091a, #d63347); box-shadow: 0 8px 20px rgba(179, 9, 26, .35); }
.bc-col-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -.005em;
}

.bc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bc-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 8px 0;
  transition: transform .25s ease;
}
.bc-list li:hover { transform: translateX(4px); }
.bc-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 2px;
}
.bc-left  .bc-icon { background: rgba(22, 104, 193, .1); color: #1668c1; }
.bc-right .bc-icon { background: rgba(179, 9, 26, .1);  color: #b3091a; }
.bc-list li strong {
  display: block;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 3px;
}
.bc-list li span {
  display: block;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--gray-700);
}

@media (max-width: 880px) {
  .bc-grid { grid-template-columns: 1fr; max-width: 540px; }
  .bc-col { padding: 22px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .bc-col, .bc-list li { transition: none; }
}

/* ============================================================
   How It Pays Back — LEGACY graphic-only twin panels
   ============================================================ */
.benefits-visual { background: linear-gradient(180deg, #f7f7fa 0%, #ffffff 100%); }
.bv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.bv-card {
  position: relative;
  padding: 36px 32px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 18, 48, .06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.bv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(15, 18, 48, .12);
}
.bv-left { background: linear-gradient(160deg, #ffffff 0%, #eff6ff 100%); border-color: rgba(22, 104, 193, .25); }
.bv-right { background: linear-gradient(160deg, #ffffff 0%, #fef2f2 100%); border-color: rgba(179, 9, 26, .25); }

.bv-art {
  position: relative;
  height: 240px;
  margin-bottom: 22px;
}
.bv-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.bv-card p {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
}

/* ── LEFT: open box with 6 modules cascading out ── */
.bv-box {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 90px;
}
.bv-box-icon {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 72px;
  background: linear-gradient(135deg, #1668c1, #4ea8e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 14px rgba(22, 104, 193, .35));
  animation: bvBoxBob 3.5s ease-in-out infinite;
}
.bv-box-flap, .bv-box-body, .bv-box-base { display: none; }
@keyframes bvBoxBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.bv-mod {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: #fff;
  border: 1.5px solid var(--mc, var(--red-600));
  color: var(--mc, var(--red-600));
  font-size: 15px;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--mc, #b3091a) 25%, transparent);
  opacity: 0;
  transform: translate(-50%, 0) scale(.4);
  left: 50%; bottom: 60px;
  animation: bvModFly 4s cubic-bezier(.22,.61,.36,1) infinite;
}
.bv-mod.m1 { animation-delay: 0s;    --x: -90px;  --y: -110px; --r: -12deg; }
.bv-mod.m2 { animation-delay: -.6s;  --x: -55px;  --y: -150px; --r: -6deg;  }
.bv-mod.m3 { animation-delay: -1.2s; --x: -15px;  --y: -170px; --r: 0deg;   }
.bv-mod.m4 { animation-delay: -1.8s; --x: 30px;   --y: -160px; --r: 6deg;   }
.bv-mod.m5 { animation-delay: -2.4s; --x: 70px;   --y: -130px; --r: 12deg;  }
.bv-mod.m6 { animation-delay: -3.0s; --x: 100px;  --y: -90px;  --r: 18deg;  }
@keyframes bvModFly {
  0%   { opacity: 0; transform: translate(-50%, 0) scale(.4) rotate(0); }
  20%  { opacity: 1; transform: translate(calc(-50% + var(--x)), var(--y)) scale(1) rotate(var(--r)); }
  85%  { opacity: 1; transform: translate(calc(-50% + var(--x)), var(--y)) scale(1) rotate(var(--r)); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--x)), calc(var(--y) - 20px)) scale(.8) rotate(var(--r)); }
}

/* ── RIGHT: trophy with orbiting badges ── */
.bv-glow {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.bv-glow.g1 { width: 100px; height: 100px; border-color: rgba(179, 9, 26, .5);  animation: bvGlowPulse 3s ease-out infinite; }
.bv-glow.g2 { width: 100px; height: 100px; border-color: rgba(179, 9, 26, .35); animation: bvGlowPulse 3s ease-out infinite -1s; }
.bv-glow.g3 { width: 100px; height: 100px; border-color: rgba(179, 9, 26, .25); animation: bvGlowPulse 3s ease-out infinite -2s; }
@keyframes bvGlowPulse { 0% { transform: translate(-50%, -50%) scale(.4); opacity: .9; } 100% { transform: translate(-50%, -50%) scale(2); opacity: 0; } }

.bv-trophy {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fca5a5, #b3091a);
  display: grid; place-items: center;
  font-size: 38px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(179, 9, 26, .45);
  animation: bvTrophyBob 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes bvTrophyBob { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 6px)); } }

.bv-badge {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--red-600);
  color: var(--red-600);
  display: grid; place-items: center;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(179, 9, 26, .25);
  top: 50%; left: 50%;
  animation: bvBadgeOrbit 8s linear infinite;
}
.bv-badge.b1 { animation-delay: 0s;    }
.bv-badge.b2 { animation-delay: -1.6s; }
.bv-badge.b3 { animation-delay: -3.2s; }
.bv-badge.b4 { animation-delay: -4.8s; }
.bv-badge.b5 { animation-delay: -6.4s; }
@keyframes bvBadgeOrbit {
  0%   { transform: translate(-50%, -50%) rotate(0deg) translateX(90px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(90px) rotate(-360deg); }
}

@media (max-width: 880px) {
  .bv-grid { grid-template-columns: 1fr; max-width: 480px; }
  .bv-art { height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  .bv-box-icon, .bv-mod, .bv-glow, .bv-trophy, .bv-badge { animation: none; }
  .bv-mod { opacity: 1; transform: translate(calc(-50% + var(--x)), var(--y)) scale(1) rotate(var(--r)); }
}

/* ============================================================
   Six Pillars — animated pipeline (names only, flowing left → right)
   ============================================================ */
.pillars-pipe {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
  position: relative;
  overflow: hidden;
}
.pp-pipeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 0;
}
.pp-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 130px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1.5px solid rgba(179, 9, 26, .25);
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy-900);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 18, 48, .05);
  animation: ppNodeWave 6s ease-in-out infinite;
  transition: transform .25s ease;
}
.pp-node::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-600), #fb7185);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  opacity: .6;
}
.pp-node:nth-of-type(1) { animation-delay: 0s;   }
.pp-node:nth-of-type(2) { animation-delay: .8s;  }
.pp-node:nth-of-type(3) { animation-delay: 1.6s; }
.pp-node:nth-of-type(4) { animation-delay: 2.4s; }
.pp-node:nth-of-type(5) { animation-delay: 3.2s; }
.pp-node:nth-of-type(6) { animation-delay: 4.0s; }
@keyframes ppNodeWave {
  0%, 100% {
    border-color: rgba(179, 9, 26, .25);
    box-shadow: 0 4px 12px rgba(15, 18, 48, .05);
    transform: translateY(0);
  }
  8%, 14% {
    border-color: var(--red-600);
    box-shadow: 0 12px 28px rgba(179, 9, 26, .35), 0 0 0 4px rgba(179, 9, 26, .1);
    transform: translateY(-4px);
  }
}
.pp-node:hover {
  transform: translateY(-4px);
  border-color: var(--red-600);
  box-shadow: 0 14px 30px rgba(179, 9, 26, .25);
}

.pp-step {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .6rem;
  letter-spacing: .16em;
  color: var(--red-700);
  text-transform: uppercase;
}
.pp-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy-900);
  letter-spacing: -.005em;
  line-height: 1.25;
  max-width: 130px;
}

.pp-connector {
  position: relative;
  align-self: center;
  flex: 0 1 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(179, 9, 26, .35), rgba(22, 104, 193, .35));
  margin: 0 2px;
}
.pp-connector::after {
  /* Arrow tip on the right */
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(22, 104, 193, .55);
}
.pp-pulse {
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fb7185;
  box-shadow: 0 0 8px #fb7185;
  transform: translate(0, -50%);
  animation: ppPulseFlow 2.4s linear infinite;
}
.pp-connector:nth-of-type(3)  .pp-pulse { animation-delay: -.4s; background: #22d3ee; box-shadow: 0 0 8px #22d3ee; }
.pp-connector:nth-of-type(5)  .pp-pulse { animation-delay: -.8s; background: #fcd34d; box-shadow: 0 0 8px #fcd34d; }
.pp-connector:nth-of-type(7)  .pp-pulse { animation-delay: -1.2s; background: #86efac; box-shadow: 0 0 8px #86efac; }
.pp-connector:nth-of-type(9)  .pp-pulse { animation-delay: -1.6s; background: #c084fc; box-shadow: 0 0 8px #c084fc; }
.pp-connector:nth-of-type(11) .pp-pulse { animation-delay: -2.0s; background: #67e8f9; box-shadow: 0 0 8px #67e8f9; }
@keyframes ppPulseFlow {
  0%   { left: 0;    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@media (max-width: 1100px) {
  .pp-pipeline { gap: 8px; }
  .pp-node { min-width: 110px; padding: 14px 12px 12px; }
  .pp-name { font-size: .78rem; }
}
@media (max-width: 880px) {
  /* Pipeline switches to vertical with downward arrows */
  .pp-pipeline { flex-direction: column; align-items: center; max-width: 320px; }
  .pp-node { width: 100%; min-width: 0; }
  .pp-connector {
    flex: 0 0 28px;
    width: 2px; height: 28px;
    background: linear-gradient(180deg, rgba(179, 9, 26, .35), rgba(22, 104, 193, .35));
    margin: 0;
  }
  .pp-connector::after {
    right: 50%;
    top: auto; bottom: -1px;
    transform: translateX(50%);
    border: 5px solid transparent;
    border-top-color: rgba(22, 104, 193, .55);
    border-left-color: transparent;
  }
  .pp-pulse {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    animation: ppPulseFlowV 2.4s linear infinite;
  }
  @keyframes ppPulseFlowV {
    0%   { top: 0;    opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .pp-node, .pp-pulse { animation: none; }
}

/* ============================================================
   Six Pillars — dark themed image cards (LEGACY)
   ============================================================ */
.pillars-dark {
  background: #0a0a0a;
  position: relative;
}
.pillars-dark .section-head h2,
.pillars-dark .section-head h2 * { color: #fff; }
.pillars-dark .section-head p { color: rgba(255, 255, 255, .65); }

.pd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pd-card {
  display: flex;
  flex-direction: column;
  background: #0f0f10;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.pd-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 211, 77, .55);
  box-shadow: 0 18px 38px rgba(179, 9, 26, .35);
}

/* Top image area — themed dark-red gradient + decorative icon + yellow tag */
.pd-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgba(252, 165, 165, .25), transparent 55%),
    linear-gradient(135deg, #5c0a0a 0%, #b3091a 45%, #2a0408 100%);
  overflow: hidden;
}
.pd-image::before {
  /* Subtle grid texture suggesting a chart/screen */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.pd-image::after {
  /* Soft vignette so the tag text stays readable */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, transparent 50%, rgba(0, 0, 0, .35) 100%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
}
.pd-img-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 78px;
  color: rgba(252, 165, 165, .35);
  filter: drop-shadow(0 0 18px rgba(252, 165, 165, .25));
  z-index: 1;
  transition: transform .4s ease, color .4s ease;
}
.pd-card:hover .pd-img-icon {
  transform: translate(-50%, -50%) scale(1.08);
  color: rgba(252, 211, 77, .55);
}
/* Yellow corner tag, bottom-left */
.pd-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  color: #fcd34d;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
}
.pd-tag-sub {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-top: 4px;
  opacity: .92;
}

/* Body area: white text on dark, title, description, button */
.pd-body {
  padding: 22px 22px 20px;
  text-align: center;
  background: #0f0f10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.pd-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin: 0;
  letter-spacing: .04em;
  line-height: 1.2;
}
.pd-body p {
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .65);
  margin: 0;
  flex: 1;
}
.pd-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  background: #ffffff;
  color: #1a1f3a;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .02em;
  margin-top: 4px;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.pd-more i { font-size: 10px; transition: transform .25s ease; }
.pd-card:hover .pd-more {
  background: #fcd34d;
  color: #1a1f3a;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(252, 211, 77, .35);
}
.pd-card:hover .pd-more i { transform: translateX(4px); }

@media (max-width: 980px) {
  .pd-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pd-grid { grid-template-columns: 1fr; max-width: 380px; }
}
@media (prefers-reduced-motion: reduce) {
  .pd-card, .pd-img-icon, .pd-more { transition: none; }
}

/* ============================================================
   Six Pillars — modern animated tiles (LEGACY — replaced)
   ============================================================ */
.pillars-modern {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
}
/* Ambient gradient orbs */
.pm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: .55;
}
.pm-orb.o1 { width: 360px; height: 360px; top: -100px; left: -100px;  background: radial-gradient(circle, rgba(179, 9, 26, .22), transparent 65%); animation: pmOrbDriftA 18s ease-in-out infinite alternate; }
.pm-orb.o2 { width: 420px; height: 420px; top: 40%;    right: -140px; background: radial-gradient(circle, rgba(22, 104, 193, .2),  transparent 65%); animation: pmOrbDriftB 22s ease-in-out infinite alternate; }
.pm-orb.o3 { width: 300px; height: 300px; bottom: -80px; left: 28%;    background: radial-gradient(circle, rgba(124, 58, 237, .18), transparent 65%); animation: pmOrbDriftC 20s ease-in-out infinite alternate; }
@keyframes pmOrbDriftA { from { transform: translate(0,0); } to { transform: translate(40px,30px); } }
@keyframes pmOrbDriftB { from { transform: translate(0,0); } to { transform: translate(-30px,40px); } }
@keyframes pmOrbDriftC { from { transform: translate(0,0); } to { transform: translate(35px,-30px); } }
/* Subtle dot-grid backdrop */
.pm-grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15, 18, 48, .08) 1px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, #000 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, #000 50%, transparent 80%);
  pointer-events: none;
  opacity: .55;
}

/* 6-tile grid */
.pm-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.pm-tile {
  position: relative;
  display: block;
  padding: 24px 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(15, 18, 48, .05);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease, box-shadow .35s ease;
}
.pm-tile::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pmc, var(--red-600)), var(--pmc2, #fb7185));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.pm-tile:hover {
  transform: translateY(-6px);
  border-color: var(--pmc, rgba(179, 9, 26, .35));
  box-shadow: 0 22px 44px rgba(15, 18, 48, .12);
}
.pm-tile:hover::before { transform: scaleX(1); }

.pm-1 { --pmc: #b3091a; --pmc2: #fb7185; }
.pm-2 { --pmc: #1668c1; --pmc2: #22d3ee; }
.pm-3 { --pmc: #f59e0b; --pmc2: #fcd34d; }
.pm-4 { --pmc: #16a34a; --pmc2: #86efac; }
.pm-5 { --pmc: #7c3aed; --pmc2: #c084fc; }
.pm-6 { --pmc: #0891b2; --pmc2: #67e8f9; }

.pm-num {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .16em;
  color: var(--pmc, var(--red-700));
}
.pm-live {
  position: absolute;
  top: 22px; right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .35);
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .58rem;
  letter-spacing: .14em;
  color: #16a34a;
}
.pm-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 6px #16a34a;
  animation: pmLiveBlink 1.5s ease-in-out infinite;
}
@keyframes pmLiveBlink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* Per-tile mini graphic area */
.pm-art {
  position: relative;
  height: 70px;
  margin: 18px 0 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--pmc) 7%, transparent), color-mix(in srgb, var(--pmc2) 5%, transparent));
  overflow: hidden;
  color: var(--pmc);
}

/* — TMS: animated sparkline — */
.pm-art svg { width: 100%; height: 100%; display: block; }
.pm-art-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: pmLineDraw 2.4s cubic-bezier(.22,.61,.36,1) forwards 0.3s;
}
.pm-art-dot {
  fill: var(--pmc);
  filter: drop-shadow(0 0 4px var(--pmc));
  opacity: 0;
  animation: pmDotPop 0.4s ease-out forwards 2.4s, pmDotPulse 2s ease-in-out infinite 2.4s;
}
@keyframes pmLineDraw { to { stroke-dashoffset: 0; } }
@keyframes pmDotPop   { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
@keyframes pmDotPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }

/* — Screening: radar sweep — */
.pm-art-radar {
  display: grid; place-items: center;
}
.pm-radar-ring {
  position: absolute;
  width: 56px; height: 56px;
  border: 1.5px solid color-mix(in srgb, var(--pmc) 50%, transparent);
  border-radius: 50%;
  animation: pmRadarPulse 2.4s ease-out infinite;
}
.pm-radar-ring.r2 { animation-delay: -1.2s; }
@keyframes pmRadarPulse { 0% { transform: scale(.5); opacity: .8; } 100% { transform: scale(1.3); opacity: 0; } }
.pm-radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 0deg, transparent 290deg, color-mix(in srgb, var(--pmc) 50%, transparent) 350deg, transparent 360deg);
  border-radius: 50%;
  animation: pmRadarSpin 3s linear infinite;
}
@keyframes pmRadarSpin { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.pm-radar-blip {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pmc);
  box-shadow: 0 0 8px var(--pmc);
  animation: pmBlipBlink 3s ease-in-out infinite;
}
.pm-radar-blip.b1 { top: 30%; left: 38%; animation-delay: -.5s; }
.pm-radar-blip.b2 { top: 55%; left: 60%; animation-delay: -1.4s; }
.pm-radar-blip.b3 { top: 42%; left: 70%; animation-delay: -2.3s; }
@keyframes pmBlipBlink { 0%, 60% { opacity: 0; transform: scale(.5); } 70%, 85% { opacity: 1; transform: scale(1.4); } 100% { opacity: 0; } }

/* — Risk: animated bars rising — */
.pm-art-bars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 0;
  height: 70px;
}
.pm-bar {
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--pmc), var(--pmc2));
  transform-origin: bottom;
  animation: pmBarRise 1.4s cubic-bezier(.22,.61,.36,1) forwards;
}
.pm-bar.b1 { height: 24px; animation-delay: .2s; transform: scaleY(0); }
.pm-bar.b2 { height: 36px; animation-delay: .35s; transform: scaleY(0); }
.pm-bar.b3 { height: 48px; animation-delay: .5s; transform: scaleY(0); }
.pm-bar.b4 { height: 30px; animation-delay: .65s; transform: scaleY(0); }
.pm-bar.b5 { height: 42px; animation-delay: .8s; transform: scaleY(0); }
@keyframes pmBarRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* — MSB Core: 3-node flow — */
.pm-art-flow {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 20px;
}
.pm-flow-node {
  position: relative;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pmc);
  box-shadow: 0 0 10px color-mix(in srgb, var(--pmc) 55%, transparent);
  animation: pmFlowPulse 2.4s ease-in-out infinite;
}
.pm-flow-node.n2 { animation-delay: -.8s; }
.pm-flow-node.n3 { animation-delay: -1.6s; }
@keyframes pmFlowPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.pm-flow-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pmc), transparent);
  background-size: 200% 100%;
  animation: pmFlowFlow 2s linear infinite;
}
@keyframes pmFlowFlow { from { background-position: 100% 0; } to { background-position: -100% 0; } }

/* — Reporting: document with checkmark — */
.pm-art-doc {
  display: grid;
  place-items: center;
  padding: 8px;
}
.pm-doc {
  position: relative;
  width: 36px; height: 50px;
  background: #fff;
  border: 1.5px solid var(--pmc);
  border-radius: 4px;
  animation: pmDocBob 3s ease-in-out infinite;
}
@keyframes pmDocBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.pm-doc-line {
  position: absolute;
  left: 6px;
  height: 2px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--pmc) 30%, transparent);
}
.pm-doc-line.l1 { top: 22%; width: 24px; }
.pm-doc-line.l2 { top: 38%; width: 18px; }
.pm-doc-line.l3 { top: 54%; width: 22px; }
.pm-doc-check {
  position: absolute;
  bottom: -6px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pmc);
  color: #fff;
  display: grid; place-items: center;
  font-size: 11px;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--pmc) 55%, transparent);
  animation: pmCheckPop 0.5s cubic-bezier(.34,1.56,.64,1) forwards 1.2s;
  transform: scale(0);
}
@keyframes pmCheckPop { to { transform: scale(1); } }
.pm-doc-check { animation-iteration-count: infinite; animation-duration: 3s; animation-name: pmCheckCycle; }
@keyframes pmCheckCycle {
  0%, 30% { transform: scale(0); opacity: 0; }
  40%     { transform: scale(1.3); opacity: 1; }
  50%, 90% { transform: scale(1); opacity: 1; }
  100%    { transform: scale(0); opacity: 0; }
}
.pm-doc { position: relative; }
.pm-art-doc { position: relative; }
.pm-art-doc .pm-doc { position: relative; }

/* — Case Manager: stacked cards — */
.pm-art-cases {
  position: relative;
  display: grid; place-items: center;
}
.pm-case {
  position: absolute;
  width: 60px; height: 36px;
  background: #fff;
  border: 1.5px solid var(--pmc);
  border-radius: 4px;
  box-shadow: 0 2px 6px color-mix(in srgb, var(--pmc) 20%, transparent);
}
.pm-case.c1 { transform: translate(-12px, -6px) rotate(-6deg); animation: pmCase1 3s ease-in-out infinite; }
.pm-case.c2 { z-index: 2; animation: pmCase2 3s ease-in-out infinite; }
.pm-case.c3 { transform: translate(12px, 6px) rotate(6deg); animation: pmCase3 3s ease-in-out infinite; }
@keyframes pmCase1 { 0%, 100% { transform: translate(-12px, -6px) rotate(-6deg); } 50% { transform: translate(-16px, -8px) rotate(-9deg); } }
@keyframes pmCase2 { 0%, 100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(0,-3px) scale(1.05); } }
@keyframes pmCase3 { 0%, 100% { transform: translate(12px, 6px) rotate(6deg); } 50% { transform: translate(16px, 8px) rotate(9deg); } }

/* Tile typography */
.pm-tile h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--navy-900);
  letter-spacing: -.005em;
}
.pm-tile p {
  font-size: .86rem;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0 0 12px;
}
.pm-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--pmc) 10%, transparent);
  color: var(--pmc);
  font-size: 13px;
  transition: transform .3s ease, background .3s ease;
}
.pm-tile:hover .pm-arrow {
  background: var(--pmc);
  color: #fff;
  transform: translateX(6px);
}

@media (max-width: 980px) { .pm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pm-grid { grid-template-columns: 1fr; max-width: 440px; } }
@media (prefers-reduced-motion: reduce) {
  .pm-orb, .pm-art-line, .pm-art-dot, .pm-radar-ring, .pm-radar-sweep, .pm-radar-blip,
  .pm-bar, .pm-flow-node, .pm-flow-line, .pm-doc, .pm-doc-check, .pm-case, .pm-live-dot { animation: none; }
  .pm-bar { transform: scaleY(1); }
  .pm-art-line { stroke-dashoffset: 0; }
  .pm-art-dot { opacity: 1; }
}


/* ============================================================
   Certified & Aligned — dedicated trust/credentials panel
   ============================================================ */
.certs-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-50, #f7f7f8) 100%);
}
.certs-section .section-title,
.certs-section .section-intro { text-align: center; }
.certs-section .section-intro { max-width: 640px; margin: 0 auto 36px; }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15, 18, 48, .05);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.cert-badge::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cb-color, var(--blue-700)), var(--cb-color2, var(--blue-500)));
}
.cert-badge:hover {
  transform: translateY(-4px);
  border-color: var(--cb-color, rgba(22, 104, 193, .35));
  box-shadow: 0 18px 38px rgba(15, 18, 48, .1);
}
.cb-icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cb-color, var(--blue-700)), var(--cb-color2, var(--blue-500)));
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px var(--cb-shadow, rgba(22, 104, 193, .25));
}
.cb-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.cb-prefix {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--cb-color, var(--blue-700));
  text-transform: uppercase;
}
.cb-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.01em;
  color: var(--navy-900);
  line-height: 1;
  margin-top: 2px;
}
.cb-label {
  font-size: .72rem;
  color: var(--gray-700);
  margin-top: 6px;
  line-height: 1.3;
}

/* GDPR — green */
.cert-badge.cb-gdpr {
  --cb-color: #15803d;
  --cb-color2: #22c55e;
  --cb-shadow: rgba(22, 163, 74, .25);
}
/* PCI DSS — slate */
.cert-badge.cb-pci {
  --cb-color: #334155;
  --cb-color2: #64748b;
  --cb-shadow: rgba(51, 65, 85, .25);
}
/* PEPPOL — purple */
.cert-badge.cb-peppol {
  --cb-color: #7c3aed;
  --cb-color2: #a855f7;
  --cb-shadow: rgba(124, 58, 237, .25);
}

@media (max-width: 980px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .certs-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ============================================================
   Our Products — associates strip of product logos
   ============================================================ */
.products-section { background: #fff; }
.products-section .section-title,
.products-section .section-intro { text-align: center; }
.products-section .section-intro { max-width: 720px; margin: 0 auto 32px; }
.products-grad {
  background: linear-gradient(135deg, var(--red-600), #fb7185);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.associates-strip {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px;
  background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15, 18, 48, .04);
}
.associate-item {
  display: grid;
  place-items: center;
  padding: 14px 10px;
  background: #fff;
  border: 1px solid rgba(15, 18, 48, .06);
  border-radius: 10px;
  height: 76px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.associate-item:hover {
  transform: translateY(-3px);
  border-color: rgba(179, 9, 26, .25);
  box-shadow: 0 10px 22px rgba(179, 9, 26, .12);
}
.associate-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(35%);
  opacity: .85;
  transition: filter .25s ease, opacity .25s ease;
}
.associate-item:hover img { filter: grayscale(0); opacity: 1; }
@media (max-width: 1024px) { .associates-strip { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 640px)  { .associates-strip { grid-template-columns: repeat(3, 1fr); padding: 14px; } }
@media (max-width: 420px)  { .associates-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Resources — Brochures & product sheets (downloadable cards)
   ============================================================ */
.brochures-section {
  background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
}
.brochures-section .section-title,
.brochures-section .section-intro { text-align: center; }
.brochures-section .section-intro { max-width: 720px; margin: 0 auto 36px; }
.brochures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.brochure-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(15, 18, 48, .06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.brochure-card:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 9, 26, .35);
  box-shadow: 0 18px 38px rgba(179, 9, 26, .12);
}
.brochure-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f7f7f8, #e7e9ee);
  overflow: hidden;
}
.brochure-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.brochure-card:hover .brochure-thumb img { transform: scale(1.04); }
.brochure-body {
  padding: 18px 20px 20px;
}
.brochure-body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--navy-900);
  letter-spacing: -.005em;
}
.brochure-body p {
  font-size: .86rem;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0 0 12px;
}
.brochure-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  color: var(--red-700);
  letter-spacing: .02em;
}
.brochure-cta i { font-size: 11px; }
.brochure-card:hover .brochure-cta { color: var(--blue-700); }
@media (max-width: 880px) { .brochures-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .brochures-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ============================================================
   Footer — Certified & aligned chip row (ISO + standards)
   ============================================================ */
.cc-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255, 255, 255, .12);
}
/* Light-background variant — used in dedicated page panels (not footer) */
.certs-row-section { background: linear-gradient(180deg, #ffffff 0%, var(--gray-50, #f7f7f8) 100%); }
.certs-row-section .section-title,
.certs-row-section .section-intro { text-align: center; }
.certs-row-section .section-intro { max-width: 640px; margin: 0 auto 28px; }
.cc-certs.cc-certs-on-light {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  gap: 14px;
}
.cc-certs.cc-certs-on-light .cc-cert {
  background: #ffffff;
  border: 1px solid rgba(22, 104, 193, .35);
  box-shadow: 0 4px 12px rgba(15, 18, 48, .05);
  padding: 8px 16px;
  height: 38px;
}
.cc-certs.cc-certs-on-light .cc-cert:hover {
  background: rgba(96, 165, 250, .08);
  border-color: #1668c1;
  box-shadow: 0 8px 16px rgba(22, 104, 193, .2);
}
.cc-certs.cc-certs-on-light .cc-cert-prefix { color: #1668c1; font-size: .78rem; }
.cc-certs.cc-certs-on-light .cc-cert-num { color: var(--navy-900); font-size: .78rem; }
.cc-certs.cc-certs-on-light .cc-cert.cc-cert-gdpr { border-color: rgba(16, 185, 129, .4); }
.cc-certs.cc-certs-on-light .cc-cert.cc-cert-gdpr .cc-cert-prefix { color: #15803d; }
.cc-certs.cc-certs-on-light .cc-cert.cc-cert-gdpr:hover { background: rgba(16, 185, 129, .08); border-color: #10b981; box-shadow: 0 8px 16px rgba(16, 185, 129, .2); }
.cc-certs.cc-certs-on-light .cc-cert.cc-cert-peppol { border-color: rgba(176, 38, 255, .4); }
.cc-certs.cc-certs-on-light .cc-cert.cc-cert-peppol .cc-cert-prefix { color: #7c3aed; }
.cc-certs.cc-certs-on-light .cc-cert.cc-cert-peppol:hover { background: rgba(176, 38, 255, .08); border-color: #b026ff; box-shadow: 0 8px 16px rgba(176, 38, 255, .2); }
.cc-certs-label {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .55);
  margin-right: 4px;
  line-height: 1;
}
.cc-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(96, 165, 250, .12);
  border: 1px solid rgba(96, 165, 250, .35);
  border-radius: 999px;
  padding: 6px 14px;
  text-decoration: none;
  height: 30px;
  box-sizing: border-box;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.cc-cert:hover {
  background: rgba(96, 165, 250, .22);
  border-color: #60a5fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(96, 165, 250, .22);
}
.cc-cert-prefix {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  color: #93c5fd;
  letter-spacing: .06em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.cc-cert-num {
  font-family: 'JetBrains Mono', monospace, ui-monospace;
  font-weight: 600;
  font-size: .68rem;
  color: rgba(255, 255, 255, .92);
  letter-spacing: .02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
/* Variant tints */
.cc-cert.cc-cert-gdpr {
  background: rgba(16, 185, 129, .1);
  border-color: rgba(16, 185, 129, .35);
}
.cc-cert.cc-cert-gdpr .cc-cert-prefix { color: #6ee7b7; }
.cc-cert.cc-cert-gdpr:hover {
  background: rgba(16, 185, 129, .2);
  border-color: #10b981;
  box-shadow: 0 4px 10px rgba(16, 185, 129, .22);
}
.cc-cert.cc-cert-peppol {
  background: rgba(176, 38, 255, .12);
  border-color: rgba(176, 38, 255, .38);
}
.cc-cert.cc-cert-peppol .cc-cert-prefix { color: #c595ff; }
.cc-cert.cc-cert-peppol:hover {
  background: rgba(176, 38, 255, .24);
  border-color: #b026ff;
  box-shadow: 0 4px 10px rgba(176, 38, 255, .28);
}
@media (max-width: 540px) {
  .cc-cert { padding: 4px 10px; }
  .cc-cert-prefix, .cc-cert-num { font-size: .62rem; }
  .cc-certs-label { font-size: .64rem; }
}

/* ============================================================
   Company page — What We Stand For (dark gradient panel)
   ============================================================ */
.stand-section {
  background: linear-gradient(180deg, var(--gray-50, #f7f7f8) 0%, #ffffff 100%);
}
.stand-panel {
  position: relative;
  background: linear-gradient(135deg, #0F1230 0%, #1B1B7F 60%, #2d2480 100%);
  border-radius: 22px;
  padding: 44px 48px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 18, 48, .35), 0 0 0 1px rgba(124, 58, 237, .18);
}
.stand-panel-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 12% 8%, rgba(34, 211, 238, .20), transparent 55%),
    radial-gradient(600px 320px at 88% 92%, rgba(124, 58, 237, .25), transparent 55%);
  pointer-events: none;
}
.stand-panel::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b3091a, #22d3ee, #7c3aed, transparent);
  background-size: 200% 100%;
  animation: standShimmer 8s linear infinite;
}
@keyframes standShimmer { from { background-position: 0 0; } to { background-position: 200% 0; } }

.stand-panel-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
  color: #fff;
}

/* ---- Left: copy ---- */
.stand-copy { min-width: 0; }
.stand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(239, 68, 68, .14);
  color: #fca5a5;
  border: 1px solid rgba(252, 165, 165, .5);
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.stand-pill i { font-size: 10px; }
.stand-copy h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 14px;
}
.stand-lede {
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
  margin: 0 0 18px;
  max-width: 560px;
}
.stand-lede b, .stand-lede strong { color: #fff; font-weight: 700; }
.stand-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.stand-checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
}
.stand-checks li i {
  color: #fca5a5;
  font-size: 14px;
  margin-top: 4px;
  filter: drop-shadow(0 0 4px rgba(252, 165, 165, .5));
}
.stand-checks li b {
  color: #fff;
  font-weight: 700;
}
.stand-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #fff;
  color: #1B1B7F;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .86rem;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stand-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(239, 68, 68, .35);
  color: var(--red-700);
}
.stand-cta i { color: var(--red-600); font-size: 13px; }

/* ---- Right: glowing shield badge + chips ---- */
.stand-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.sg-ring {
  position: relative;
  width: 220px; height: 220px;
  border-radius: 50%;
}
.sg-ring-dashed {
  border: 1.5px dashed rgba(252, 165, 165, .65);
  margin: 0 auto;
  display: grid;
  place-items: center;
  animation: sgRingSpin 50s linear infinite;
}
@keyframes sgRingSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.sg-ring-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 220px;
  background: radial-gradient(circle at center, rgba(239, 68, 68, .35) 0%, rgba(179, 9, 26, .12) 40%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  animation: sgGlowPulse 3s ease-in-out infinite;
}
@keyframes sgGlowPulse {
  0%, 100% { opacity: .8; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;  transform: translateX(-50%) scale(1.06); }
}
.sg-shield {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  display: grid;
  place-items: center;
  z-index: 2;
  animation: sgShieldBob 3.6s ease-in-out infinite;
}
.sg-shield svg { width: 100%; height: 100%; }
@keyframes sgShieldBob {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -52%) scale(1.04); }
}
.sg-badge-text {
  position: absolute;
  top: 64%; left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
  pointer-events: none;
}
.sg-badge-tag {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
}
.sg-badge-sub {
  display: block;
  font-size: .62rem;
  letter-spacing: .18em;
  color: #fca5a5;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 700;
}
.sg-chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
  max-width: 340px;
}
.sg-chips span {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .64rem;
  color: rgba(255, 255, 255, .92);
  letter-spacing: .04em;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, transform .2s;
}
.sg-chips span:hover {
  background: rgba(239, 68, 68, .2);
  border-color: rgba(252, 165, 165, .55);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .stand-panel { padding: 32px 28px; }
  .stand-panel-grid { grid-template-columns: 1fr; gap: 36px; }
  .stand-graphic { order: -1; }
}
@media (max-width: 540px) {
  .stand-panel { padding: 26px 20px; border-radius: 16px; }
  .sg-ring, .sg-ring-glow { width: 180px; height: 180px; }
  .sg-shield { width: 90px; height: 90px; }
  .stand-copy h2 { font-size: 1.3rem; }
  .stand-cta { padding: 11px 16px; font-size: .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .stand-panel::after, .sg-ring-dashed, .sg-ring-glow, .sg-shield { animation: none; }
}

/* ============================================================
   Company page — Pillars, Stats, Bureaux (revamp panels)
   ============================================================ */
.eyebrow-center {
  display: block;
  text-align: center;
  margin: 0 auto 8px;
}

/* --- Pillars: 3 large hero cards --- */
.pillars-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%);
}
.pillars-section .section-title,
.pillars-section .section-intro { text-align: center; }
.pillars-section .section-intro { max-width: 640px; margin: 0 auto 36px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.pillar-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px 26px;
  box-shadow: 0 10px 28px rgba(15, 18, 48, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red-600), var(--red-400));
}
.pillar-card.p2::before { background: linear-gradient(90deg, var(--blue-500), var(--blue-700)); }
.pillar-card.p3::before { background: linear-gradient(90deg, #7c3aed, #c084fc); }
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 9, 26, .25);
  box-shadow: 0 18px 38px rgba(15, 18, 48, .1);
}
.pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px rgba(179, 9, 26, .28);
}
.pillar-card.p2 .pillar-icon { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); box-shadow: 0 8px 22px rgba(22, 104, 193, .28); }
.pillar-card.p3 .pillar-icon { background: linear-gradient(135deg, #7c3aed, #c084fc); box-shadow: 0 8px 22px rgba(124, 58, 237, .28); }
.pillar-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--navy-900);
  letter-spacing: -.005em;
}
.pillar-card p {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
}
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* --- Stats: 4-up large numbers on dark gradient --- */
.stats-section {
  background: linear-gradient(180deg, #0F1230 0%, #1B1B7F 100%);
  color: #fff;
}
.stats-section .eyebrow-center { color: rgba(255, 255, 255, .7); }
.stats-section .section-title { color: #fff; text-align: center; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 32px auto 0;
}
.stat-item {
  text-align: center;
  padding: 22px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(179, 9, 26, .55);
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #ffffff, #fca5a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-num .stat-suf {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 2px;
  -webkit-text-fill-color: #fca5a5;
}
.stat-lab {
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  line-height: 1.35;
}
@media (max-width: 880px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-row { grid-template-columns: 1fr; } }

/* --- Bureaux: office cards --- */
.bureaux-section .section-title,
.bureaux-section .section-intro { text-align: center; }
.bureaux-section .section-intro { max-width: 560px; margin: 0 auto 36px; }
.bureaux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
  justify-content: center;
}
.bureau-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(15, 18, 48, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.bureau-card:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 9, 26, .25);
  box-shadow: 0 18px 38px rgba(15, 18, 48, .1);
}
.bureau-flag {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 28px;
  border-radius: 6px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.bureau-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--navy-900);
}
.bureau-role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red-700);
  margin-bottom: 14px;
}
.bureau-meta {
  font-size: .85rem;
  line-height: 1.55;
  color: var(--gray-700);
}
.bureau-meta a {
  color: var(--blue-700);
  text-decoration: none;
  font-weight: 600;
}
.bureau-meta a:hover { text-decoration: underline; }
@media (max-width: 640px) { .bureaux-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ════════════════════════════════════════════════════════════════
   TYPOGRAPHY — ONE STANDARD FOR THE WHOLE SITE
   ────────────────────────────────────────────────────────────────
   Edit these 4 rules to restyle every heading / body block at once.
   Reference style is "Trusted by banks, exchanges and DNFBPs across
   our markets." — that's the canonical look every section h2 uses.
   ════════════════════════════════════════════════════════════════ */

/* 1 ─── PANEL HEADING — the single class .lx-h2 is the only thing
        you need on any heading element. Reference: "Trusted by banks,
        exchanges and DNFBPs across our markets."
        The legacy selectors below are kept so older markup that
        hasn't been updated still inherits the same style. */
.lx-h2,
h2,
.section-head h2,
.section-title,
.hero-copy h1, .hero h1,
.about-content h2, .ceo-content h2,
.service-text h3, .product-text h3,
.contact-info h2, .services-cta h3,
.showcase h2, .cta-banner h2,
.stand-copy h2,
.cc-imp .cc-section-head h2 {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif !important;
  font-size: clamp(22px, 2.88vw, 37px) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  color: var(--navy-900, #1a1f3a) !important;
  margin: 16px 0 !important;
}

/* 2 ─── Gradient-highlight span inside any heading (.lx-h2 or legacy) */
.lx-h2 .gradient-text, .lx-h2 .cc-grad, .lx-h2 .accent,
h2 .gradient-text, h3 .gradient-text,
.gradient-text,
.cc-imp .cc-section-head h2 .cc-grad,
.cc-grad {
  background: linear-gradient(135deg, #b3091a 0%, #fb7185 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-weight: 600 !important;
}

/* 3 ─── Card-level sub-titles (h4 or h3 INSIDE a card / tile) — smaller */
.pcard h3, .pm-tile h3,
.bv-card h3, .pillar-card h3,
.pd-body h3, .brochure-body h4,
.bureau-card h3, .bc-list li strong,
.bc-col-head h3, .verify-card h4,
.cert-badge .cb-num,
.feature-card h4, .num-card h4,
footer h4, .footer-col h4 {
  font-family: 'EB Garamond', Georgia, serif !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
}

/* 4 ─── Body text & UI controls use Inter (modern sans) */
body, p, li,
input, textarea, select, button,
.nav-links a, .nav-cta, .btn,
.section-head p, .section-intro,
.eyebrow, .section-tag,
.pp-step, .pm-num, .pc-num, .ps-num,
.cb-label, .bureau-meta,
.footer-col p, .footer-col a, .footer-bottom p,
.cc-cert-prefix, .cc-cert-num,
.bc-list li span {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}
.section-head p, .section-intro { font-size: 14px; line-height: 1.55; }
