/* ============================================
   Be Ahead Consulting - Professional Website
   Light Theme · Brand Navy + Orange + Yellow
   ============================================ */

:root {
    /* Backgrounds */
    --primary: #ffffff;
    --primary-light: #f7f9fc;
    --primary-lighter: #eef2f7;
    --bg-soft: #f5f7fa;
    --bg-tinted: #fafbfd;

    /* Brand Navy */
    --navy: #1f4a8a;
    --navy-dark: #142f5c;
    --navy-deep: #0a1f3d;
    --navy-soft: #eaf0f9;

    /* Brand Accent — Sky Blue (was Orange) */
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-dark: #0369a1;
    --accent-soft: #e0f2fe;
    --accent-glow: rgba(14,165,233,0.28);

    /* Brand Secondary — Cyan (was Yellow) */
    --yellow: #06b6d4;
    --yellow-soft: #cffafe;

    /* Brand Tertiary — Warm Orange (used very sparingly for highlights) */
    --orange: #f59e0b;
    --orange-dark: #d97706;
    --orange-soft: #fef3c7;
    --orange-glow: rgba(245,158,11,0.4);

    /* Text */
    --text-strong: #0a1f3d;
    --text: #1a2740;
    --text-soft: #3d4a5c;
    --text-muted: #6b7889;
    --text-light: #94a0b1;
    --white: #ffffff;

    /* Borders */
    --border: #e5e9f0;
    --border-soft: #eef1f6;
    --border-strong: #d0d6e0;
    --border-hover: rgba(14,165,233,0.5);

    /* Shadows — soft, premium */
    --shadow-xs: 0 1px 2px rgba(10,24,48,0.04);
    --shadow-sm: 0 2px 8px rgba(10,24,48,0.06);
    --shadow: 0 4px 16px rgba(10,24,48,0.07);
    --shadow-md: 0 8px 24px rgba(10,24,48,0.09);
    --shadow-lg: 0 16px 48px rgba(10,24,48,0.12);
    --shadow-xl: 0 24px 64px rgba(10,24,48,0.15);
    --shadow-glow: 0 8px 28px rgba(14,165,233,0.36);
    --shadow-navy: 0 8px 28px rgba(31,74,138,0.28);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Oxygen', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Oxygen', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* --- Utility text --- */
.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-dark);
    margin-bottom: 18px;
    position: relative;
    padding-left: 36px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    transform: translateY(-50%);
}
.section-label::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(245,158,11,0.5);
}
.section-header .section-label::after { display: none; }

.section-header { text-align: center; margin-bottom: 64px; }
.bac-grc { padding: 80px 0 70px; }
.bac-grc .section-header { margin-bottom: 40px; }
.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-strong);
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.7;
}

.section-header .section-desc { margin: 0 auto; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: var(--font);
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(14,165,233,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14,165,233,0.45);
}

.btn-primary i { transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-outline {
    border: 2px solid var(--border-strong);
    color: var(--text-strong);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateY(-2px);
    background: var(--accent-soft);
}

.btn-white {
    background: #ffffff;
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--accent-dark);
}

.btn-navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-navy);
}

.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(31,74,138,0.4);
}

.btn-full { width: 100%; justify-content: center; }

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -1px;
}

.loader-be, .loader-head { line-height: 1; }

.loader-arrow {
    width: 24px;
    height: 32px;
    display: inline-flex;
    color: var(--accent);
    margin: 0 -2px;
}
.loader-arrow svg { width: 100%; height: 100%; }

.loader-ring {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* --- Logo --- */
.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1001;
    line-height: 1;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.5px;
    position: relative;
}

.logo-be, .logo-head { line-height: 1; }

.logo-a-arrow {
    display: inline-flex;
    width: 16px;
    height: 22px;
    color: var(--accent);
    margin: 0 -1px;
}
.logo-a-arrow svg { width: 100%; height: 100%; }

.logo-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 6px;
    box-shadow: 0 0 12px rgba(14,165,233,0.5);
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-transform: uppercase;
    padding-left: 1px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10,31,61,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(10,24,48,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.scrolled .logo-be,
.navbar.scrolled .logo-head {
    color: #ffffff;
}
.navbar.scrolled .logo-sub {
    color: rgba(255,255,255,0.65);
}
.navbar.scrolled .nav-links a {
    color: rgba(255,255,255,0.85);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: #ffffff;
}
.navbar.scrolled .nav-toggle span {
    background: #ffffff;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-soft);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-dark);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    margin-left: 8px;
    box-shadow: 0 4px 14px rgba(14,165,233,0.35);
}

.nav-cta:hover {
    box-shadow: 0 10px 24px rgba(14,165,233,0.45);
    transform: translateY(-1px);
    color: #ffffff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION — Split Layout, Light Premium
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, #0c4a6e 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 0% 100%, #1e3a8a 0%, transparent 50%),
        linear-gradient(135deg, #0a1f3d 0%, #142f5c 50%, #0a1f3d 100%);
    color: #ffffff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 85%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 30% at 75% 20%, rgba(14,165,233,0.35) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 15% 80%, rgba(245,158,11,0.12) 0%, transparent 60%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.35;
    animation: float-particle linear infinite;
    box-shadow: 0 0 8px rgba(14,165,233,0.5);
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.35; }
    90% { opacity: 0.35; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero .container { position: relative; z-index: 1; }

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

.hero-content { max-width: none; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(245,158,11,0.4);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge i { font-size: 0.8rem; color: var(--orange); }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 26px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero-line { display: block; }
.hero-line.highlight {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-line.accent {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 6px 22px rgba(245,158,11,0.45);
    padding: 16px 32px;
    font-size: 1rem;
}
.hero .btn-primary:hover {
    box-shadow: 0 12px 32px rgba(245,158,11,0.6);
    transform: translateY(-2px);
}
.hero .btn-outline {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.25);
    color: #ffffff;
    padding: 14px 30px;
    backdrop-filter: blur(8px);
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.stat { display: flex; flex-direction: column; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.18);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   HERO VISUAL — Dashboard Mockup Cards
   (Dark cards on light bg for contrast)
   ============================================ */
.hero-visual {
    position: relative;
    height: 540px;
}

.hv-card {
    background: linear-gradient(160deg, #112341, #0a1f3d);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    position: absolute;
    color: #ffffff;
}

.hv-card-main {
    top: 0;
    right: 0;
    width: 88%;
    padding: 22px;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.hv-card-main:hover { transform: rotate(0deg) translateY(-4px); }

.hv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 18px;
}

.hv-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}
.hv-card-title i { color: var(--accent); }

.hv-card-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #28c840, #1a8a2c);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    position: relative;
    padding-left: 18px;
}

.hv-card-badge::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hv-heatmap-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hv-heatmap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin-bottom: 14px;
}

.hm-cell { aspect-ratio: 1; border-radius: 4px; position: relative; }
.hm-low { background: rgba(40,200,64,0.35); }
.hm-med { background: rgba(245,200,66,0.45); }
.hm-high { background: rgba(255,140,40,0.6); }
.hm-critical { background: rgba(255,80,80,0.75); }

.hm-cell.active {
    box-shadow: 0 0 0 2px #ffffff, 0 0 10px rgba(14,165,233,0.6);
    transform: scale(1.05);
    z-index: 1;
}

.hv-heatmap-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

.hv-heatmap-legend span { display: inline-flex; align-items: center; gap: 6px; }
.hv-heatmap-legend .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-low { background: rgba(40,200,64,0.85); }
.dot-med { background: rgba(245,200,66,0.9); }
.dot-high { background: rgba(255,140,40,0.95); }
.dot-critical { background: rgba(255,80,80,1); }

.hv-card-kri {
    bottom: 60px;
    left: 0;
    width: 60%;
    padding: 18px 20px;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}
.hv-card-kri:hover { transform: rotate(0deg) translateY(-4px); }

.hv-kri-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.hv-kri-title {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hv-kri-value { display: flex; align-items: baseline; gap: 8px; }

.kri-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.kri-trend {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

.kri-trend.up { background: rgba(40,200,64,0.2); color: #4dd96b; }
.kri-trend i { font-size: 0.6rem; }

.hv-kri-chart { width: 100%; height: 50px; }

.hv-card-compliance {
    bottom: 0;
    right: 0;
    width: 52%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: rotate(-1deg);
    transition: transform 0.5s ease;
}

.hv-card-compliance:hover { transform: rotate(0) translateY(-4px); }

.hv-comp-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #28c840, #1a8a2c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.hv-comp-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.hv-comp-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hv-modules-strip {
    position: absolute;
    top: 50%;
    left: -32px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    display: flex;
    gap: 6px;
}

.hv-module-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: #ffffff;
    border: 1px solid var(--border-strong);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-soft);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.hv-module-chip i { font-size: 0.65rem; color: var(--accent); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: center;
}

.about-visual { position: relative; }
.about-image-wrapper { position: relative; }

.about-pattern {
    position: absolute;
    top: -22px;
    left: -22px;
    right: 22px;
    bottom: 22px;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    opacity: 0.4;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3.6;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    box-shadow: var(--shadow-lg);
}

.about-visual-content {
    width: 100%;
    height: 100%;
    padding: 32px 32px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    color: #ffffff;
}

.about-visual-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(14,165,233,0.25), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(31,74,138,0.5), transparent 60%);
    pointer-events: none;
}

.visual-globe {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.visual-text { position: relative; z-index: 1; }

.visual-text strong {
    display: block;
    color: #ffffff;
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 4px;
}

.visual-text span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.visual-grid {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.vg-cell {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.vg-cell:hover {
    border-color: rgba(14,165,233,0.6);
    background: rgba(14,165,233,0.15);
}

.vg-cell i { color: var(--accent); font-size: 0.95rem; }

.about-float-card {
    position: absolute;
    bottom: -32px;
    right: -36px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    max-width: 280px;
    white-space: nowrap;
}
.about-float-card > div { min-width: 0; }
.about-float-card strong, .about-float-card span {
    white-space: normal;
}

@media (max-width: 1024px) {
    .about-float-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -20px auto 0;
        max-width: 320px;
    }
}

.float-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
}

.about-float-card strong {
    display: block;
    color: var(--text-strong);
    font-size: 0.95rem;
    line-height: 1.3;
}

.about-float-card span { color: var(--text-muted); font-size: 0.78rem; }

.about-lead {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 18px;
    font-weight: 500;
}

.about-content > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-feature {
    display: flex;
    gap: 16px;
    padding: 22px 24px;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.about-feature:hover {
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.about-feature .feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.1rem;
}

.about-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-strong);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--primary-light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    padding: 30px 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    border-color: rgba(14,165,233,0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-dark);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-strong);
    line-height: 1.3;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 0.75rem;
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateX(4px);
}

/* ============================================
   BAC-GRC SECTION
   ============================================ */
.bac-grc {
    background: var(--primary);
    position: relative;
}

.bac-grc::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(14,165,233,0.06), transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(31,74,138,0.06), transparent 50%);
    pointer-events: none;
}

.bac-grc .container { position: relative; z-index: 1; }

/* TEMPLE Architecture */
.grc-temple {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.grc-temple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(14,165,233,0.10), transparent 70%);
    pointer-events: none;
}

.temple-top { text-align: center; margin-bottom: 32px; position: relative; }

.temple-logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.temple-logo .t-bac { color: var(--text-strong); }
.temple-logo .t-grc {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.temple-logo .t-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0 0 18px rgba(14,165,233,0.6);
}

.temple-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.temple-pillars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    align-items: end;
    margin-bottom: 36px;
    position: relative;
}

.temple-pillars::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pillar-tag {
    padding: 7px 14px;
    background: var(--accent-soft);
    border: 1px solid rgba(14,165,233,0.4);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.pillar-body {
    width: 80%;
    border-radius: 8px 8px 0 0;
    margin-bottom: -1px;
    transition: var(--transition);
    box-shadow: inset 0 -8px 16px rgba(0,0,0,0.1);
}

.pillar-body { height: 140px; }
.pillar-1 .pillar-body { background: linear-gradient(180deg, #6293c9 0%, #3a6fa5 100%); }
.pillar-2 .pillar-body { background: linear-gradient(180deg, #4dbab0 0%, #2d8a82 100%); }
.pillar-3 .pillar-body { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%); }
.pillar-4 .pillar-body { background: linear-gradient(180deg, #7793b4 0%, #44587a 100%); }
.pillar-5 .pillar-body { background: linear-gradient(180deg, #9583be 0%, #62528a 100%); }
.pillar-6 .pillar-body { background: linear-gradient(180deg, #95a6b6 0%, #5e7280 100%); }

.pillar.pillar-featured .pillar-tag {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.pillar:hover .pillar-body {
    filter: brightness(1.1);
    transform: translateY(-4px);
}

.pillar:hover .pillar-tag { transform: translateY(-2px); }

.pillar-base {
    width: 100%;
    padding: 18px 10px 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
    border-top: none;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.pillar:hover .pillar-base {
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-sm);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    transition: var(--transition);
}

.pillar:hover .pillar-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    border-color: var(--accent);
}

.pillar-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.3;
}

.temple-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 28px;
    margin-bottom: 80px;
    border-top: 1px solid var(--border);
}

/* Benefits Row */
.grc-benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 56px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.benefit-card:hover {
    border-color: rgba(14,165,233,0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--accent-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 0.95rem;
}

.benefit-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-strong);
    line-height: 1.2;
    margin-bottom: 2px;
}

.benefit-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* Featured Solution */
.solution-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
}

.solution-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.solution-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    z-index: 1;
}

.solution-content { position: relative; z-index: 1; }

.solution-icon-large {
    width: 72px;
    height: 72px;
    background: rgba(14,165,233,0.18);
    border: 1px solid rgba(14,165,233,0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 24px;
    margin-top: 24px;
}

.solution-content h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.solution-desc {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.sol-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
}

.sol-feature i {
    color: var(--accent);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    background: rgba(14,165,233,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-content .btn-primary {
    background: #ffffff;
    color: var(--navy-deep);
}

.solution-content .btn-primary:hover {
    background: var(--accent);
    color: #ffffff;
}

/* Dashboard Mockup (inside solution-featured, so dark theme remains) */
.dashboard-mockup {
    background: rgba(10,24,48,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
}

.mockup-body { display: flex; min-height: 280px; }

.mockup-sidebar {
    width: 50px;
    padding: 12px 8px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-menu-item {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.mockup-menu-item.active { background: var(--accent); }

.mockup-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-cards { display: flex; gap: 8px; }

.mockup-stat-card {
    flex: 1;
    height: 50px;
    border-radius: 6px;
    opacity: 0.8;
}

.mockup-stat-card.c1 { background: linear-gradient(135deg, var(--brand-blue-light, #2d6bc7), var(--brand-blue, #1f4a8a)); }
.mockup-stat-card.c2 { background: linear-gradient(135deg, #28c840, #1a8a2c); }
.mockup-stat-card.c3 { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

.mockup-chart {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    right: 5%;
    height: 60%;
    background: linear-gradient(90deg,
        rgba(14,165,233,0.2) 10%,
        rgba(14,165,233,0.4) 50%,
        rgba(14,165,233,0.25) 90%);
    clip-path: polygon(0 80%, 10% 60%, 25% 70%, 40% 30%, 55% 50%, 70% 25%, 85% 45%, 100% 20%, 100% 100%, 0 100%);
}

.mockup-table { display: flex; flex-direction: column; gap: 4px; }
.mockup-row { height: 14px; background: rgba(255,255,255,0.05); border-radius: 3px; }
.mockup-row:first-child { background: rgba(255,255,255,0.1); }

/* ============================================
   DIFFERENTIATORS
   ============================================ */
.differentiators { background: var(--primary-light); }

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

.diff-card {
    padding: 40px 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.diff-card:hover {
    border-color: rgba(14,165,233,0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.diff-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.35;
}

.diff-card:hover .diff-number { opacity: 1; }

.diff-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-strong);
}

.diff-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   STANDARDS SECTION
   ============================================ */
.standards { background: var(--primary); }

.standards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.standard-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.standard-card:hover {
    border-color: rgba(14,165,233,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.standard-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(14,165,233,0.3);
}

.standard-card:hover .standard-icon {
    transform: scale(1.08);
    box-shadow: var(--shadow-glow);
}

.standard-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.standard-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ============================================
   CLIENTS SECTION — Single Showcase Image
   ============================================ */
.clients { background: var(--primary-light); }

.clients-showcase {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.clients-showcase:hover { box-shadow: var(--shadow-md); }

.clients-showcase.has-image {
    padding: 24px;
}

.clients-showcase img {
    max-width: 100%;
    max-height: 720px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-sm);
}

.clients-showcase-empty {
    text-align: center;
    padding: 32px 24px;
    color: var(--text-muted);
}

.cse-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 2rem;
    border: 2px dashed rgba(14,165,233,0.4);
}

.clients-showcase-empty h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-strong);
    margin-bottom: 10px;
    font-weight: 700;
}

.clients-showcase-empty p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cse-meta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.cse-region {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-soft);
}

.cse-region span:first-child { font-size: 1.1rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 80px 0; }

.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.22) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,200,66,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-actions { position: relative; z-index: 1; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { background: var(--primary); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.contact-card:hover {
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.1rem;
}

.contact-card h4 {
    font-size: 0.95rem;
    color: var(--text-strong);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    word-break: break-word;
}

.contact-card p a { color: var(--text-muted); }
.contact-card p a:hover { color: var(--accent-dark); }

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 36px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group { position: relative; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-strong);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    pointer-events: none;
    background: transparent;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 14px;
    font-size: 0.72rem;
    color: var(--accent-dark);
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d68a14' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-color: var(--bg-soft);
}

.form-group select + label {
    top: -8px;
    left: 14px;
    font-size: 0.72rem;
    color: var(--accent-dark);
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

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

/* ============================================
   FOOTER — DARK NAVY
   ============================================ */
.footer {
    padding: 64px 0 0;
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
}

.footer .nav-logo .logo-mark { color: #ffffff; }
.footer .nav-logo .logo-mark .logo-be,
.footer .nav-logo .logo-mark .logo-head { color: #ffffff; }
.footer .nav-logo .logo-sub { color: rgba(255,255,255,0.5); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1.1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo { margin-bottom: 16px; }

.footer-about p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
    box-shadow: 0 6px 24px rgba(14,165,233,0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14,165,233,0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"]   { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-right"]{ transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"]   { transform: scale(0.92); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ============================================
   RESPONSIVE — HOMEPAGE
   ============================================ */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .standards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 480px;
        max-width: 540px;
        margin: 0 auto;
    }

    .about-grid { gap: 48px; }

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

    .solution-featured {
        grid-template-columns: 1fr;
        padding: 40px 32px;
    }

    .grc-temple { padding: 40px 28px; }
    .temple-pillars { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .grc-benefits { grid-template-columns: repeat(3, 1fr); }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .nav-links {
        position: fixed;
        inset: 0;
        background: linear-gradient(180deg, #0a1f3d 0%, #142f5c 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active { opacity: 1; visibility: visible; }

    .nav-links a {
        font-size: 1.25rem;
        padding: 12px 24px;
        color: #ffffff;
    }

    /* Force WHITE text inside the open mobile menu (matches dark navy bg) */
    .navbar .nav-links.active a,
    .navbar.scrolled .nav-links.active a,
    .navbar:not(.scrolled) .nav-links.active a,
    .product-page .navbar:not(.scrolled) .nav-links.active a,
    .home-page .navbar:not(.scrolled) .nav-links.active a {
        color: #ffffff;
    }
    .navbar .nav-links.active a:hover,
    .navbar .nav-links.active a.active,
    .navbar.scrolled .nav-links.active a:hover,
    .navbar.scrolled .nav-links.active a.active,
    .navbar:not(.scrolled) .nav-links.active a:hover,
    .navbar:not(.scrolled) .nav-links.active a.active,
    .product-page .navbar:not(.scrolled) .nav-links.active a:hover,
    .product-page .navbar:not(.scrolled) .nav-links.active a.active,
    .home-page .navbar:not(.scrolled) .nav-links.active a:hover,
    .home-page .navbar:not(.scrolled) .nav-links.active a.active {
        color: var(--accent, #f5a623);
    }

    /* Hamburger lines white when the menu is open (over dark navy bg) */
    .nav-toggle.active span,
    .navbar.scrolled .nav-toggle.active span,
    .navbar:not(.scrolled) .nav-toggle.active span,
    .product-page .navbar:not(.scrolled) .nav-toggle.active span,
    .home-page .navbar:not(.scrolled) .nav-toggle.active span {
        background: #ffffff;
    }

    .nav-toggle { display: flex; }

    .hero-visual { height: 440px; }
    .hv-card-main { width: 92%; }
    .hv-card-kri { width: 64%; }
    .hv-card-compliance { width: 55%; }
    .hv-modules-strip { display: none; }

    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }

    .services-grid,
    .diff-grid,
    .standards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats { gap: 16px; align-items: flex-start; }
    .stat-divider { display: none; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .solution-features { grid-template-columns: 1fr; }

    .cta-box { padding: 40px 24px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-scroll { display: none; }

    .temple-pillars { grid-template-columns: repeat(2, 1fr); }
    .grc-benefits { grid-template-columns: repeat(2, 1fr); }

    .client-region { padding: 28px 20px; }
    .clients-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .services-grid,
    .diff-grid,
    .standards-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats .stat {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
    }

    .stat-label { margin-top: 0; }

    .hero-visual { height: 380px; }

    .temple-pillars {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .pillar-body { height: 30px !important; }

    .grc-benefits { grid-template-columns: 1fr; }
}

/* ============================================
   BAC-GRC PRODUCT PAGE
   ============================================ */
.product-page { background: var(--primary); }

.product-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.product-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-hero-content .hero-badge { margin-bottom: 28px; }

.product-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -2px;
    line-height: 1;
}

.product-logo .bac { color: var(--text-strong); }

.product-logo .grc {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-logo .dot {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 12px;
    margin-bottom: 8px;
    align-self: flex-end;
    box-shadow: 0 0 24px rgba(14,165,233,0.7);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 24px rgba(14,165,233,0.7); transform: scale(1); }
    50% { box-shadow: 0 0 40px rgba(14,165,233,1); transform: scale(1.15); }
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-strong);
    letter-spacing: -0.5px;
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 36px;
}

.product-hero .hero-actions {
    justify-content: center;
    margin-bottom: 48px;
}

.module-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.module-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-xs);
}

.module-pill i { color: var(--accent-dark); font-size: 0.85rem; }

.module-pill:hover {
    background: var(--accent-soft);
    border-color: rgba(14,165,233,0.4);
    color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Intro Section */
.intro-section { background: var(--primary-light); }

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}

.intro-lead {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 32px;
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 500;
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-block {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.stat-block:hover {
    border-color: rgba(14,165,233,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-block-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(14,165,233,0.3);
}

.stat-block-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-block-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover {
    border-color: rgba(14,165,233,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.feature-card .feature-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.1rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.feature-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Modules Section */
.modules-section { background: var(--primary-light); }

.modules-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 32px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.module-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 12px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.module-tab i { font-size: 1.3rem; color: var(--text-muted); transition: var(--transition); }
.module-tab span { font-size: 0.95rem; font-weight: 700; color: var(--text-soft); letter-spacing: 0.5px; }
.module-tab small { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }

.module-tab:hover {
    background: var(--bg-soft);
}

.module-tab:hover i,
.module-tab:hover span { color: var(--text-strong); }

.module-tab.active {
    background: linear-gradient(135deg, var(--accent-soft), #fff);
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-sm);
}

.module-tab.active i { color: var(--accent-dark); }
.module-tab.active span { color: var(--text-strong); }
.module-tab.active small { color: var(--accent-dark); }

.module-panel {
    display: none;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    animation: panelFadeIn 0.4s ease;
    box-shadow: var(--shadow-md);
}

.module-panel.active { display: block; }

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.module-panel-header {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-bottom: 28px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.module-panel-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: var(--shadow-glow);
}

.module-panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 6px;
}

.module-panel-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.functionalities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.func-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
}

.func-card:hover {
    border-color: rgba(14,165,233,0.35);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.func-num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.35;
    line-height: 1;
}

.func-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 14px;
    padding-right: 40px;
}

.func-card ul { list-style: none; padding: 0; margin: 0; }

.func-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.func-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.func-card ul li:last-child { margin-bottom: 0; }
.func-card ul li strong { color: var(--accent-dark); font-weight: 700; }

/* CGM Under Development */
.under-development {
    text-align: center;
    padding: 40px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.ud-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--accent-soft);
    border: 2px dashed rgba(14,165,233,0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 2rem;
}

.under-development h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 16px;
}

.under-development p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ud-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.ud-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--text-soft);
}

.ud-feature i { color: var(--accent-dark); font-size: 0.85rem; }

/* InfoSec Section */
.infosec-section { background: var(--primary); }

.infosec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.infosec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.infosec-item:hover {
    border-color: rgba(14,165,233,0.4);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.infosec-item > i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1rem;
}

.infosec-item span {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.5;
    font-weight: 500;
}

/* Consulting Package */
.consulting-section { background: var(--primary-light); }

.consulting-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
}

.consulting-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.18), transparent 70%);
    pointer-events: none;
}

.consulting-box .section-label { color: var(--accent-light); }
.consulting-box .section-title { color: #ffffff; }
.consulting-box .section-desc { color: rgba(255,255,255,0.85); }
.consulting-box .text-gradient {
    background: linear-gradient(135deg, var(--accent-light), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consulting-header {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.consulting-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: var(--shadow-glow);
}

.consulting-header .section-title { margin-bottom: 12px; }
.consulting-header .section-desc { margin: 0; }

.consulting-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    position: relative;
}

.consulting-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.consulting-item:hover {
    border-color: rgba(14,165,233,0.5);
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

.consulting-item i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
}

.consulting-item span {
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 500;
}

/* Requirements */
.requirements-section { background: var(--primary); }

.requirements-table {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.req-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.req-row:last-child { border-bottom: none; }
.req-row:hover:not(.req-header) { background: var(--bg-soft); }

.req-cell {
    padding: 20px 28px;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.req-cell i { color: var(--accent-dark); width: 24px; text-align: center; }

.req-row.req-header {
    background: var(--accent-soft);
    border-bottom: 2px solid rgba(14,165,233,0.3);
}

.req-row.req-header .req-cell {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent-dark);
}

.req-row:not(.req-header) .req-cell:first-child {
    font-weight: 700;
    color: var(--text-strong);
}

/* Product Page Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .modules-tabs { grid-template-columns: repeat(3, 1fr); }
    .module-panel { padding: 32px 24px; }

    .consulting-box { padding: 40px 32px; }

    .consulting-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .consulting-icon { margin: 0 auto; }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .product-logo { margin-bottom: 24px; }

    .features-grid,
    .functionalities-grid,
    .infosec-grid,
    .consulting-list,
    .ud-features {
        grid-template-columns: 1fr;
    }

    .modules-tabs {
        grid-template-columns: repeat(2, 1fr);
        padding: 8px;
    }

    .module-tab { padding: 14px 8px; }
    .module-tab i { font-size: 1.1rem; }
    .module-tab span { font-size: 0.85rem; }
    .module-tab small { font-size: 0.65rem; }

    .module-panel-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .module-panel-icon { margin: 0 auto; }

    .intro-stats { grid-template-columns: 1fr 1fr; }
    .intro-highlights { grid-template-columns: 1fr; }

    .module-bar { gap: 8px; }
    .module-pill { padding: 8px 14px; font-size: 0.8rem; }

    .req-cell { padding: 16px 18px; font-size: 0.88rem; }
    .consulting-box { padding: 32px 20px; }
}

@media (max-width: 480px) {
    .modules-tabs { grid-template-columns: 1fr 1fr 1fr; }

    .req-row { grid-template-columns: 1fr; }

    .req-row .req-cell:first-child {
        background: var(--bg-soft);
        padding-bottom: 8px;
    }

    .req-row .req-cell:last-child { padding-top: 8px; }
    .req-row.req-header { display: none; }
}

/* ============================================
   NEW MARKETING SECTIONS
   ============================================ */

/* --- Trust Strip --- */
.trust-strip {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}
.trust-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(14,165,233,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(31,74,138,0.4) 0%, transparent 55%);
    pointer-events: none;
}
.trust-strip-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-strip-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.trust-strip-label i {
    width: 28px; height: 28px;
    background: rgba(14,165,233,0.18);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.trust-strip-items {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}
.trust-item:hover {
    border-color: rgba(14,165,233,0.5);
    background: rgba(14,165,233,0.12);
    transform: translateY(-2px);
}
.trust-item i { color: var(--accent-light); font-size: 0.8rem; }

/* --- Problem / Solution --- */
.problem-solution-section { background: var(--bg-tinted); }
.ps-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 16px;
    align-items: stretch;
}
.ps-column {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.ps-column:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.ps-problems {
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
    border-color: #fecaca;
}
.ps-solutions {
    background: linear-gradient(180deg, var(--accent-soft) 0%, #ffffff 100%);
    border-color: rgba(14,165,233,0.35);
    box-shadow: var(--shadow-md);
}

.ps-column-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border);
}
.ps-icon {
    width: 64px; height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.ps-icon-problem { background: #fee2e2; color: #b91c1c; }
.ps-icon-solution {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}
.ps-column-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-strong);
    margin-bottom: 4px;
}
.ps-column-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.ps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ps-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
}
.ps-list li i {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 2px;
}
.ps-list li i.fa-xmark { background: #fee2e2; color: #b91c1c; }
.ps-list-solution li i.fa-check {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
}

.ps-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ps-divider-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    box-shadow: var(--shadow);
    animation: ps-pulse 2.4s ease-in-out infinite;
}
@keyframes ps-pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow); }
    50% { transform: scale(1.08); box-shadow: var(--shadow-glow); }
}

/* --- How It Works --- */
.howitworks-section { background: var(--primary); }
.hiw-track {
    display: grid;
    grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr;
    align-items: stretch;
    gap: 0;
}
.hiw-step {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 22px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.hiw-step:hover {
    transform: translateY(-6px);
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-md);
}
.hiw-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: var(--shadow-navy);
}
.hiw-icon {
    width: 60px; height: 60px;
    margin: 12px auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}
.hiw-step:hover .hiw-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    transform: rotate(-6deg) scale(1.05);
}
.hiw-step h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-strong);
    margin-bottom: 8px;
}
.hiw-step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.55;
}
.hiw-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    opacity: 0.55;
}

/* --- Architecture Diagram --- */
.architecture-section {
    background: linear-gradient(180deg, var(--bg-tinted) 0%, var(--bg-soft) 100%);
}
.arch-diagram {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.arch-tier {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.arch-tier-label {
    position: absolute;
    top: -12px;
    left: 26px;
    background: #ffffff;
    padding: 2px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    border: 1px solid var(--border);
    border-radius: 50px;
}
.arch-tier-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}
.arch-user, .arch-channel, .arch-service, .arch-data-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}
.arch-user:hover, .arch-channel:hover, .arch-service:hover, .arch-data-item:hover {
    border-color: rgba(14,165,233,0.5);
    background: var(--accent-soft);
    transform: translateY(-2px);
}
.arch-user i, .arch-channel i, .arch-service i, .arch-data-item i {
    color: var(--accent-dark);
    font-size: 0.95rem;
}

.arch-modules { background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%); }
.arch-modules-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.arch-module {
    flex-direction: column;
    padding: 18px 12px;
    background: #ffffff;
    border: 2px solid rgba(14,165,233,0.3);
    border-radius: 14px;
    color: var(--text-strong);
    font-weight: 700;
    font-size: 0.85rem;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.arch-module i {
    color: var(--accent-dark);
    font-size: 1.4rem;
}
.arch-module:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.arch-module:hover i { color: #ffffff; }

.arch-flow {
    display: flex;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    opacity: 0.6;
}

/* --- Demo Gallery --- */
.demo-gallery-section { background: var(--primary); }
.demo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.demo-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.demo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14,165,233,0.3);
}
.demo-card-wide { grid-column: 1 / -1; }
.demo-card-header {
    padding: 28px 28px 18px;
}
.demo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.demo-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-strong);
    margin-bottom: 8px;
}
.demo-card-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.demo-mockup {
    margin: 0 22px 22px;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 28px rgba(10,24,48,0.18);
}
.dm-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dm-dots { display: flex; gap: 5px; }
.dm-dots span {
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
}
.dm-dots span:first-child { background: #ff5f57; }
.dm-dots span:nth-child(2) { background: #febc2e; }
.dm-dots span:nth-child(3) { background: #28c840; }
.dm-title {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    flex: 1;
    text-align: center;
}
.dm-user {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}

.dm-body { padding: 18px; background: #f7f9fc; }
.dm-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.dm-kpi {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.dm-kpi-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
}
.kpi-blue { background: linear-gradient(135deg, #1f4a8a, #142f5c); }
.kpi-green { background: linear-gradient(135deg, #28c840, #1a8a2c); }
.kpi-orange { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.kpi-purple { background: linear-gradient(135deg, #a855f7, #7e22ce); }
.dm-kpi-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}
.dm-kpi-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.dm-chart-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dm-chart-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 14px;
}
.dm-chart-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}
.dm-line-chart { width: 100%; height: 110px; }
.dm-bar-chart { display: flex; flex-direction: column; gap: 8px; }
.dm-bar-row {
    display: grid;
    grid-template-columns: 80px 1fr 30px;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-soft);
}
.dm-bar-track {
    height: 8px;
    background: var(--bg-soft);
    border-radius: 50px;
    overflow: hidden;
}
.dm-bar-fill {
    height: 100%;
    border-radius: 50px;
    animation: dm-bar-grow 1.2s ease-out;
}
@keyframes dm-bar-grow {
    from { width: 0 !important; }
}
.dm-bar-row strong {
    font-weight: 700;
    color: var(--text-strong);
    text-align: right;
}

.dm-table-body { padding: 8px; background: #f7f9fc; }
.dm-table-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 100px;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 0.82rem;
    color: var(--text);
}
.dm-table-row:last-child { margin-bottom: 0; }
.dm-table-head {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.8);
    border-color: transparent;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.dm-ref {
    font-family: 'Courier New', monospace;
    color: var(--accent-dark);
    font-weight: 700;
}
.dm-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}
.pill-critical { background: #fee2e2; color: #b91c1c; }
.pill-high { background: #ffedd5; color: #c2410c; }
.pill-medium { background: #fef3c7; color: #92400e; }
.pill-low { background: #dcfce7; color: #166534; }
.pill-pending { background: #fef3c7; color: #92400e; }
.pill-approved { background: #dcfce7; color: #166534; }

.dm-kri-body {
    padding: 22px;
    background: #f7f9fc;
    display: flex;
    gap: 18px;
    align-items: center;
}
.dm-kri-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.dm-kri-ring {
    width: 120px; height: 120px;
    position: relative;
}
.dm-kri-ring svg { width: 100%; height: 100%; }
.dm-kri-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-strong);
}
.dm-kri-status { text-align: center; }
.dm-kri-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.kri-alert { background: #fef3c7; color: #92400e; }
.dm-kri-target { font-size: 0.7rem; color: var(--text-muted); }
.dm-kri-thresholds {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.kri-thr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-size: 0.78rem;
    color: var(--text-soft);
}
.kri-thr.active {
    background: #fef3c7;
    border-color: #06b6d4;
}
.kri-thr strong { color: var(--text-strong); font-weight: 700; }
.kri-thr-green span::before { content: '● '; color: #28c840; }
.kri-thr-amber span::before { content: '● '; color: #0ea5e9; }
.kri-thr-red span::before { content: '● '; color: #ef4444; }

.dm-flow-body {
    padding: 22px 26px;
    background: #f7f9fc;
}
.dm-flow-step {
    display: flex;
    align-items: center;
    gap: 14px;
}
.dm-flow-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.dm-flow-step.done .dm-flow-dot {
    background: linear-gradient(135deg, #28c840, #1a8a2c);
    border-color: transparent;
    color: #ffffff;
}
.dm-flow-step.active .dm-flow-dot {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: transparent;
    color: #ffffff;
    animation: ps-pulse 1.8s ease-in-out infinite;
}
.dm-flow-step strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-strong);
    font-weight: 700;
}
.dm-flow-step span {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.dm-flow-line {
    width: 2px;
    height: 18px;
    margin: 0 0 0 15px;
    background: var(--border);
}
.dm-flow-line.dashed {
    background: linear-gradient(to bottom, var(--border) 50%, transparent 50%);
    background-size: 2px 6px;
    background-repeat: repeat-y;
}

.demo-cta {
    text-align: center;
    margin-top: 36px;
}
.demo-cta p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
    font-style: italic;
}

/* --- Industries --- */
.industries-section {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-tinted) 100%);
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.industry-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14,165,233,0.3);
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: var(--transition);
}
.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    transform: rotate(-6deg);
}
.industry-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-strong);
    margin-bottom: 10px;
}
.industry-card p {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 16px;
}
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.industry-tags span {
    padding: 4px 10px;
    background: var(--navy-soft);
    color: var(--navy);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* --- Comparison Table --- */
.comparison-section { background: var(--primary); }
.comparison-table {
    max-width: 1080px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.ct-row {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.4fr;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.ct-row:last-child { border-bottom: none; }
.ct-row:not(.ct-head):hover { background: var(--bg-tinted); }
.ct-cell {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text);
    border-right: 1px solid var(--border-soft);
}
.ct-cell:last-child { border-right: none; }
.ct-head {
    background: var(--navy-deep);
}
.ct-head .ct-cell {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-right-color: rgba(255,255,255,0.1);
}
.ct-head .ct-them { background: rgba(255,255,255,0.04); }
.ct-head .ct-us {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
}
.ct-feature {
    font-weight: 700;
    color: var(--text-strong);
    background: var(--bg-tinted);
}
.ct-them { color: var(--text-muted); font-size: 0.88rem; }
.ct-them i.fa-xmark {
    color: #b91c1c;
    background: #fee2e2;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.ct-us {
    color: var(--text);
    font-weight: 500;
    background: rgba(14,165,233,0.04);
}
.ct-us i.fa-check {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(14,165,233,0.4);
}

/* --- ROI Section --- */
.roi-section {
    background: linear-gradient(180deg, var(--bg-tinted) 0%, var(--primary) 100%);
}
.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.roi-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.roi-card::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}
.roi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-lg);
}
.roi-card:hover::after {
    bottom: -10px; right: -10px;
    transform: scale(1.4);
}
.roi-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.roi-num small { font-size: 1.8rem; }
.roi-trend {
    width: 28px; height: 28px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #fee2e2;
    color: #b91c1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}
.roi-trend.up {
    background: #dcfce7;
    color: #166534;
}
.roi-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-strong);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.roi-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* --- Testimonials --- */
.testimonials-section {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(14,165,233,0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(31,74,138,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.testimonials-section .container { position: relative; z-index: 1; }
.testimonials-section .section-title { color: #ffffff; }
.testimonials-section .section-desc { color: rgba(255,255,255,0.7); }
.testimonials-section .section-label { color: var(--accent-light); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 30px 26px;
    backdrop-filter: blur(8px);
    position: relative;
    transition: var(--transition);
}
.testi-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(14,165,233,0.4);
}
.testi-quote-icon {
    position: absolute;
    top: 18px; right: 22px;
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.45;
}
.testi-quote {
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: var(--shadow-glow);
}
.testi-author strong {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}
.testi-author span {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* --- FAQ --- */
.faq-section { background: var(--primary); }
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] {
    border-color: rgba(14,165,233,0.5);
    box-shadow: var(--shadow);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 26px;
    cursor: pointer;
    list-style: none;
    color: var(--text-strong);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-dark); background: var(--bg-tinted); }
.faq-item summary i {
    color: var(--accent);
    transition: transform 0.3s;
    font-size: 0.9rem;
}
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item[open] summary { background: var(--accent-soft); color: var(--accent-dark); }
.faq-item p {
    padding: 4px 26px 22px;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.75;
}
.faq-item p a {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   NEW SECTIONS — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .ps-grid { grid-template-columns: 1fr; }
    .ps-divider { transform: rotate(90deg); margin: 8px 0; }

    .hiw-track {
        grid-template-columns: 1fr 1fr;
    }
    .hiw-connector { display: none; }

    .arch-modules-grid { grid-template-columns: repeat(3, 1fr); }

    .demo-gallery { grid-template-columns: 1fr; }
    .dm-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .dm-chart-row { grid-template-columns: 1fr; }

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

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

    .testi-grid { grid-template-columns: 1fr; }

    .ct-row { grid-template-columns: 1fr; }
    .ct-row .ct-cell { border-right: none; border-bottom: 1px solid var(--border-soft); }
    .ct-row .ct-cell:last-child { border-bottom: none; }
    .ct-head { display: none; }
    .ct-feature {
        background: var(--navy-deep);
        color: #ffffff !important;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    .ct-them::before {
        content: 'Traditional: ';
        font-weight: 700;
        color: #b91c1c;
        margin-right: 6px;
    }
    .ct-us::before {
        content: 'BAC-GRC: ';
        font-weight: 700;
        color: var(--accent-dark);
        margin-right: 6px;
    }
}

@media (max-width: 768px) {
    .trust-strip-inner { flex-direction: column; text-align: center; }
    .trust-strip-items { justify-content: center; }

    .hiw-track { grid-template-columns: 1fr; }

    .arch-modules-grid { grid-template-columns: repeat(2, 1fr); }
    .arch-tier { padding: 22px 16px; }
    .arch-tier-content { gap: 8px; }
    .arch-user, .arch-channel, .arch-service, .arch-data-item {
        padding: 10px 14px; font-size: 0.82rem;
    }

    .dm-kpi-row { grid-template-columns: 1fr 1fr; }
    .dm-table-row { grid-template-columns: 70px 1fr; }
    .dm-table-row span:nth-child(3), .dm-table-row span:nth-child(4) {
        grid-column: 2 / 3;
        font-size: 0.72rem;
    }

    .dm-kri-body { flex-direction: column; }

    .industries-grid { grid-template-columns: 1fr; }
    .roi-grid { grid-template-columns: 1fr; }

    .faq-item summary { padding: 16px 18px; font-size: 0.92rem; }
    .faq-item p { padding: 4px 18px 16px; font-size: 0.9rem; }

    .ps-column { padding: 28px 20px; }
}

/* --- Value Props Section (index.html) --- */
.value-props-section {
    background: linear-gradient(180deg, var(--bg-tinted) 0%, var(--primary) 100%);
}
.vp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.vp-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.vp-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}
.vp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-lg);
}
.vp-card:hover::before { transform: scale(1.6); }
.vp-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.vp-card:hover .vp-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    transform: rotate(-8deg) scale(1.05);
    box-shadow: var(--shadow-glow);
}
.vp-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-strong);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.vp-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}
@media (max-width: 1024px) {
    .vp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .vp-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GRC WHEEL SECTION
   ============================================ */
.grc-wheel-section {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(14,165,233,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(31,74,138,0.06) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-tinted) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}
.grc-wheel-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(31,74,138,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,74,138,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
    pointer-events: none;
}
.grc-wheel-section .container { position: relative; z-index: 1; }

.wheel-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 32px;
    align-items: center;
}

.wheel-panel {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    box-shadow: var(--shadow);
}
.wheel-panel-header {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border);
    position: relative;
}
.wheel-panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--accent-dark);
    font-weight: 700;
    margin: 0;
}
.wheel-panel-deco {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 50px;
    margin: 8px auto 0;
}

.wheel-panel-items { display: flex; flex-direction: column; gap: 10px; }

.wp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-tinted);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    transition: var(--transition);
}
.wp-item:hover {
    background: var(--accent-soft);
    border-color: rgba(14,165,233,0.4);
    transform: translateX(3px);
}
.wp-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.wp-item:hover .wp-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
}
.wp-item strong {
    display: block;
    color: var(--text-strong);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
}
.wp-item span {
    display: block;
    color: var(--text-muted);
    font-size: 0.74rem;
    margin-top: 3px;
    line-height: 1.4;
}

.wheel-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 30px 10px;
}

/* Floating module badges around the wheel */
.wheel-mod {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(10,24,48,0.15);
    z-index: 4;
    animation: wheel-mod-float 5s ease-in-out infinite;
    transition: var(--transition);
}
.wheel-mod:hover {
    border-color: rgba(245,158,11,0.5);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 32px rgba(245,158,11,0.3);
    z-index: 5;
}
.wheel-mod i {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 6px 14px rgba(245,158,11,0.4);
    flex-shrink: 0;
}
.wheel-mod strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-strong);
    font-weight: 800;
    line-height: 1;
}
.wheel-mod em {
    display: block;
    font-style: normal;
    font-size: 0.66rem;
    color: var(--text-muted);
    margin-top: 3px;
    letter-spacing: 0.3px;
    font-weight: 600;
}
.wheel-mod-tl { top: 4%; left: -8%; animation-delay: 0s; }
.wheel-mod-tr { top: 4%; right: -8%; animation-delay: 1s; }
.wheel-mod-bl { bottom: 4%; left: -8%; animation-delay: 2s; }
.wheel-mod-br { bottom: 4%; right: -8%; animation-delay: 3s; }
@keyframes wheel-mod-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
    .wheel-mod-tl, .wheel-mod-bl { left: 0; }
    .wheel-mod-tr, .wheel-mod-br { right: 0; }
}
@media (max-width: 720px) {
    .wheel-mod {
        position: relative;
        animation: none;
        margin: 0;
    }
    .wheel-center {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .wheel-mod-tl, .wheel-mod-tr, .wheel-mod-bl, .wheel-mod-br {
        top: auto; left: auto; right: auto; bottom: auto;
    }
}
.grc-wheel {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(10,24,48,0.15));
}
.grc-wheel .seg {
    transition: opacity 0.3s, transform 0.3s;
    transform-origin: 300px 300px;
    cursor: default;
}
.grc-wheel .seg:hover {
    opacity: 0.85;
    transform: scale(1.015);
}

/* Compact wheel for index page — no side panels */
.wheel-compact-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 30px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.grc-wheel-compact { max-width: 560px; }

/* ============================================
   MODULES HEXAGON GRID (index.html replacement)
   ============================================ */
.modules-hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    max-width: 880px;
    margin: 0 auto 40px;
}
.hex-wrap {
    width: 180px;
    aspect-ratio: 1 / 1.15;
}
.hex {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 2px;
    transition: var(--transition);
    cursor: default;
}
.hex:hover {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 8px 18px rgba(14,165,233,0.35));
}
.hex-inner {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-tinted) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 14px;
    text-align: center;
    gap: 6px;
}
.hex-inner i {
    font-size: 1.8rem;
    color: var(--accent-dark);
    margin-bottom: 4px;
    transition: var(--transition);
}
.hex-inner strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1.1;
}
.hex-inner span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.25;
}
.hex:hover .hex-inner i { transform: scale(1.15) rotate(-6deg); color: var(--accent); }

.hex-featured {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.hex-featured .hex-inner {
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}
.hex-featured .hex-inner i, .hex-featured .hex-inner strong, .hex-featured .hex-inner span {
    color: #ffffff;
}
.hex-featured-wrap { position: relative; }
.hex-featured-wrap::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(14,165,233,0.4) 0%, transparent 65%);
    z-index: -1;
    border-radius: 50%;
    animation: hex-glow 3s ease-in-out infinite;
}
@keyframes hex-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.08); }
}

/* ============================================
   KEY FEATURES HONEYCOMB — Animated + Orange
   ============================================ */
.features-hex-section {
    background:
        radial-gradient(ellipse 50% 60% at 90% 10%, rgba(245,158,11,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 10% 90%, rgba(14,165,233,0.07) 0%, transparent 55%),
        var(--primary);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.features-hex-section .section-header { margin-bottom: 40px; }

/* Decorative floating orbs */
.features-hex-section::before,
.features-hex-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.features-hex-section::before {
    top: 15%; right: 8%;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
    animation: orb-float 14s ease-in-out infinite;
}
.features-hex-section::after {
    bottom: 10%; left: 8%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(14,165,233,0.16) 0%, transparent 70%);
    animation: orb-float 16s ease-in-out infinite reverse;
}
.features-hex-section .container { position: relative; z-index: 1; }

.features-honeycomb {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.hc-row {
    display: flex;
    gap: 14px;
    justify-content: center;
}
.hc-row-top { padding-bottom: 0; }
.hc-row-mid { margin-top: -40px; margin-bottom: -40px; }

.hc-hex {
    width: 170px;
    aspect-ratio: 1 / 1.15;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, var(--accent), var(--orange));
    padding: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
    position: relative;
    animation: hex-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes hex-enter {
    from { opacity: 0; transform: translateY(30px) scale(0.85) rotate(-6deg); }
    to { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}
/* Stagger animation delays */
.hc-row-top .hc-hex:nth-child(1) { animation-delay: 0.05s; }
.hc-row-top .hc-hex:nth-child(2) { animation-delay: 0.15s; }
.hc-row-top .hc-hex:nth-child(3) { animation-delay: 0.25s; }
.hc-row-top .hc-hex:nth-child(4) { animation-delay: 0.35s; }
.hc-row-mid .hc-hex:nth-child(1) { animation-delay: 0.20s; }
.hc-row-mid .hc-hex:nth-child(2) { animation-delay: 0.30s; }
.hc-row-mid .hc-hex:nth-child(3) { animation-delay: 0.40s; }
.hc-row-bot .hc-hex:nth-child(1) { animation-delay: 0.35s; }
.hc-row-bot .hc-hex:nth-child(2) { animation-delay: 0.45s; }
.hc-row-bot .hc-hex:nth-child(3) { animation-delay: 0.55s; }

/* Subtle ongoing animation — gentle breathing */
.hc-hex {
    animation: hex-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards,
               hex-breathe 6s ease-in-out infinite 0.7s;
}
@keyframes hex-breathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.hc-row-mid .hc-hex { animation-delay: 0.4s, 1.5s; }
.hc-row-bot .hc-hex { animation-delay: 0.55s, 3s; }

.hc-hex:hover {
    transform: translateY(-10px) scale(1.08) !important;
    filter: drop-shadow(0 18px 32px rgba(245,158,11,0.5));
    z-index: 2;
}

.hc-inner {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-tinted) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    text-align: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}
/* Orange wash on hover */
.hc-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(245,158,11,0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.hc-hex:hover .hc-inner::before { opacity: 1; }

.hc-inner i {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--accent-dark), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--accent-dark);
    margin-bottom: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}
.hc-inner strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-strong);
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}
.hc-inner span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.hc-hex:hover .hc-inner i {
    transform: scale(1.25) rotate(-12deg);
}
.hc-hex:hover .hc-inner strong { color: var(--orange-dark); }

/* Tiny pulsing orange dot at top corner of each hex */
.hc-hex::after {
    content: '';
    position: absolute;
    top: 16%; right: 18%;
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(245,158,11,0.7);
    z-index: 3;
    animation: hex-dot-pulse 2s ease-in-out infinite;
}
@keyframes hex-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.4); opacity: 1; }
}

/* Featured center hex — strong orange gradient */
.hc-hex-feature {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    animation: hex-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards 0.3s,
               hex-feature-pulse 2.4s ease-in-out infinite 1s !important;
}
@keyframes hex-feature-pulse {
    0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 8px 20px rgba(245,158,11,0.45)); }
    50% { transform: translateY(-3px) scale(1.04); filter: drop-shadow(0 16px 32px rgba(245,158,11,0.7)); }
}
.hc-hex-feature .hc-inner {
    background: linear-gradient(180deg, var(--orange), var(--orange-dark)) !important;
}
.hc-hex-feature .hc-inner i {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}
.hc-hex-feature .hc-inner strong,
.hc-hex-feature .hc-inner span { color: #ffffff !important; }
.hc-hex-feature::after {
    background: #ffffff;
    box-shadow: 0 0 16px rgba(255,255,255,0.9);
}

/* ============================================
   HOW IT WORKS — CIRCULAR ORBIT
   ============================================ */
.hiw-cycle {
    position: relative;
    width: 100%;
    max-width: 720px;
    height: 600px;
    margin: 0 auto;
}
.hiw-orbit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.hiw-hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(14,165,233,0.45);
    z-index: 2;
}
.hiw-hub::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(14,165,233,0.4);
    animation: hub-spin 30s linear infinite;
}
@keyframes hub-spin { to { transform: rotate(360deg); } }
.hiw-hub-inner {
    text-align: center;
    padding: 14px;
}
.hiw-hub-inner i {
    font-size: 1.6rem;
    margin-bottom: 6px;
    display: block;
}
.hiw-hub-inner strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.15;
    display: block;
}
.hiw-hub-inner span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 3px;
    display: block;
}

.hiw-node {
    position: absolute;
    width: 200px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1;
}
.hiw-node:hover {
    border-color: rgba(14,165,233,0.5);
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.hiw-node .hiw-num {
    display: inline-block;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: static;
    transform: none;
    box-shadow: var(--shadow-navy);
}
.hiw-node .hiw-icon {
    width: 50px; height: 50px;
    margin: 0 auto 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}
.hiw-node:hover .hiw-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    transform: rotate(-8deg);
}
.hiw-node h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-strong);
    margin-bottom: 6px;
}
.hiw-node p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

/* Position nodes around the orbit at 5 equal angles starting at top */
.hiw-node-1 { top: 0%; left: 50%; transform: translate(-50%, 0); }
.hiw-node-2 { top: 34%; right: 0%; transform: translate(0, -50%); }
.hiw-node-3 { bottom: 6%; right: 12%; }
.hiw-node-4 { bottom: 6%; left: 12%; }
.hiw-node-5 { top: 34%; left: 0%; transform: translate(0, -50%); }

.hiw-node:hover {
    /* keep position on hover (don't override transform) */
}
.hiw-node-1:hover { transform: translate(-50%, -4px) scale(1.03); }
.hiw-node-2:hover { transform: translate(0, calc(-50% - 4px)) scale(1.03); }
.hiw-node-5:hover { transform: translate(0, calc(-50% - 4px)) scale(1.03); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .wheel-layout { grid-template-columns: 1fr; gap: 24px; }
    .wheel-panel-left, .wheel-panel-right {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
    .wheel-panel-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .hiw-cycle { height: auto; display: flex; flex-direction: column; gap: 16px; }
    .hiw-orbit, .hiw-hub { display: none; }
    .hiw-node {
        position: static;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        transform: none !important;
    }

    .features-honeycomb { gap: 14px; }
    .hc-row { flex-wrap: wrap; }
    .hc-row-mid { margin: 0; }
    .hc-hex { width: 150px; }
}

@media (max-width: 720px) {
    .modules-hex-grid { gap: 10px 10px; }
    .hex-wrap { width: 140px; }
    .hex-inner i { font-size: 1.4rem; }
    .hex-inner strong { font-size: 0.85rem; }
    .hex-inner span { font-size: 0.62rem; }

    .wheel-panel-items { grid-template-columns: 1fr; }
    .grc-wheel { max-width: 95vw; }

    .features-honeycomb { gap: 10px; }
    .hc-row { flex-wrap: wrap; gap: 8px; }
    .hc-hex { width: 130px; }
    .hc-inner { padding: 12px 8px; }
    .hc-inner i { font-size: 1.2rem; }
    .hc-inner strong { font-size: 0.8rem; }
    .hc-inner span { font-size: 0.62rem; }
}

/* ============================================
   MODULE PANEL VISUAL ENHANCEMENTS
   icons + stats strip + mini visualizations
   ============================================ */

/* Module Stats Strip */
.module-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0 0 32px;
    padding: 18px;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.module-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(14,165,233,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.ms-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.ms-item:hover {
    background: rgba(14,165,233,0.15);
    border-color: rgba(14,165,233,0.4);
    transform: translateY(-2px);
}
.ms-ico {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}
.ms-item strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
}
.ms-item span {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.72rem;
    margin-top: 3px;
    letter-spacing: 0.4px;
}

/* Enhanced func-card with icon + top row */
.func-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.func-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(14,165,233,0.25);
}
.func-card:hover .func-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    transform: rotate(-6deg) scale(1.05);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}
.func-card .func-card-top .func-num {
    position: static;
    transform: none;
    background: none;
    box-shadow: none;
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0;
    opacity: 0.4;
    letter-spacing: 0;
}

/* Featured func-card — has visual */
.func-card-featured {
    background: linear-gradient(180deg, #ffffff 0%, var(--accent-soft) 130%);
    border-color: rgba(14,165,233,0.35);
}
.func-card-featured::before {
    content: '✦';
    position: absolute;
    top: 10px; right: 12px;
    color: var(--accent);
    font-size: 0.85rem;
    opacity: 0.55;
}

.func-visual {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, var(--bg-tinted) 100%);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
}

/* === KRI Gauge === */
.fv-gauge svg { width: 100%; height: auto; max-height: 90px; display: block; }
.fv-gauge-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.68rem;
    font-weight: 700;
}
.fv-lbl { padding: 3px 8px; border-radius: 50px; }
.fv-lbl.green { background: #dcfce7; color: #166534; }
.fv-lbl.amber { background: #fef3c7; color: #92400e; }
.fv-lbl.red { background: #fee2e2; color: #b91c1c; }

/* === Mini Workflow Flow === */
.fv-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}
.fv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.fv-step i {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
.fv-step span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}
.fv-step.done i {
    background: linear-gradient(135deg, #28c840, #1a8a2c);
    color: #ffffff;
    border-color: transparent;
}
.fv-step.active i {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(14,165,233,0.25);
}
.fv-arrow {
    height: 2px;
    background: linear-gradient(90deg, #28c840, var(--accent));
    border-radius: 50px;
    width: 16px;
    flex-shrink: 0;
}
.fv-arrow.dim { background: var(--border); }

/* === Bar Chart — Fixed with proper height + animated colors === */
.fv-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 130px;
    padding: 8px 4px 0;
}
.fv-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    height: 100%;
    position: relative;
}
.fv-bar span {
    display: block;
    width: 75%;
    height: var(--h);
    border-radius: 6px 6px 0 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    animation: fv-bar-grow 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: filter 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.fv-bar span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: fv-bar-shine 3s ease-in-out infinite;
    border-radius: inherit;
}
.fv-bar:hover span { transform: translateY(-3px); filter: brightness(1.1); }
@keyframes fv-bar-grow {
    from { height: 0; }
}
@keyframes fv-bar-shine {
    0%, 100% { transform: translateY(100%); opacity: 0; }
    50% { transform: translateY(-100%); opacity: 1; }
}
.fv-bar:nth-child(1) span { background: linear-gradient(180deg, #38bdf8, #0369a1); }
.fv-bar:nth-child(2) span { background: linear-gradient(180deg, #1f4a8a, #0a1f3d); }
.fv-bar:nth-child(3) span { background: linear-gradient(180deg, #06b6d4, #0891b2); }
.fv-bar:nth-child(4) span { background: linear-gradient(180deg, #38bdf8, #0ea5e9); }
.fv-bar.accent span { background: linear-gradient(180deg, #fbbf24, #d97706) !important; }
.fv-bar label {
    font-size: 0.66rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.fv-bar.accent label { color: var(--orange-dark); font-weight: 800; }

/* === Config Coverage Chart === */
.fv-config {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fv-config-row {
    display: grid;
    grid-template-columns: 110px 1fr 38px;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}
.fv-config-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    color: var(--text-soft);
    font-weight: 600;
}
.fv-config-label i {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--accent-soft), var(--orange-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.fv-config-track {
    height: 10px;
    background: #eef2f7;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}
.fv-config-track span {
    display: block;
    height: 100%;
    width: var(--w);
    background: var(--c);
    border-radius: 50px;
    animation: fv-bar-grow 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.fv-config-track span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: mch-bar-shine 3s ease-in-out infinite;
    border-radius: inherit;
}
.fv-config-row strong {
    text-align: right;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-strong);
}

/* === BIA Timeline === */
.fv-timeline {
    position: relative;
    padding: 24px 0 4px;
}
.fv-tl-line {
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, #5cc4b0 0%, #ef4444 40% 50%, #28c840 100%);
    border-radius: 50px;
}
.fv-tl-event {
    position: relative;
    display: inline-block;
    width: 30%;
    text-align: center;
    vertical-align: top;
}
.fv-tl-event:nth-child(2) { margin-left: 5%; }
.fv-tl-event:nth-child(3) { margin-left: 5%; }
.fv-tl-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #5cc4b0;
    margin: 26px auto 8px;
    box-shadow: 0 0 0 4px rgba(92,196,176,0.2);
}
.fv-tl-dot.critical {
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.25);
}
.fv-tl-dot.success {
    background: #28c840;
    box-shadow: 0 0 0 4px rgba(40,200,64,0.25);
}
.fv-tl-event strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-strong);
    font-family: var(--font-display);
}
.fv-tl-event span {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* === Donut === */
.fv-donut {
    position: relative;
    width: 90px;
    margin: 0 auto;
}
.fv-donut svg { width: 100%; height: auto; display: block; }
.fv-donut-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.fv-donut-inner strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-strong);
    font-weight: 800;
    line-height: 1;
}
.fv-donut-inner span {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.fv-donut-legend {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--text-soft);
}
.fv-donut-legend i {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}
.fv-donut-legend .dot.green { background: #28c840; }
.fv-donut-legend .dot.grey { background: #eef2f7; }

/* === Progress bars === */
.fv-progress-set { display: flex; flex-direction: column; gap: 8px; }
.fv-prog-row {
    display: grid;
    grid-template-columns: 90px 1fr 32px;
    align-items: center;
    gap: 8px;
}
.fv-prog-row label {
    font-size: 0.7rem;
    color: var(--text-soft);
    font-weight: 600;
}
.fv-prog-track {
    height: 8px;
    background: #eef2f7;
    border-radius: 50px;
    overflow: hidden;
}
.fv-prog-fill {
    height: 100%;
    width: var(--w);
    background: var(--c);
    border-radius: 50px;
    animation: fv-grow 1.2s ease-out;
}
@keyframes fv-grow { from { width: 0 !important; } }
.fv-prog-row strong {
    text-align: right;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-strong);
}

/* === Mini Org Tree === */
.fv-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.fv-tree-node {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-strong);
}
.fv-tree-node i { color: var(--accent-dark); font-size: 0.8rem; }
.fv-tree-root {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    border-color: transparent;
}
.fv-tree-root i { color: var(--accent-light); }
.fv-tree-line {
    width: 2px;
    height: 14px;
    background: var(--border);
}
.fv-tree-row {
    display: flex;
    gap: 8px;
    position: relative;
}
.fv-tree-row::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
}

/* === Incident Funnel === */
.fv-funnel {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fv-funnel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--w);
    margin: 0 auto;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    border: 1px solid rgba(14,165,233,0.3);
    border-radius: 6px;
    font-size: 0.72rem;
    transition: var(--transition);
}
.fv-funnel-row:hover { transform: scale(1.02); border-color: var(--accent); }
.fv-funnel-row span { color: var(--text-soft); font-weight: 600; }
.fv-funnel-row strong {
    color: var(--accent-dark);
    font-family: var(--font-display);
    font-weight: 800;
}

/* === Trend chart === */
.fv-trend svg { width: 100%; height: 80px; display: block; }
.fv-trend-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.fv-trend-foot strong { color: #166534; font-weight: 700; }
.fv-trend-foot strong.up i { font-size: 0.65rem; margin-right: 3px; }

/* === RBAC Matrix === */
.fv-matrix {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.fv-mx-row {
    display: grid;
    grid-template-columns: 80px repeat(3, 1fr);
    gap: 3px;
    align-items: center;
}
.fv-mx-head span {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.fv-mx-role {
    font-size: 0.72rem;
    color: var(--text-strong);
    font-weight: 700;
    padding: 5px 8px;
    background: var(--navy-soft);
    border-radius: 5px;
}
.fv-mx-row > span:not(.fv-mx-role) {
    height: 22px;
    background: var(--bg-tinted);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fv-mx-on {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    position: relative;
}
.fv-mx-on::after {
    content: '✓';
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .module-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .module-stats { grid-template-columns: 1fr; }
    .ms-item { padding: 12px 14px; }
    .fv-flow { flex-wrap: wrap; }
    .fv-arrow { display: none; }
    .fv-prog-row { grid-template-columns: 70px 1fr 30px; }
}

/* ============================================
   AUTO-SCROLLING COMPLIANCE MARQUEE
   ============================================ */
.compliance-marquee {
    background: linear-gradient(90deg, var(--navy-deep), var(--navy-dark));
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compliance-marquee::before,
.compliance-marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.compliance-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy-deep), transparent);
}
.compliance-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--navy-deep), transparent);
}
.marquee-track { display: flex; }
.marquee-row {
    display: flex;
    gap: 48px;
    animation: marquee-scroll 28s linear infinite;
    white-space: nowrap;
    align-items: center;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee-row span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.marquee-row span i {
    color: var(--accent);
    font-size: 1.05rem;
}

/* ============================================
   TRANSFORMATION STORY SECTION
   ============================================ */
.story-section {
    background:
        radial-gradient(ellipse at 50% 10%, rgba(14,165,233,0.07) 0%, transparent 50%),
        var(--bg-tinted);
    position: relative;
    overflow: hidden;
}
.story-flow {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 0;
}
.story-rail {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: var(--border);
    border-radius: 50px;
}
.story-rail-fill {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50px;
    box-shadow: 0 0 16px rgba(14,165,233,0.5);
}
.story-chapter {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 60px;
}
.story-chapter:last-child { margin-bottom: 0; }
.story-marker {
    grid-column: 2;
    width: 64px; height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(14,165,233,0.45);
    position: relative;
    z-index: 2;
}
.story-marker-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.3;
    animation: marker-pulse 2.2s ease-out infinite;
}
@keyframes marker-pulse {
    0% { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
.story-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14,165,233,0.35);
}
.story-chapter-left .story-card { grid-column: 1; margin-right: 20px; }
.story-chapter-right .story-card { grid-column: 3; margin-left: 20px; }
.story-chapter-left .story-card::after,
.story-chapter-right .story-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent));
}
.story-chapter-left .story-card::after {
    right: -24px;
    transform: translateY(-50%);
}
.story-chapter-right .story-card::after {
    left: -24px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--accent), var(--border));
}
.story-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--navy-soft);
    color: var(--navy);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.story-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-strong);
    margin-bottom: 10px;
}
.story-card > p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.story-pains, .story-wins {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pain-chip, .win-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}
.pain-chip { background: #fee2e2; color: #b91c1c; }
.pain-chip i { background: #fff; color: #b91c1c; width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.55rem; }
.win-chip { background: #dcfce7; color: #166534; }
.win-chip i { background: #fff; color: #166534; width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.55rem; }
.story-meter {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    padding: 14px;
    background: var(--bg-tinted);
    border-radius: 12px;
}
.story-meter-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.story-meter-step i {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    background: #fff;
    border: 2px solid var(--border);
    color: var(--text-light);
}
.story-meter-step.done i {
    background: linear-gradient(135deg, #28c840, #1a8a2c);
    color: #fff;
    border-color: transparent;
}
.story-meter-step.active i {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border-color: transparent;
    animation: marker-pulse-mini 1.6s ease-in-out infinite;
}
@keyframes marker-pulse-mini {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(14,165,233,0); }
}
.story-meter-step span {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
   PERSONA SWITCHER
   ============================================ */
.persona-section { background: var(--primary); }
.persona-switcher {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    background: var(--bg-tinted);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: var(--radius-lg);
}
.persona-tab {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 18px 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    text-align: center;
}
.persona-tab:hover {
    background: var(--accent-soft);
    border-color: rgba(14,165,233,0.3);
    transform: translateY(-3px);
}
.persona-tab.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}
.persona-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 4px;
    transition: var(--transition);
}
.persona-tab.active .persona-avatar {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
}
.persona-tab strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-strong);
    font-weight: 800;
}
.persona-tab.active strong { color: #ffffff; }
.persona-tab span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}
.persona-tab.active span { color: rgba(255,255,255,0.85); }

.persona-panel {
    display: none;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
    animation: persona-fade-in 0.5s ease-out;
}
.persona-panel.active { display: grid; }
@keyframes persona-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.persona-content {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}
.persona-quote {
    position: relative;
    padding: 18px 22px;
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    margin-bottom: 22px;
}
.persona-quote i {
    position: absolute;
    top: 12px; right: 18px;
    color: var(--accent);
    font-size: 1.2rem;
    opacity: 0.45;
}
.persona-quote p {
    font-style: italic;
    color: var(--text-strong);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}
.persona-tasks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    list-style: none;
    padding: 0;
}
.persona-tasks li {
    display: grid;
    grid-template-columns: 60px 44px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--bg-tinted);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    transition: var(--transition);
}
.persona-tasks li:hover {
    background: var(--accent-soft);
    border-color: rgba(14,165,233,0.35);
    transform: translateX(4px);
}
.pt-time {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-align: center;
    padding: 4px 6px;
    background: #fff;
    border-radius: 6px;
}
.pt-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.persona-tasks li strong {
    display: block;
    color: var(--text-strong);
    font-size: 0.9rem;
    font-weight: 700;
}
.persona-tasks li span {
    display: block;
    color: var(--text-muted);
    font-size: 0.76rem;
    margin-top: 2px;
    line-height: 1.4;
}

/* Persona Screen Mockup */
.persona-screen {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.ps-mock {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.ps-mock-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.ps-mock-bar > span {
    width: 8px; height: 8px;
    background: var(--border-strong);
    border-radius: 50%;
}
.ps-mock-bar > span:first-child { background: #ff5f57; }
.ps-mock-bar > span:nth-child(2) { background: #febc2e; }
.ps-mock-bar > span:nth-child(3) { background: #28c840; }
.ps-mock-title {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}
.ps-mock-body {
    padding: 18px;
    min-height: 280px;
}

.ps-mock-kpi {
    display: inline-block;
    background: var(--bg-tinted);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 10px 14px;
    width: calc(33.333% - 6px);
    margin-right: 6px;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
}
.ps-mock-kpi strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-strong);
    font-weight: 800;
}
.ps-mock-kpi small {
    color: var(--text-muted);
    font-size: 0.66rem;
}
.ps-mock-kpi i {
    position: absolute;
    top: 10px; right: 10px;
    width: 14px; height: 14px;
    border-radius: 50%;
    display: inline-block;
}
.ps-mock-kpi i.up { background: #dcfce7; }
.ps-mock-kpi i.up::before { content: '↑'; color: #166534; font-size: 0.7rem; line-height: 14px; }
.ps-mock-kpi i.down { background: #fee2e2; }
.ps-mock-kpi i.down::before { content: '↓'; color: #b91c1c; font-size: 0.7rem; line-height: 14px; }

.ps-mock-heatmap {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hm-mini { display: flex; gap: 3px; }
.hm-mini i {
    flex: 1;
    height: 14px;
    background: #dcfce7;
    border-radius: 3px;
}
.hm-mini i.med { background: #fef3c7; }
.hm-mini i.hi { background: #ffedd5; }
.hm-mini i.cr { background: #fee2e2; }

.ps-mock-list { display: flex; flex-direction: column; gap: 6px; }
.psl-row {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-tinted);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-size: 0.78rem;
}
.psl-row i.crit { color: #b91c1c; }
.psl-row i.warn { color: #0ea5e9; }
.psl-row i.ok { color: #166534; }
.psl-row span { color: var(--text); }
.psl-row em {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.ps-mock-table { display: flex; flex-direction: column; gap: 5px; }
.psm-row {
    display: grid;
    grid-template-columns: 70px 1fr 100px;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    font-size: 0.76rem;
}
.psm-row.psm-head { background: var(--navy-deep); color: rgba(255,255,255,0.8); border-color: transparent; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.psp { padding: 3px 8px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-align: center; }
.psp.ok { background: #dcfce7; color: #166534; }
.psp.warn { background: #fef3c7; color: #92400e; }
.psp.pen { background: var(--bg-soft); color: var(--text-muted); }

.ps-mock-score {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border);
}
.psc-circle { position: relative; width: 80px; }
.psc-circle svg { width: 100%; height: auto; display: block; }
.psc-circle strong {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-strong);
}
.psc-meta strong { display: block; color: var(--text-strong); font-size: 0.85rem; font-weight: 700; }
.psc-meta span { color: #166534; font-size: 0.72rem; font-weight: 600; }

/* ============================================
   INTERACTIVE MATURITY TOOL
   ============================================ */
.maturity-section {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(14,165,233,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(31,74,138,0.05) 0%, transparent 55%),
        linear-gradient(180deg, var(--primary) 0%, var(--bg-tinted) 100%);
}
.maturity-tool {
    max-width: 880px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.mat-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.mat-progress-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-soft);
    border-radius: 50px;
    overflow: hidden;
}
.mat-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 50px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mat-progress span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 1px;
}
.mat-question {
    display: none;
    animation: mat-slide 0.4s ease-out;
}
.mat-question.active { display: block; }
@keyframes mat-slide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.mat-q-icon {
    width: 56px; height: 56px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
}
.mat-question h3 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-strong);
    margin-bottom: 22px;
}
.mat-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.mat-option {
    background: var(--bg-tinted);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 18px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font);
    position: relative;
    overflow: hidden;
}
.mat-option::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: opacity 0.3s;
}
.mat-option > * { position: relative; z-index: 1; }
.mat-option:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.mat-option:hover::before { opacity: 0.05; }
.mat-option.selected {
    border-color: transparent;
    color: #ffffff;
}
.mat-option.selected::before { opacity: 1; }
.mat-option i {
    font-size: 1.3rem;
    color: var(--accent-dark);
    margin-bottom: 4px;
}
.mat-option.selected i { color: #ffffff; }
.mat-option strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-strong);
    font-weight: 700;
}
.mat-option.selected strong { color: #ffffff; }
.mat-option span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.mat-option.selected span { color: rgba(255,255,255,0.85); }

.mat-result {
    display: none;
    text-align: center;
    animation: mat-slide 0.5s ease-out;
}
.mat-result.show { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mat-result-ring {
    position: relative;
    width: 160px;
}
.mat-result-ring svg { width: 100%; height: auto; }
.mat-result-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.mat-result-num strong {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}
.mat-result-num span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 600;
}
.mat-result-tier {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.mat-result-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-strong);
    margin-bottom: 12px;
}
.mat-result-content p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 22px;
}
.mat-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .story-rail { left: 28px; transform: none; }
    .story-chapter {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }
    .story-marker { grid-column: 1; width: 56px; height: 56px; font-size: 1.3rem; }
    .story-chapter-left .story-card, .story-chapter-right .story-card {
        grid-column: 2; margin: 0;
    }
    .story-chapter-left .story-card::after, .story-chapter-right .story-card::after {
        left: -16px; right: auto;
    }

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

    .mat-options { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .marquee-row span { font-size: 0.85rem; }
    .marquee-row { gap: 28px; }

    .persona-switcher { grid-template-columns: 1fr; }
    .persona-tab { flex-direction: row; text-align: left; }
    .persona-avatar { margin-bottom: 0; }

    .persona-tasks li { grid-template-columns: 50px 1fr; }
    .persona-tasks li .pt-icon { display: none; }

    .maturity-tool { padding: 24px 20px; }
    .mat-question h3 { font-size: 1.15rem; }
    .mat-result-content h3 { font-size: 1.4rem; }
}

/* ============================================
   PRODUCT HERO V2 — Dark Navy BMC-style
   ============================================ */
.product-hero-v2 {
    position: relative;
    min-height: auto;
    padding: 150px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, #0c4a6e 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 0% 100%, #1e3a8a 0%, transparent 50%),
        linear-gradient(135deg, #0a1f3d 0%, #142f5c 50%, #0a1f3d 100%);
    color: #ffffff;
}
.phv2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.phv2-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 30% at 75% 20%, rgba(14,165,233,0.35) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 15% 80%, rgba(245,158,11,0.12) 0%, transparent 60%);
}
.phv2-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 30%, transparent 85%);
}
.phv2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
}
.phv2-orb-1 {
    top: 10%; right: 8%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 60%);
    animation: orb-float 14s ease-in-out infinite;
}
.phv2-orb-2 {
    bottom: 5%; left: 4%;
    width: 320px; height: 320px;
    background: radial-gradient(circle, #f59e0b 0%, transparent 60%);
    opacity: 0.25;
    animation: orb-float 16s ease-in-out infinite reverse;
}
@keyframes orb-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}
.product-hero-v2 .container { position: relative; z-index: 1; }

.phv2-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}
.phv2-content { max-width: 620px; min-width: 0; }

.phv2-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(245,158,11,0.4);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.phv2-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(245,158,11,0.18);
    animation: badge-pulse 1.6s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245,158,11,0.18); }
    50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

.phv2-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
    line-height: 1;
}
.phv2-logo .bac { color: #ffffff; }
.phv2-logo .grc {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.phv2-logo .dot {
    width: 9px; height: 9px;
    background: var(--orange);
    border-radius: 50%;
    margin-left: 6px;
    margin-bottom: 3px;
    align-self: flex-end;
    box-shadow: 0 0 16px rgba(245,158,11,0.8);
}

.phv2-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}
.phv2-title .text-gradient {
    display: inline-block;
}

@media (max-width: 720px) {
    .phv2-title { font-size: clamp(1.8rem, 6vw, 2.2rem); }
}
.phv2-title .text-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phv2-desc {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.phv2-desc strong { color: #ffffff; font-weight: 700; }

.phv2-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.phv2-actions .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 6px 22px rgba(245,158,11,0.45);
    padding: 16px 32px;
    font-size: 1rem;
}
.phv2-actions .btn-primary:hover {
    box-shadow: 0 12px 32px rgba(245,158,11,0.6);
    transform: translateY(-2px);
}
.phv2-actions .btn-outline {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.25);
    color: #ffffff;
    padding: 14px 30px;
    backdrop-filter: blur(8px);
}
.phv2-actions .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.phv2-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.phv2-stat { display: flex; flex-direction: column; gap: 4px; }
.phv2-stat strong {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.phv2-stat strong small { font-size: 1.05rem; color: var(--orange); margin-left: 2px; font-weight: 700; }
.phv2-stat span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
.phv2-stat-sep {
    width: 1px; height: 32px;
    background: rgba(255,255,255,0.15);
}

/* === Visual: Browser Window === */
.phv2-visual {
    position: relative;
    width: 100%;
}
.phv2-window {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 40px 90px rgba(0,0,0,0.45),
        0 16px 36px rgba(14,165,233,0.25),
        0 0 0 1px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    transform: perspective(1500px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.phv2-window:hover {
    transform: perspective(1500px) rotateY(-1deg) rotateX(0deg) translateY(-6px);
}

.phv2-window-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
    border-bottom: 1px solid var(--border);
}
.phv2-dots { display: flex; gap: 6px; }
.phv2-dots span {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--border-strong);
}
.phv2-dots span:nth-child(1) { background: #ff5f57; }
.phv2-dots span:nth-child(2) { background: #febc2e; }
.phv2-dots span:nth-child(3) { background: #28c840; }
.phv2-url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 280px;
    margin: 0 auto;
}
.phv2-url i { color: #28c840; font-size: 0.7rem; }
.phv2-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.phv2-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
    50% { box-shadow: 0 0 0 5px rgba(245,158,11,0); }
}

.phv2-window-body {
    display: grid;
    grid-template-columns: 50px 1fr;
    background: #f7f9fc;
    min-height: 360px;
}
.phv2-sidebar {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}
.phv2-side-logo {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.phv2-side-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.phv2-side-icon:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}
.phv2-side-icon.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    box-shadow: var(--shadow-glow);
    position: relative;
}
.phv2-side-icon.active::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: var(--orange);
    border-radius: 50px;
}

.phv2-main {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}
.phv2-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.phv2-kpi {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 10px 12px;
    transition: var(--transition);
}
.phv2-kpi:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
}
.phv2-kpi-ic {
    width: 32px; height: 32px;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.phv2-kpi-blue { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.phv2-kpi-cyan { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.phv2-kpi-green { background: linear-gradient(135deg, #28c840, #1a8a2c); }
.phv2-kpi strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}
.phv2-kpi strong small { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; }
.phv2-kpi span {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 600;
}

.phv2-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 8px;
}
.phv2-chart-card, .phv2-heat-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 12px;
}
.phv2-card-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}
.phv2-area { width: 100%; height: 86px; display: block; }
.phv2-area-pulse {
    animation: chart-pulse 2s ease-in-out infinite;
    transform-origin: center;
}
@keyframes chart-pulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 7; opacity: 0.6; }
}

.phv2-heat {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
}
.phv2-heat i {
    aspect-ratio: 1.6 / 1;
    border-radius: 3px;
    background: #dcfce7;
}
.phv2-heat i.md { background: #fef3c7; }
.phv2-heat i.hi { background: #fed7aa; }
.phv2-heat i.cr { background: #fecaca; }

.phv2-tasks {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 10px 12px;
}
.phv2-task {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--text-soft);
}
.phv2-task em {
    margin-left: auto;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 600;
}
.phv2-task-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
}
.phv2-task-dot.ok { background: #28c840; }
.phv2-task-dot.pulse-blue {
    background: var(--accent);
    animation: live-pulse-blue 1.6s ease-in-out infinite;
}
@keyframes live-pulse-blue {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.5); }
    50% { box-shadow: 0 0 0 5px rgba(14,165,233,0); }
}
.phv2-task-dot.pulse-red {
    background: var(--orange);
    animation: live-pulse 1.4s ease-in-out infinite;
}

/* Floating side cards */
.phv2-float {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 36px rgba(10,24,48,0.18);
    animation: float-bob 4s ease-in-out infinite;
}
@keyframes float-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.phv2-float-alert {
    top: -18px; left: -28px;
    z-index: 3;
    animation-delay: 0.5s;
}
.phv2-float-ico {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(245,158,11,0.4);
}
.phv2-float-alert strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-strong);
    font-weight: 800;
}
.phv2-float-alert span {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.phv2-float-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--orange);
    margin-left: 6px;
    animation: live-pulse 1.4s ease-in-out infinite;
}

.phv2-float-score {
    bottom: -22px; right: -22px;
    z-index: 3;
}
.phv2-float-ring {
    width: 48px; height: 48px;
}
.phv2-float-score strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-strong);
    font-weight: 800;
    line-height: 1;
}
.phv2-float-score span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Scroll cue */
.phv2-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.phv2-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}
.phv2-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 50px;
    position: relative;
}
.phv2-mouse span {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 50px;
    animation: scroll-wheel 1.6s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0%, 20% { top: 6px; opacity: 1; }
    80%, 100% { top: 22px; opacity: 0; }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .phv2-grid { grid-template-columns: 1fr; gap: 60px; }
    .phv2-content { max-width: 100%; text-align: center; margin: 0 auto; }
    .phv2-stats { justify-content: center; }
    .phv2-actions { justify-content: center; }
    .phv2-window { transform: none; max-width: 600px; margin: 0 auto; }
    .phv2-float-alert { left: -10px; }
    .phv2-float-score { right: -10px; }
}
@media (max-width: 720px) {
    .product-hero-v2 { padding: 110px 0 70px; }
    .phv2-window-body { grid-template-columns: 44px 1fr; min-height: 320px; }
    .phv2-kpis { grid-template-columns: 1fr; }
    .phv2-kpi { padding: 8px 10px; }
    .phv2-row { grid-template-columns: 1fr; }
    .phv2-stats { gap: 14px; }
    .phv2-stat strong { font-size: 1.4rem; }
    .phv2-float { display: none; }
    .phv2-scroll { display: none; }
}

/* === Navbar styles for dark product/home hero === */
.product-page .navbar:not(.scrolled) .logo-be,
.product-page .navbar:not(.scrolled) .logo-head,
.home-page .navbar:not(.scrolled) .logo-be,
.home-page .navbar:not(.scrolled) .logo-head {
    color: #ffffff;
}
.product-page .navbar:not(.scrolled) .logo-sub,
.home-page .navbar:not(.scrolled) .logo-sub {
    color: rgba(255,255,255,0.65);
}
.product-page .navbar:not(.scrolled) .nav-links a,
.home-page .navbar:not(.scrolled) .nav-links a {
    color: rgba(255,255,255,0.85);
}
.product-page .navbar:not(.scrolled) .nav-links a:hover,
.product-page .navbar:not(.scrolled) .nav-links a.active,
.home-page .navbar:not(.scrolled) .nav-links a:hover,
.home-page .navbar:not(.scrolled) .nav-links a.active {
    color: #ffffff;
}
.product-page .navbar:not(.scrolled) .nav-toggle span,
.home-page .navbar:not(.scrolled) .nav-toggle span {
    background: #ffffff;
}

/* === Subtle orange accents elsewhere (sparingly) === */
.section-label {
    /* keep blue but add tiny orange dot before */
    position: relative;
}
.hero-badge .fa-shield-halved,
.story-marker,
.hiw-hub {
    /* These should retain dynamic styling — no override */
}

/* Add orange highlight glow ring to active wheel center */
.grc-wheel .seg:hover { filter: drop-shadow(0 0 6px rgba(245,158,11,0.5)); }

/* Featured card star — back to subtle orange */
.func-card-featured::before {
    color: var(--orange);
}

/* Live LIVE badge in any existing card */
.hv-card-badge {
    background: var(--orange) !important;
    color: #ffffff !important;
}

/* ============================================
   CUSTOM BAC-GRC SYSTEM MOCKUP
   (replaces uploaded screenshot in Featured section)
   ============================================ */
.solution-visual { position: relative; }
.grc-system-mockup {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.45),
        0 12px 28px rgba(14,165,233,0.18),
        0 0 0 1px rgba(255,255,255,0.1);
    transform: perspective(1500px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.grc-system-mockup:hover {
    transform: perspective(1500px) rotateY(-1deg) rotateX(0deg) translateY(-6px);
}

.gsm-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
    border-bottom: 1px solid var(--border);
}
.gsm-dots { display: flex; gap: 6px; }
.gsm-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.gsm-dots span:nth-child(1) { background: #ff5f57; }
.gsm-dots span:nth-child(2) { background: #febc2e; }
.gsm-dots span:nth-child(3) { background: #28c840; }
.gsm-url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 320px;
    margin: 0 auto;
    padding: 4px 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}
.gsm-url i { color: #28c840; font-size: 0.68rem; }
.gsm-user {
    position: relative;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--bg-tinted);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}
.gsm-user-dot {
    position: absolute;
    top: 4px; right: 4px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 2px #ffffff;
    animation: live-pulse 1.4s ease-in-out infinite;
}

.gsm-body {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 380px;
    background: #f7f9fc;
}

/* Sidebar */
.gsm-side {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
    gap: 8px;
}
.gsm-side-logo {
    margin-bottom: 10px;
    text-align: center;
}
.gsm-logo-text {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.gsm-logo-text small {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 0.82rem;
}
.gsm-side-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.gsm-side-icon:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}
.gsm-side-icon.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(14,165,233,0.4);
}
.gsm-side-icon.active::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 20px;
    background: var(--orange);
    border-radius: 50px;
}

/* Main */
.gsm-main {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}
.gsm-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-soft);
}
.gsm-greet {
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 500;
}
.gsm-greet strong {
    color: var(--text-strong);
    font-weight: 800;
}
.gsm-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.gsm-sub em {
    font-style: normal;
    color: var(--orange);
    font-weight: 700;
}
.gsm-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-tinted);
    padding: 3px;
    border-radius: 8px;
}
.gsm-tabs span {
    padding: 5px 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    border-radius: 5px;
    cursor: default;
}
.gsm-tabs span.active {
    background: #ffffff;
    color: var(--text-strong);
    box-shadow: var(--shadow-xs);
}

/* KPIs */
.gsm-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gsm-kpi {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: var(--transition);
}
.gsm-kpi:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.gsm-kpi-ic {
    width: 30px; height: 30px;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.kpi-navy { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.kpi-cyan { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.kpi-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.kpi-green { background: linear-gradient(135deg, #28c840, #1a8a2c); }
.gsm-kpi-body { display: flex; flex-direction: column; line-height: 1; flex: 1; }
.gsm-kpi-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-strong);
}
.gsm-kpi-num small { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; }
.gsm-kpi-lbl {
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 600;
}
.gsm-kpi-trend {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50px;
}
.gsm-kpi-trend.up { background: #dcfce7; color: #166534; }
.gsm-kpi-trend.down { background: #fee2e2; color: #b91c1c; }

/* Row: chart + heatmap */
.gsm-row {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 8px;
}
.gsm-panel {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 12px;
}
.gsm-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.gsm-panel-title {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.gsm-panel-pill {
    font-size: 0.65rem;
    background: #dcfce7;
    color: #166534;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 700;
}
.gsm-panel-axis, .gsm-panel-link {
    font-size: 0.62rem;
    color: var(--accent-dark);
    font-weight: 700;
}
.gsm-chart { width: 100%; height: 90px; display: block; }

.gsm-heat {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    margin-top: 2px;
}
.gsm-heat i {
    aspect-ratio: 1.5 / 1;
    border-radius: 3px;
    background: #dcfce7;
}
.gsm-heat i.md { background: #fef3c7; }
.gsm-heat i.hi { background: #fed7aa; }
.gsm-heat i.cr { background: #fecaca; }

/* Table */
.gsm-table { display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.gsm-tr {
    display: grid;
    grid-template-columns: 60px 1fr 70px 70px;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: var(--bg-tinted);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text);
}
.gsm-th {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.gsm-ref {
    font-family: 'Courier New', monospace;
    color: var(--accent-dark);
    font-weight: 700;
}
.gsm-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    font-style: normal;
}
.gsm-pill.pcr { background: #fee2e2; color: #b91c1c; }
.gsm-pill.phi { background: #ffedd5; color: #c2410c; }
.gsm-pill.ppd { background: #fef3c7; color: #92400e; }
.gsm-pill.pok { background: #dcfce7; color: #166534; }

/* Floating alert next to mockup */
.gsm-float {
    position: absolute;
    bottom: -18px; left: -22px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 30px rgba(10,24,48,0.18);
    animation: float-bob 4s ease-in-out infinite;
    z-index: 3;
}
.gsm-float-ic {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}
.gsm-float strong {
    display: block;
    font-size: 0.78rem;
    color: var(--text-strong);
    font-weight: 800;
}
.gsm-float span {
    font-size: 0.68rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .grc-system-mockup { transform: none; }
    .gsm-body { grid-template-columns: 48px 1fr; min-height: 320px; }
    .gsm-kpis { grid-template-columns: 1fr 1fr; }
    .gsm-row { grid-template-columns: 1fr; }
    .gsm-float { left: 0; right: 0; bottom: -14px; margin: 0 auto; max-width: 220px; }
    .gsm-tr { grid-template-columns: 50px 1fr; font-size: 0.68rem; }
    .gsm-tr span:nth-child(3), .gsm-tr span:nth-child(4) { display: none; }
}

/* ============================================
   HOME HERO VISUAL V2 — Premium Stacked Cards
   ============================================ */
.hero-visual-v2 {
    position: relative;
    width: 100%;
    height: 580px;
    perspective: 1500px;
}
.hvv2-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 40%, rgba(14,165,233,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(245,158,11,0.08) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.hvv2-card {
    position: absolute;
    background: linear-gradient(165deg, #0a1f3d 0%, #142f5c 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    color: #ffffff;
    box-shadow:
        0 24px 56px rgba(10,24,48,0.25),
        0 12px 28px rgba(14,165,233,0.12),
        inset 0 1px 0 rgba(255,255,255,0.08);
    overflow: hidden;
    z-index: 1;
}
.hvv2-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(14,165,233,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(245,158,11,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Main Score Card */
.hvv2-score {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    padding: 22px;
    z-index: 2;
    animation: card-float 6s ease-in-out infinite;
}
@keyframes card-float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 6px)); }
}
.hvv2-score-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.hvv2-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1.5px;
}
.hvv2-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: live-pulse 1.4s ease-in-out infinite;
}
.hvv2-mini-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-weight: 500;
}
.hvv2-trend-up {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(40,200,64,0.15);
    color: #4ade80;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}
.hvv2-gauge {
    position: relative;
    margin: 0 auto;
    max-width: 240px;
    z-index: 1;
}
.hvv2-gauge svg { width: 100%; height: auto; display: block; }
.hvv2-gauge-num {
    position: absolute;
    left: 0; right: 0;
    bottom: 6px;
    text-align: center;
}
.hvv2-gauge-num strong {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(14,165,233,0.6);
}
.hvv2-gauge-num span {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 1px;
}
.hvv2-mini-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    margin-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}
.hvv2-mini-stats > div:not(.sep) {
    flex: 1;
    text-align: center;
}
.hvv2-mini-stats span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.hvv2-mini-stats span small {
    font-size: 0.72rem;
    color: var(--accent-light);
    font-weight: 700;
}
.hvv2-mini-stats label {
    display: block;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
}
.hvv2-mini-stats .sep {
    width: 1px; height: 24px;
    background: rgba(255,255,255,0.1);
}

/* Floating Modules Card (top-left) */
.hvv2-modules {
    top: 10px;
    left: -10px;
    width: 220px;
    padding: 16px 18px;
    z-index: 3;
    transform: rotate(-3deg);
    animation: card-float-1 7s ease-in-out infinite;
}
@keyframes card-float-1 {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-8px); }
}
.hvv2-modules-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.hvv2-modules-head span {
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}
.hvv2-modules-head small {
    font-size: 0.65rem;
    color: #4ade80;
    font-weight: 600;
}
.hvv2-modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.hvv2-mod {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
}
.hvv2-mod i {
    width: 22px; height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #ffffff;
}
.hvv2-mod.ok i { background: linear-gradient(135deg, #28c840, #1a8a2c); }
.hvv2-mod.warn i { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.hvv2-mod label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}

/* Floating Alert Card (top-right) */
.hvv2-alert {
    top: 50px;
    right: -10px;
    width: 240px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    transform: rotate(3deg);
    animation: card-float-2 6.5s ease-in-out infinite;
}
@keyframes card-float-2 {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-6px); }
}
.hvv2-alert-ic {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(245,158,11,0.5);
    position: relative;
    z-index: 1;
}
.hvv2-alert-body { flex: 1; position: relative; z-index: 1; }
.hvv2-alert-body strong {
    display: block;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
}
.hvv2-alert-body span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.55);
}
.hvv2-alert-time {
    font-size: 0.65rem;
    color: var(--accent-light);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Floating Trend Card (bottom-right) */
.hvv2-trend {
    bottom: 30px;
    right: -20px;
    width: 220px;
    padding: 14px 16px;
    z-index: 3;
    transform: rotate(-2deg);
    animation: card-float-3 8s ease-in-out infinite;
}
@keyframes card-float-3 {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-7px); }
}
.hvv2-trend-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}
.hvv2-trend-head span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    letter-spacing: 0.4px;
}
.hvv2-trend-head strong {
    font-size: 0.7rem;
    color: #4ade80;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.hvv2-trend svg { width: 100%; height: 46px; display: block; position: relative; z-index: 1; }

/* === Responsive === */
@media (max-width: 1100px) {
    .hero-visual-v2 { height: 480px; max-width: 480px; margin: 0 auto; }
    .hvv2-score { width: 300px; }
    .hvv2-gauge-num strong { font-size: 2rem; }
}
@media (max-width: 720px) {
    .hero-visual-v2 { height: auto; min-height: 460px; }
    .hvv2-modules, .hvv2-alert, .hvv2-trend { display: none; }
    .hvv2-score { position: relative; top: auto; left: auto; transform: none; margin: 0 auto; width: 100%; max-width: 360px; animation: none; }
}

/* ============================================
   SUBTLE ORANGE ACCENTS PASS
   Echoes the brand logo dot — small decorative touches
   ============================================ */

/* Diff card numbers — orange gradient */
.diff-card .diff-number {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service card hover — orange top accent */
.service-card { position: relative; overflow: hidden; }
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }

/* Standard card icon glow on hover — orange tint */
.standard-card:hover .standard-icon {
    box-shadow: 0 8px 22px rgba(245,158,11,0.35);
}

/* Section title decorative dot above (where applicable) */
.section-header .section-label {
    position: relative;
}
.section-header .section-label::before {
    display: none;
}

/* Replace section-header section-label with centered orange dot */
.section-header .section-label {
    padding-left: 0;
    padding-top: 18px;
}
.section-header .section-label::before {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245,158,11,0.55);
}

/* Stat numbers (plus signs) — orange highlight */
.stat-plus { color: var(--orange) !important; }
.phv2-stat strong small { color: var(--orange); }

/* Benefit cards — orange dot before strong on hover */
.benefit-card { position: relative; transition: var(--transition); }
.benefit-card:hover { border-color: rgba(245,158,11,0.35); }
.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    color: #ffffff !important;
}

/* Featured pills/badges — orange */
.hex-featured-wrap::after,
.hc-hex-feature { /* keep */ }
.solution-badge {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(245,158,11,0.35) !important;
}

/* Module tab active — orange underline */
.module-tab.active {
    position: relative;
}
.module-tab.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--accent));
    border-radius: 50px;
}

/* Quote icon in persona section — orange */
.persona-quote i { color: var(--orange) !important; }

/* Story rail — small orange dot at top */
.story-rail::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(245,158,11,0.2), 0 0 18px rgba(245,158,11,0.6);
    animation: live-pulse 1.6s ease-in-out infinite;
}

/* Footer logo dot stays orange */
.footer .logo-dot,
.nav-logo .logo-dot,
.loader-logo + * .logo-dot {
    background: var(--orange) !important;
    box-shadow: 0 0 14px rgba(245,158,11,0.65) !important;
}
.logo-dot {
    background: var(--orange) !important;
    box-shadow: 0 0 14px rgba(245,158,11,0.65) !important;
}

/* Loader arrow — orange */
.loader-arrow { color: var(--orange) !important; }
.logo-a-arrow { color: var(--orange) !important; }

/* Hero accent line on h1 — orange */
.hero-line.accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* About float card — orange icon ring */
.about-float-card .float-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    box-shadow: 0 6px 18px rgba(245,158,11,0.4) !important;
}

/* CTA section accent border */
.cta-box {
    position: relative;
}
.cta-box::after {
    content: '';
    position: absolute;
    top: -2px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--accent));
    border-radius: 0 0 50px 50px;
}

/* Marker pulse in story uses orange */
.story-marker {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    box-shadow: 0 8px 24px rgba(245,158,11,0.45) !important;
}
.story-marker-pulse { background: var(--orange) !important; }

/* HIW hub — orange */
.hiw-hub {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    box-shadow: 0 16px 40px rgba(245,158,11,0.45) !important;
}
.hiw-hub::before { border-color: rgba(245,158,11,0.4) !important; }
.hiw-orbit circle:nth-child(2) { stroke: var(--orange) !important; }

/* Wheel center accent dashed ring already orange — keep */
/* Maturity Q icon — keep orange */
.mat-q-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    box-shadow: 0 8px 20px rgba(245,158,11,0.4) !important;
}
.mat-result-tier {
    background: var(--orange-soft) !important;
    color: var(--orange-dark) !important;
}
.mat-result-ring circle:nth-child(2) { stroke: var(--orange) !important; }

/* Persona quote left border — orange */
.persona-quote {
    background: linear-gradient(180deg, rgba(245,158,11,0.06), rgba(255,255,255,0.5)) !important;
    border-left: 4px solid var(--orange) !important;
}

/* Footer-bottom accent line */
.footer-bottom {
    position: relative;
}
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 2px;
    background: var(--orange);
    border-radius: 50px;
}

/* Hero badge — orange dot keeps */
.hero-badge i { color: var(--orange) !important; }

/* Stats divider on home hero — keep navy but small orange dot center */
.stat-divider {
    position: relative;
}
.stat-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 4px; height: 4px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(245,158,11,0.6);
}

/* CTA box border accent on hover */
.cta-box, .testi-card, .industry-card { transition: var(--transition); }
.testi-card:hover, .industry-card:hover { border-color: rgba(245,158,11,0.4) !important; }
.testi-quote-icon i, .testi-quote-icon {
    color: var(--orange) !important;
}

/* Add subtle orange to footer-socials hover */
.footer-socials a:hover { color: var(--orange) !important; }
.contact-socials .social-link:hover {
    border-color: var(--orange) !important;
    color: var(--orange) !important;
}

/* Module pill icons (BAC-GRC quick bar) — orange */
.module-pill i { color: var(--accent-dark); }
.module-pill:hover i { color: var(--orange); }

/* Pricing/Plan accents — none yet but reserve */

/* Compliance marquee — orange icons */
.marquee-row span i { color: var(--orange) !important; }

/* ============================================
   PSM2 — Persona Screen Mockups V2 (richer)
   ============================================ */
.persona-screen {
    padding: 14px;
}
.psm2 {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.psm2-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
    border-bottom: 1px solid var(--border);
}
.psm2-dots { display: flex; gap: 5px; }
.psm2-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.psm2-dots span:nth-child(1) { background: #ff5f57; }
.psm2-dots span:nth-child(2) { background: #febc2e; }
.psm2-dots span:nth-child(3) { background: #28c840; }
.psm2-title {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-strong);
    font-weight: 700;
}
.psm2-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    border-radius: 50px;
}
.psm2-live i {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: live-pulse 1.4s ease-in-out infinite;
}

.psm2-body {
    background: #f7f9fc;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* KPI Grid */
.psm2-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.psm2-kpi {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 10px 12px;
    transition: var(--transition);
}
.psm2-kpi:hover { border-color: var(--accent); transform: translateY(-2px); }
.psm2-kpi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.psm2-kpi-top i {
    width: 30px; height: 30px;
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}
.psm2-kpi-top em {
    font-style: normal;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 50px;
}
.psm2-kpi-top em.up { background: #dcfce7; color: #166534; }
.psm2-kpi-top em.down { background: #fee2e2; color: #b91c1c; }
.psm2-kpi strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}
.psm2-kpi small {
    display: block;
    font-size: 0.66rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

/* Stat strip */
.psm2-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark));
    border-radius: 10px;
    padding: 12px;
}
.psm2-stat-strip > div { text-align: center; color: #ffffff; }
.psm2-stat-strip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
}
.psm2-stat-strip span {
    display: block;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Row */
.psm2-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 8px;
}

/* Panel */
.psm2-panel {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 11px 12px;
}
.psm2-panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-strong);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}
.psm2-pill {
    font-size: 0.6rem;
    background: #dcfce7;
    color: #166534;
    padding: 2px 7px;
    border-radius: 50px;
    font-weight: 700;
}
.psm2-pill.up { background: #dcfce7; color: #166534; }
.psm2-pill-mini {
    background: var(--accent-soft);
    color: var(--accent-dark);
}
.psm2-tabs {
    display: inline-flex;
    gap: 2px;
    background: var(--bg-tinted);
    padding: 2px;
    border-radius: 6px;
}
.psm2-tabs em {
    font-style: normal;
    padding: 3px 8px;
    font-size: 0.62rem;
    color: var(--text-muted);
    font-weight: 700;
    border-radius: 4px;
}
.psm2-tabs em.active { background: #ffffff; color: var(--text-strong); box-shadow: var(--shadow-xs); }

.psm2-panel svg { width: 100%; height: auto; display: block; }

/* Heatmap */
.psm2-heat {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: 2px;
}
.psm2-heat i {
    aspect-ratio: 1 / 1;
    border-radius: 2px;
    background: #dcfce7;
}
.psm2-heat i.md { background: #fef3c7; }
.psm2-heat i.hi { background: #fed7aa; }
.psm2-heat i.cr { background: #fecaca; }

/* Alerts list */
.psm2-alerts { display: flex; flex-direction: column; gap: 5px; }
.psm2-alert {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    padding: 4px 0;
}
.psm2-alert .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text-light);
}
.psm2-alert .dot.pulse-red {
    background: var(--orange);
    animation: live-pulse 1.4s ease-in-out infinite;
}
.psm2-alert .dot.pulse-blue {
    background: var(--accent);
    animation: live-pulse-blue 1.6s ease-in-out infinite;
}
.psm2-alert .dot.ok { background: #28c840; }
.psm2-alert span { color: var(--text); }
.psm2-alert em {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.66rem;
    font-weight: 600;
}

/* Task list */
.psm2-tasks { display: flex; flex-direction: column; gap: 6px; }
.psm2-task {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    background: var(--bg-tinted);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    transition: var(--transition);
}
.psm2-task:hover { border-color: var(--accent); transform: translateX(2px); }
.psm2-task.done { opacity: 0.7; }
.psm2-task-ic {
    width: 26px; height: 26px;
    border-radius: 7px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}
.psm2-task-ic.crit { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.psm2-task-ic.warn { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.psm2-task-ic.ok { background: linear-gradient(135deg, #28c840, #1a8a2c); }
.psm2-task-body strong {
    display: block;
    font-size: 0.78rem;
    color: var(--text-strong);
    font-weight: 700;
    line-height: 1.25;
}
.psm2-task-body span {
    display: block;
    font-size: 0.66rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.psm2-task-due {
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 50px;
}
.psm2-task-due.crit { background: #fee2e2; color: #b91c1c; }
.psm2-task-due.warn { background: var(--orange-soft); color: var(--orange-dark); }
.psm2-task-due.ok { background: #dcfce7; color: #166534; }

/* Progress bars */
.psm2-prog-row {
    display: grid;
    grid-template-columns: 90px 1fr 32px;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.psm2-prog-row:last-child { margin-bottom: 0; }
.psm2-prog-row label {
    font-size: 0.68rem;
    color: var(--text-soft);
    font-weight: 600;
}
.psm2-prog {
    height: 7px;
    background: #eef2f7;
    border-radius: 50px;
    overflow: hidden;
}
.psm2-prog span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 50px;
    animation: fv-grow 1.2s ease-out;
}
.psm2-prog-row strong {
    text-align: right;
    font-size: 0.7rem;
    color: var(--text-strong);
    font-weight: 800;
}

/* Audit table */
.psm2-atable { display: flex; flex-direction: column; gap: 3px; }
.psm2-arow {
    display: grid;
    grid-template-columns: 60px 1fr 45px 80px;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: var(--bg-tinted);
    border-radius: 6px;
    font-size: 0.72rem;
}
.psm2-ahead {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.psm2-aref {
    font-family: 'Courier New', monospace;
    color: var(--accent-dark);
    font-weight: 700;
}
.psm2-rscore {
    font-style: normal;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 800;
    display: inline-block;
}
.psm2-rscore.crit { background: #fee2e2; color: #b91c1c; }
.psm2-rscore.high { background: var(--orange-soft); color: var(--orange-dark); }
.psm2-rscore.med { background: var(--accent-soft); color: var(--accent-dark); }
.psm2-astat {
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
}
.psm2-astat.ok { background: #dcfce7; color: #166534; }
.psm2-astat.warn { background: var(--orange-soft); color: var(--orange-dark); }
.psm2-astat.pen { background: var(--bg-soft); color: var(--text-muted); }

/* Evidence panel */
.psm2-evidence { display: flex; flex-direction: column; gap: 5px; }
.psm2-evi {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: var(--bg-tinted);
    border-radius: 6px;
    font-size: 0.7rem;
}
.psm2-evi i { color: var(--accent-dark); }
.psm2-evi span { color: var(--text); }
.psm2-evi em {
    font-style: normal;
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 0.78rem;
}

/* Compliance hero */
.psm2-comp-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 12px 16px;
}
.psm2-ring { position: relative; width: 110px; flex-shrink: 0; }
.psm2-ring svg { width: 100%; height: auto; display: block; }
.psm2-ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.psm2-ring-num strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}
.psm2-ring-num strong small { font-size: 0.75rem; color: var(--accent-dark); font-weight: 700; }
.psm2-ring-num span { font-size: 0.6rem; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.5px; }

.psm2-comp-trend {
    display: inline-block;
    padding: 4px 10px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.psm2-comp-trend em { color: #166534; font-style: normal; opacity: 0.7; }
.psm2-comp-stats { display: flex; gap: 14px; }
.psm2-comp-stats > div { text-align: left; }
.psm2-comp-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-strong);
    font-weight: 800;
    line-height: 1;
}
.psm2-comp-stats span {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Feed (recent circulars) */
.psm2-feed { display: flex; flex-direction: column; gap: 6px; }
.psm2-feed-row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--bg-tinted);
    border-radius: 8px;
}
.psm2-feed-row i {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}
.psm2-feed-row strong {
    display: block;
    font-size: 0.74rem;
    color: var(--text-strong);
    font-weight: 700;
}
.psm2-feed-row span {
    display: block;
    font-size: 0.66rem;
    color: var(--text-muted);
}
.psm2-feed-time {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.66rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .psm2-kpi-grid { grid-template-columns: 1fr; }
    .psm2-row { grid-template-columns: 1fr; }
    .psm2-arow { grid-template-columns: 50px 1fr; }
    .psm2-arow span:nth-child(3), .psm2-arow span:nth-child(4) { display: none; }
    .psm2-comp-hero { grid-template-columns: 1fr; text-align: center; }
    .psm2-ring { margin: 0 auto; }
    .psm2-comp-stats { justify-content: center; }
}

/* ============================================
   Section Header Stacked — Logo above Title
   ============================================ */
.section-header-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 36px !important;
}
.section-header-stacked .section-label {
    margin-bottom: 8px;
}
.system-wordmark-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px 0 6px;
    line-height: 0;
}
.system-wordmark-block .system-wordmark {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, var(--navy) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.section-header-stacked .section-title {
    margin-top: 0;
    margin-bottom: 10px;
}
.section-header-stacked .section-desc {
    margin-top: 0;
}

/* ============================================
   Contact Grid V2 — LinkedIn-focused cards
   ============================================ */
.contact-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
}
.contact-card-v2 {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.contact-card-v2:hover {
    border-color: rgba(14,165,233,0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.contact-card-v2:hover::before { transform: scaleX(1); }
.contact-card-v2-ic {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-soft), var(--yellow-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: var(--transition);
}
.contact-card-v2:hover .contact-card-v2-ic {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    transform: rotate(-8deg);
    box-shadow: var(--shadow-glow);
}
.contact-card-v2 h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-strong);
    margin-bottom: 8px;
    font-weight: 700;
}
.contact-card-v2 p {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 8px;
}
.contact-card-v2 p a {
    color: var(--accent-dark);
    font-weight: 700;
}
.contact-card-v2 p a:hover { color: var(--accent); }
.contact-card-v2-meta {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* LinkedIn featured card — solid blue */
.contact-card-v2-linkedin {
    background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(10,102,194,0.35);
}
.contact-card-v2-linkedin::before { display: none; }
.contact-card-v2-linkedin .contact-card-v2-ic {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
}
.contact-card-v2-linkedin:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(10,102,194,0.5);
}
.contact-card-v2-linkedin:hover .contact-card-v2-ic {
    background: #ffffff;
    color: #0a66c2;
}
.contact-card-v2-linkedin h4 { color: #ffffff; }
.contact-card-v2-linkedin p { color: rgba(255,255,255,0.85); }
.contact-card-v2-linkedin p a { color: #ffffff; }
.contact-card-v2-linkedin p a:hover { color: #ffffff; opacity: 0.85; }
.contact-card-v2-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 22px;
    background: #ffffff;
    color: #0a66c2 !important;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--transition);
}
.contact-card-v2-cta:hover {
    background: var(--orange);
    color: #ffffff !important;
    transform: translateX(3px);
}
.contact-card-v2-cta i { font-size: 0.78rem; }

@media (max-width: 768px) {
    .contact-grid-v2 { grid-template-columns: 1fr; gap: 16px; }
    .contact-card-v2 { padding: 26px 22px; }
}

/* ============================================
   ABOUT VISUAL V2 — Premium Company Card
   ============================================ */
.abv2 {
    position: relative;
    width: 100%;
    padding: 30px 20px 60px;
}
.abv2-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 60% 40%, rgba(14,165,233,0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 30% 80%, rgba(245,158,11,0.10) 0%, transparent 65%);
    filter: blur(30px);
    z-index: 0;
}

.abv2-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(165deg, #0a1f3d 0%, #142f5c 60%, #1e3a8a 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 30px 28px;
    box-shadow:
        0 32px 80px rgba(10,24,48,0.4),
        0 16px 36px rgba(14,165,233,0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transform: perspective(1500px) rotateY(-3deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.abv2-card:hover {
    transform: perspective(1500px) rotateY(0deg) translateY(-4px);
}
.abv2-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(14,165,233,0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(245,158,11,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.abv2-card > * { position: relative; z-index: 1; }

/* Header */
.abv2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.abv2-brand { display: flex; align-items: center; gap: 12px; }
.abv2-brand-mark {
    position: relative;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(14,165,233,0.4);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.abv2-brand-dot {
    position: absolute;
    top: -3px; right: -3px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px #0a1f3d, 0 0 14px rgba(245,158,11,0.7);
}
.abv2-brand-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.abv2-brand-text span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    font-weight: 500;
}
.abv2-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #28c840;
    animation: live-pulse 1.6s ease-in-out infinite;
    display: inline-block;
}
.abv2-verified {
    color: var(--accent-light);
    font-size: 1.5rem;
    line-height: 1;
}

/* Year hero */
.abv2-year {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    margin-bottom: 22px;
}
.abv2-year-line {
    width: 3px;
    height: 56px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--orange) 100%);
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(14,165,233,0.5);
}
.abv2-year-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.abv2-year-content small {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 4px;
}
.abv2-year-content strong {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1.5px;
}
.abv2-year-meta { flex: 1; }
.abv2-year-meta em {
    display: block;
    font-style: normal;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}
.abv2-year-meta span {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Stats */
.abv2-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}
.abv2-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    transition: var(--transition);
}
.abv2-stat:hover {
    background: rgba(245,158,11,0.12);
    border-color: rgba(245,158,11,0.4);
    transform: translateY(-2px);
}
.abv2-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.abv2-stat strong small {
    font-size: 0.95rem;
    color: var(--orange);
    margin-left: 2px;
    font-weight: 700;
}
.abv2-stat span {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Sectors */
.abv2-sectors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.abv2-sec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: var(--transition);
}
.abv2-sec:hover {
    background: rgba(14,165,233,0.15);
    border-color: rgba(14,165,233,0.4);
}
.abv2-sec i {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
}
.abv2-sec span {
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 700;
}

/* Floating cards */
.abv2-float {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 36px rgba(10,24,48,0.18);
    z-index: 3;
    animation: float-bob 4s ease-in-out infinite;
}
.abv2-float-ic {
    width: 38px; height: 38px;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.abv2-float-ic-blue {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 6px 16px rgba(14,165,233,0.4);
}
.abv2-float-ic-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 6px 16px rgba(245,158,11,0.4);
}
.abv2-float strong {
    display: block;
    color: var(--text-strong);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1;
}
.abv2-float span {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-top: 4px;
}

/* Region card (top-right) */
.abv2-float-region {
    top: 10px;
    right: -20px;
    animation-delay: 0s;
}
.abv2-flags {
    display: flex;
    gap: 2px;
    font-size: 1rem;
    margin-left: 4px;
}
.abv2-flags span {
    margin-top: 0;
    font-size: 1.1rem;
    line-height: 1;
}

/* ISO card (bottom-left) */
.abv2-float-iso {
    bottom: 20px;
    left: -20px;
    animation-delay: 1.5s;
}

@media (max-width: 1024px) {
    .abv2-card { transform: none; }
    .abv2-float-region { right: 0; }
    .abv2-float-iso { left: 0; }
}
@media (max-width: 600px) {
    .abv2 { padding: 16px 12px 50px; }
    .abv2-card { padding: 24px 20px; }
    .abv2-year-content strong { font-size: 2.5rem; }
    .abv2-stats { gap: 6px; }
    .abv2-stat { padding: 10px 8px; }
    .abv2-stat strong { font-size: 1.2rem; }
    .abv2-sectors { grid-template-columns: 1fr 1fr; }
    .abv2-float-region, .abv2-float-iso {
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        margin: 10px auto 0;
        max-width: 280px;
    }
}

/* ============================================
   SYSTEM WORDMARK IMAGE SIZING (per context)
   Logo aspect ratio is wide (BAC-GRC + accent + arc)
   Default fallback: shows as text when no image uploaded
   ============================================ */
.system-wordmark--img img {
    height: 1.4em;
    max-height: 90px;
    width: auto;
    max-width: none;
}

/* Big centered wordmark in section header — sized to title proportion */
.section-header-stacked .system-wordmark--img img {
    height: clamp(80px, 9vw, 130px);
    max-height: 130px;
    max-width: 420px;
    display: block;
}

/* Navbar link wordmark */
.nav-links a .system-wordmark--img img {
    height: 28px;
    max-height: 28px;
}

/* Inside button text */
.btn .system-wordmark--img img {
    height: 22px;
    max-height: 22px;
}

/* Inside paragraph or value-card text */
.vp-card .system-wordmark--img img,
.about-content .system-wordmark--img img,
.section-desc .system-wordmark--img img {
    height: 1.2em;
    max-height: 26px;
}

/* Inside h3 (Featured Module / Platform titles) */
h3 .system-wordmark--img img {
    height: 1.1em;
    max-height: 50px;
}

/* Inside h4 (footer headings, etc.) */
h4 .system-wordmark--img img {
    height: 1.2em;
    max-height: 28px;
}

/* Inside footer */
.footer .system-wordmark--img img {
    height: 24px;
    max-height: 24px;
}

/* Hero/product-page big logo */
.product-logo.phv2-logo img,
.product-hero-v2 .product-logo img,
.product-page .product-logo img {
    max-height: 72px;
    max-width: 320px;
}

/* When logo is text (no image uploaded), preserve in-line styling */
.system-wordmark:not(.system-wordmark--img) {
    font-family: var(--font-display);
    font-weight: 800;
}
.nav-links a .system-wordmark:not(.system-wordmark--img) {
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Ensure wordmark-block keeps right size when text fallback */
.system-wordmark-block .system-wordmark--img img {
    height: clamp(80px, 9vw, 130px);
    max-height: 130px;
    max-width: 420px;
}

/* ============================================
   LOGO ON DARK BACKGROUNDS — White Pill Container
   The logo has dark navy text + small orange dot.
   On dark backgrounds, wrap with light pill so it stays visible.
   ============================================ */

/* Navbar — always uses dark bg now (scrolled or on dark hero) */
.navbar .system-wordmark--img,
.product-hero-v2 .system-wordmark--img,
.hero .system-wordmark--img,
.footer .system-wordmark--img,
.abv2 .system-wordmark--img,
.persona-section.dark .system-wordmark--img,
.testimonials-section .system-wordmark--img,
.grc-wheel-section .wheel-center .system-wordmark--img,
.cta-section .system-wordmark--img,
.gsm-side .system-wordmark--img,
.phv2-sidebar .system-wordmark--img,
.story-section .story-card.dark .system-wordmark--img {
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    line-height: 0;
}

/* Adjust spacing when inside a nav link to keep aligned */
.nav-links a .system-wordmark--img {
    padding: 4px 10px;
}
.nav-links a:hover .system-wordmark--img,
.nav-links a.active .system-wordmark--img {
    box-shadow: 0 2px 12px rgba(245,158,11,0.4);
}

/* Hide the small awkward logo in product-hero-v2 — badge + title + side dashboard
   already give plenty of BAC-GRC branding without the floating pill */
.product-hero-v2 .product-logo,
.product-hero-v2 .phv2-logo {
    display: none !important;
}

/* About card (dark abv2) — wordmark pill */
.abv2 .system-wordmark--img {
    background: rgba(255,255,255,0.97);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Footer wordmark */
.footer .system-wordmark--img {
    background: #ffffff;
    padding: 3px 9px;
    border-radius: 6px;
}

/* CTA white box: it's already white, so no pill needed */
.cta-box .system-wordmark--img {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

/* For TEXT fallback on dark bg (no image yet) — make text white */
.product-hero-v2 .system-wordmark:not(.system-wordmark--img),
.hero .system-wordmark:not(.system-wordmark--img),
.footer .system-wordmark:not(.system-wordmark--img),
.abv2 .system-wordmark:not(.system-wordmark--img),
.navbar.scrolled .system-wordmark:not(.system-wordmark--img),
.product-page .navbar:not(.scrolled) .system-wordmark:not(.system-wordmark--img),
.home-page .navbar:not(.scrolled) .system-wordmark:not(.system-wordmark--img) {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent;
}

/* ============================================
   MODULE CHARTS DASHBOARD
   Animated mini charts shown in each module panel
   ============================================ */

/* Section background — warm orange wash */
.modules-section {
    background:
        radial-gradient(ellipse 50% 60% at 90% 10%, rgba(245,158,11,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 10% 90%, rgba(14,165,233,0.08) 0%, transparent 55%),
        var(--primary);
}

/* Module tab active — strong orange underline */
.module-tab.active small { color: var(--accent-dark); }
.module-tab.active::after {
    background: linear-gradient(90deg, var(--orange), var(--accent)) !important;
    height: 4px !important;
    width: 36px !important;
    box-shadow: 0 2px 8px rgba(245,158,11,0.5);
}
.module-tab:hover {
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--orange-soft) 100%);
}

/* Module panel — orange accent on header */
.module-panel-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    position: relative;
}
.module-panel-icon::after {
    content: '';
    position: absolute;
    top: -3px; right: -3px;
    width: 12px; height: 12px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ffffff, 0 0 12px rgba(245,158,11,0.7);
}

/* The Module Charts grid */
.module-charts {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 14px;
    margin: 0 0 32px;
}
.mch-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.mch-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}
.mch-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245,158,11,0.4);
}
.mch-card:hover::before { transform: scaleX(1); }

.mch-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.mch-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-strong);
    letter-spacing: 0.3px;
}
.mch-title i {
    width: 24px; height: 24px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    box-shadow: 0 4px 10px rgba(245,158,11,0.35);
}
.mch-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    background: var(--bg-tinted);
    color: var(--text-muted);
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.mch-pill.orange {
    background: var(--orange-soft);
    color: var(--orange-dark);
}
.mch-pill.warn { background: #fef3c7; color: #92400e; }
.mch-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}
.mch-dot.pulse {
    background: var(--orange);
    animation: live-pulse 1.3s ease-in-out infinite;
}

.mch-body { min-height: 130px; }
.mch-body-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bar chart */
.mch-bars { display: flex; flex-direction: column; gap: 8px; }
.mch-bar-row {
    display: grid;
    grid-template-columns: 85px 1fr 32px;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--text-soft);
}
.mch-bar-row label { font-weight: 600; }
.mch-track {
    height: 8px;
    background: var(--bg-soft);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}
.mch-track span {
    display: block;
    height: 100%;
    width: var(--w);
    background: var(--c);
    border-radius: 50px;
    animation: mch-bar-grow 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.mch-track span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: mch-bar-shine 3s ease-in-out infinite;
    border-radius: 50px;
}
@keyframes mch-bar-grow {
    from { width: 0; }
}
@keyframes mch-bar-shine {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(0); opacity: 1; }
}
.mch-bar-row strong {
    text-align: right;
    color: var(--text-strong);
    font-weight: 800;
    font-size: 0.74rem;
}

/* Gauge */
.mch-gauge { position: relative; width: 100%; max-width: 220px; }
.mch-gauge svg { width: 100%; height: auto; display: block; }
.mch-gauge-meta {
    position: absolute;
    bottom: 4px;
    left: 0; right: 0;
    text-align: center;
}
.mch-gauge-meta strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}
.mch-gauge-meta strong small {
    font-size: 0.85rem;
    color: var(--orange-dark);
    font-weight: 700;
}
.mch-gauge-meta span {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 600;
}

/* Area chart */
.mch-area { width: 100%; height: 110px; display: block; }
.mch-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed var(--border-soft);
}
.mch-foot small {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
}
.mch-foot strong {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 800;
}
.mch-foot strong.up { color: #166534; }
.mch-foot strong.down { color: #b91c1c; }
.mch-foot strong i { font-size: 0.62rem; }

/* Donut */
.mch-donut { position: relative; width: 130px; }
.mch-donut svg { width: 100%; height: auto; display: block; }
.mch-donut circle.dash-anim {
    transform: rotate(-90deg);
    transform-origin: center;
}
.mch-donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.mch-donut-center strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}
.mch-donut-center small {
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 600;
}

/* Funnel mini */
.mch-funnel { display: flex; flex-direction: column; gap: 5px; }
.mch-funnel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--w);
    margin: 0 auto;
    padding: 6px 12px;
    background: linear-gradient(90deg, var(--orange-soft), var(--accent-soft));
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 6px;
    font-size: 0.7rem;
    transition: var(--transition);
    animation: mch-bar-grow 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mch-funnel-row:hover { transform: scale(1.03); border-color: var(--orange); }
.mch-funnel-row span { color: var(--text-soft); font-weight: 600; }
.mch-funnel-row strong { color: var(--orange-dark); font-weight: 800; }

/* Counter big number */
.mch-counter { text-align: center; padding: 10px 0; }
.mch-counter strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mch-counter span {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Sparkline */
.mch-spark svg { width: 100%; height: 80px; display: block; }

@media (max-width: 1024px) {
    .module-charts { grid-template-columns: 1fr 1fr; }
    .module-charts .mch-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .module-charts { grid-template-columns: 1fr; }
    .module-charts .mch-card:last-child { grid-column: auto; }
}

/* ============================================
   SERVICES SECTION — Animated + Orange Accents
   ============================================ */
.services {
    background:
        radial-gradient(ellipse 50% 60% at 90% 10%, rgba(245,158,11,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 10% 90%, rgba(14,165,233,0.07) 0%, transparent 55%),
        var(--primary);
    position: relative;
    overflow: hidden;
}

/* Decorative background patterns */
.services::before,
.services::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.services::before {
    top: 10%; right: -5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    animation: orb-float 12s ease-in-out infinite;
}
.services::after {
    bottom: 5%; left: -5%;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%);
    animation: orb-float 14s ease-in-out infinite reverse;
}
.services .container { position: relative; z-index: 1; }

/* Enhanced service card */
.service-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* SVG-like dot pattern in background corner */
.service-card::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 160px; height: 160px;
    background-image: radial-gradient(circle, rgba(245,158,11,0.15) 1.5px, transparent 2px);
    background-size: 14px 14px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    z-index: 0;
}
.service-card:hover::after {
    opacity: 1;
    transform: rotate(15deg);
}

/* Top accent strip — keep, but stronger orange-to-blue */
.service-card::before {
    background: linear-gradient(90deg, var(--orange), var(--accent), var(--orange)) !important;
    background-size: 200% 100% !important;
    height: 4px !important;
    animation: service-shine 3s ease-in-out infinite;
}
@keyframes service-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Animated orange dot — pulses on every card */
.service-card .service-icon {
    position: relative;
    background: linear-gradient(135deg, var(--accent-soft), var(--orange-soft)) !important;
    color: var(--accent-dark);
    overflow: visible;
}
.service-card .service-icon::before {
    content: '';
    position: absolute;
    top: -4px; right: -4px;
    width: 14px; height: 14px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ffffff, 0 0 14px rgba(245,158,11,0.6);
    z-index: 2;
}
.service-card .service-icon::after {
    content: '';
    position: absolute;
    top: -4px; right: -4px;
    width: 14px; height: 14px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: service-dot-pulse 1.8s ease-out infinite;
}
@keyframes service-dot-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245,158,11,0.45);
    box-shadow:
        0 24px 48px rgba(245,158,11,0.18),
        0 12px 24px rgba(14,165,233,0.12);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    color: #ffffff !important;
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 14px 28px rgba(245,158,11,0.45);
}

.service-card h3 {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}
.service-card:hover h3 { color: var(--accent-dark); }

.service-card p { position: relative; z-index: 1; }

/* Optional decorative "spark" icon in corner — appears on hover */
.service-card .service-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-icon i {
    transform: rotate(10deg) scale(1.05);
}

/* Stagger entrance animation when in view */
.services-grid .service-card {
    animation: service-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.services-grid .service-card:nth-child(1) { animation-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(7) { animation-delay: 0.35s; }
.services-grid .service-card:nth-child(8) { animation-delay: 0.4s; }
.services-grid .service-card:nth-child(9) { animation-delay: 0.45s; }
.services-grid .service-card:nth-child(10) { animation-delay: 0.5s; }
.services-grid .service-card:nth-child(11) { animation-delay: 0.55s; }
.services-grid .service-card:nth-child(12) { animation-delay: 0.6s; }
@keyframes service-enter {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================
   WHEEL WITH SIDE BENEFITS — Home page layout
   Benefits on LEFT (2x3 grid), Big Wheel on RIGHT
   ============================================ */
.wheel-with-sides {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 0 20px;
}

.wheel-side-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.wheel-side-title { margin-bottom: 4px; }
.wheel-side-eyebrow {
    display: inline-block;
    padding-left: 24px;
    position: relative;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--orange-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.wheel-side-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    border-radius: 50px;
}
.wheel-side-eyebrow::after {
    content: '';
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(245,158,11,0.6);
}
.wheel-side-title h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.wheel-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.wheel-benefits-grid .benefit-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.wheel-benefits-grid .benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.wheel-benefits-grid .benefit-card:hover {
    border-color: rgba(245,158,11,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.wheel-benefits-grid .benefit-card:hover::before { transform: scaleX(1); }
.wheel-benefits-grid .benefit-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--accent-soft), var(--orange-soft));
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.wheel-benefits-grid .benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #ffffff;
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 6px 14px rgba(245,158,11,0.35);
}
.wheel-benefits-grid .benefit-text strong {
    display: block;
    font-family: var(--font-display);
    color: var(--text-strong);
    font-weight: 800;
    font-size: 0.92rem;
    line-height: 1.1;
}
.wheel-benefits-grid .benefit-text span {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-top: 4px;
    font-weight: 500;
}

/* Bigger wheel on right */
.wheel-with-sides .wheel-compact-wrap {
    padding: 0;
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: center;
}
.wheel-with-sides .grc-wheel-compact {
    max-width: 640px;
    width: 100%;
}

@media (max-width: 1024px) {
    .wheel-with-sides {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .wheel-with-sides .wheel-compact-wrap { order: -1; }
    .wheel-with-sides .grc-wheel-compact { max-width: 560px; }
}
@media (max-width: 600px) {
    .wheel-benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Direct Image Logo (no JS needed, loads instantly)
   ============================================ */
.nav-logo-img {
    max-height: 44px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer .nav-logo-img {
    max-height: 56px;
    max-width: 220px;
}

.nav-logo-fallback {
    display: none;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

/* ============================================
   FOUC Protection — hide elements that site-content.js
   replaces with images so the default text doesn't flash.
   Failsafe animation reveals them after 1.5s if JS fails.
   ============================================ */
.js-loading .loader-logo,
.js-loading .temple-logo,
.js-loading .product-logo,
.js-loading .grc-logo,
.js-loading .system-wordmark,
.js-loading .dashboard-mockup,
.js-loading .about-image,
.js-loading #clientsShowcase {
    visibility: hidden;
    animation: fouc-failsafe 0.01s linear 1.5s forwards;
}

@keyframes fouc-failsafe {
    to { visibility: visible; }
}
