/* =========================================================================
   vSECURE REVAMPED MULTI-PAGE DYNAMIC DESIGN SYSTEM
   ========================================================================= */

/* --- CORE DESIGN TOKENS --- */
:root {
    --bg-dark: #070a13;
    --bg-dark-accent: #0c1122;
    --bg-dark-card: rgba(12, 18, 38, 0.45);
    --bg-glass-border: rgba(0, 229, 255, 0.15);
    --border-glass-default: rgba(255, 255, 255, 0.06);
    
    /* Neon Accent Palettes */
    --accent-cyan: #00e5ff;
    --accent-cyan-rgb: 0, 229, 255;
    --accent-blue: #2979ff;
    --accent-indigo: #651fff;
    --accent-green: #00e676;
    --accent-gold: #ffd600;
    --accent-red: #ff1744;

    /* Typography Hierarchy */
    --font-heading: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Text Colors */
    --text-primary: #f5f8ff;
    --text-secondary: #90a4ae;
    --text-muted: #607d8b;

    /* Transitions & Glows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --cyan-glow-subtle: 0 0 25px rgba(0, 229, 255, 0.12);
    --cyan-glow-intense: 0 0 35px rgba(0, 229, 255, 0.35);
    --glass-blur: blur(16px);
}

/* --- BASE RESETS --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

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

button, input, select, textarea {
    font-family: inherit;
}

/* =========================================================================
   1. ANIMATED CYBER PRELOADER
   ========================================================================= */
.vsecure-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.vsecure-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.logo-shield {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-shield i {
    font-size: 3.5rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    z-index: 10;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    width: 80px;
    height: 80px;
    border-top-color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
    animation: rotateClockwise 2s linear infinite;
}

.ring-2 {
    width: 100px;
    height: 100px;
    border-left-color: var(--accent-blue);
    border-right-color: var(--accent-blue);
    animation: rotateCounterClockwise 3s linear infinite;
}

.loading-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.loading-title .highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    transition: width 0.1s ease;
}

.loading-status {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 0.05em;
    min-height: 20px;
}

/* =========================================================================
   2. UNIFIED STICKY NAVBAR & NAVIGATION
   ========================================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(7, 10, 19, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-glass-default);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area .text-logo {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.logo-area .text-logo .accent-dot {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

.desktop-navigation .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-icon {
    margin-right: 0.6rem;
    font-size: 1rem;
}

.btn-primary-glowing {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-indigo));
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(101, 31, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary-glowing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.6s;
}

.btn-primary-glowing:hover::before {
    left: 100%;
}

.btn-primary-glowing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 31, 255, 0.45), 0 0 15px rgba(0, 229, 255, 0.25);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
}

.btn-secondary-glowing {
    background-color: var(--bg-dark-accent);
    color: var(--text-primary);
    border: 1px solid var(--border-glass-default);
    box-shadow: var(--cyan-glow-subtle);
}

.btn-secondary-glowing:hover {
    transform: translateY(-2px);
    border-color: var(--accent-cyan);
    box-shadow: var(--cyan-glow-intense);
    background-color: rgba(0, 229, 255, 0.05);
}

.btn-full-width {
    width: 100%;
}

/* Mobile toggle and drawer */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark-accent);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-left: 1px solid var(--border-glass-default);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
    right: 0;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.drawer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.drawer-logo .accent-dot {
    color: var(--accent-cyan);
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
}

.mobile-link {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--accent-cyan);
    padding-left: 0.5rem;
}

.drawer-footer {
    margin-top: auto;
}

.drawer-badge {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.security-shield-gold {
    color: var(--accent-gold);
    margin-right: 0.3rem;
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 10, 19, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* =========================================================================
   3. HERO BANNER FOR INNER SUBPAGES
   ========================================================================= */
.subpage-hero {
    position: relative;
    padding: 10rem 2rem 5rem;
    background: linear-gradient(180deg, var(--bg-dark-accent) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-glass-default);
    text-align: center;
    overflow: hidden;
}

.subpage-hero-glow {
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.subpage-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.subpage-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background-color: rgba(0, 229, 255, 0.05);
    border: 1px solid var(--bg-glass-border);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.subpage-tag i {
    margin-right: 0.4rem;
}

.subpage-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.subpage-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================================================
   4. HOME PAGE DYNAMIC SECTIONS
   ========================================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all;
}

.hero-glow-overlay {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-content-wrapper {
    max-width: 1000px;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 229, 255, 0.05);
    border: 1px solid var(--bg-glass-border);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    margin-right: 0.6rem;
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: cyberPulseDot 1.5s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 20%, var(--accent-blue) 60%, var(--accent-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4.5rem;
}

.hero-partners-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.partners-title {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.partners-logos span {
    display: inline-flex;
    align-items: center;
    opacity: 0.6;
}

.logo-icon {
    margin-right: 0.4rem;
}

/* Metrics Banner */
.metrics-section {
    position: relative;
    z-index: 20;
    background-color: var(--bg-dark-accent);
    border-top: 1px solid var(--border-glass-default);
    border-bottom: 1px solid var(--border-glass-default);
    padding: 3.5rem 0;
}

.metrics-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    text-align: center;
    position: relative;
}

.metric-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-glass-default), transparent);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 220px;
    margin: 0 auto;
}

/* Services Grid */
.services-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== KEY IAM AREAS (End-to-End IAM) ===== */
.iam-areas-section {
    padding: 5rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.iam-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.iam-area-card {
    position: relative;
    background-color: var(--bg-dark-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass-default);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.iam-area-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.25);
}

.iam-area-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass-default);
}

.iam-area-abbr {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(101, 31, 255, 0.12));
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent-cyan);
}

.iam-area-abbr i { font-size: 1.1rem; }

.iam-area-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.iam-area-name span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 0.15rem;
}

.iam-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iam-area-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.iam-area-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .iam-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .iam-areas-grid { grid-template-columns: 1fr; }
}

/* ===== VISION / MISSION / VALUES ===== */
.vmv-statements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.vmv-card {
    position: relative;
    background-color: var(--bg-dark-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass-default);
    border-radius: 16px;
    padding: 2.5rem;
    overflow: hidden;
}

.vmv-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(101, 31, 255, 0.12));
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent-cyan);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.vmv-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.vmv-text { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.6; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background-color: var(--bg-dark-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass-default);
    border-radius: 14px;
    padding: 1.75rem;
    transition: var(--transition-bounce);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.25);
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 229, 255, 0.08);
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.value-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

@media (max-width: 992px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .vmv-statements { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

.section-header-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background-color: rgba(101, 31, 255, 0.08);
    border: 1px solid rgba(101, 31, 255, 0.15);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-indigo);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.section-tag i { margin-right: 0.4rem; }

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    position: relative;
    background-color: var(--bg-dark-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass-default);
    border-radius: 16px;
    padding: 3rem;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--bg-glass-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), var(--cyan-glow-subtle);
}

.card-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 70%);
    top: -125px;
    right: -125px;
    pointer-events: none;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--accent-cyan);
    color: var(--bg-dark);
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-check {
    color: var(--accent-green);
    margin-right: 0.6rem;
}

/* =========================================================================
   5. INTERACTIVE THREAT SIMULATOR
   ========================================================================= */
.simulator-section {
    padding: 8rem 2rem;
    background-color: var(--bg-dark-accent);
    border-top: 1px solid var(--border-glass-default);
    border-bottom: 1px solid var(--border-glass-default);
}

.simulator-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    background-color: rgba(7, 10, 19, 0.65);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.simulator-header {
    background-color: rgba(12, 18, 38, 0.9);
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-dots { display: flex; gap: 0.4rem; }
.terminal-dots .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background-color: var(--accent-red); }
.dot.yellow { background-color: var(--accent-gold); }
.dot.green { background-color: var(--accent-green); }

.terminal-title {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.system-status-indicator {
    display: flex;
    align-items: center;
    background-color: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.status-pulse-green {
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: cyberPulseGreen 1.5s infinite;
}

.status-text {
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.text-green { color: var(--accent-green); }
.text-red { color: var(--accent-red); }

.simulator-body { padding: 2.5rem; }

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.2fr;
    gap: 2.5rem;
}

.sim-panel {
    background-color: rgba(12, 18, 38, 0.4);
    border: 1px solid var(--border-glass-default);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.sim-panel-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.75rem;
}

.sim-panel-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.sim-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sim-btn {
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: var(--transition-bounce);
}

.btn-ico {
    margin-right: 0.8rem;
    color: var(--accent-cyan);
}

.sim-btn:hover {
    background-color: rgba(0, 229, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.25);
    padding-left: 1.25rem;
}

.sim-btn-reset {
    margin-top: 2rem;
    background: none;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.sim-btn-reset:hover { color: var(--text-primary); border-color: var(--text-secondary); }

.gauges-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2.5rem;
}

.gauge-card { text-align: center; }

.gauge-outer {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 0.75rem;
}

.gauge-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    background-color: var(--bg-dark-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.gauge-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.gauge-bg { fill: none; stroke: rgba(255, 255, 255, 0.03); stroke-width: 8; }
.gauge-fill {
    fill: none;
    stroke: var(--accent-red);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 301;
    transition: stroke-dashoffset 1s ease-in-out, stroke 1s ease;
}

.gauge-fill-green {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 0.6;
}

.sim-telemetry-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
}

.tel-counter { text-align: center; }
.tel-val { display: block; font-family: monospace; font-size: 1.2rem; font-weight: bold; }
.tel-lbl { font-size: 0.7rem; color: var(--text-muted); }

.terminal-log-window {
    background-color: rgba(7, 10, 19, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 1.5rem;
    font-family: monospace;
    font-size: 0.8rem;
    color: #a0aec0;
    overflow-y: auto;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.log-entry { animation: logFadeIn 0.3s ease forwards; }
.log-time { color: var(--text-muted); }
.log-sec-info { color: var(--accent-cyan); font-weight: bold; }
.log-sec-warn { color: var(--accent-gold); font-weight: bold; }
.log-sec-alert { color: var(--accent-red); font-weight: bold; }
.log-sec-success { color: var(--accent-green); font-weight: bold; }

/* =========================================================================
   6. CUSTOM VIDEO SHOWCASE & ADVANTAGE COMPARISON
   ========================================================================= */
.video-showcase-section {
    padding: 4.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-player-outer-wrapper {
    background-color: var(--bg-dark-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass-default);
    border-radius: 16px;
    padding: 2.5rem;
}

.video-player-inner {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 2.5rem;
}

.video-screen-container {
    position: relative;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255,255,255,0.05);
}

.advisory-video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-overlay-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.video-overlay-poster.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.video-poster-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 10, 19, 0.95), rgba(12, 18, 38, 0.8));
}

.video-poster-content { position: relative; z-index: 10; text-align: center; }

.pulse-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-dark);
    cursor: pointer;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
    transition: var(--transition-bounce);
}

.pulse-play-btn:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(0, 229, 255, 0.7); }
.video-poster-title { font-size: 1.35rem; margin-bottom: 0.75rem; }
.video-poster-duration { font-size: 0.8rem; color: var(--text-muted); }

.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent, rgba(7,10,19,0.9));
    z-index: 100;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.video-screen-container:hover .custom-video-controls { opacity: 1; transform: translateY(0); }

.ctrl-btn { background: none; border: none; color: var(--text-primary); cursor: pointer; }
.ctrl-btn:hover { color: var(--accent-cyan); }
.video-progress-bar-container { flex-grow: 1; height: 4px; background-color: rgba(255,255,255,0.15); border-radius: 2px; position: relative; cursor: pointer; }
.video-progress-bar { width: 0%; height: 100%; background-color: var(--accent-cyan); position: absolute; }
.video-time-display { font-family: monospace; font-size: 0.8rem; color: var(--text-secondary); }

.video-simulation-canvas-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: #04060b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.video-simulation-canvas-wrapper.playing { opacity: 1; }

.wave-bar-container { display: flex; align-items: flex-end; height: 60px; gap: 0.3rem; }
.wave-bar { width: 4px; height: 10px; background-color: var(--accent-cyan); border-radius: 2px; }
.video-simulation-canvas-wrapper.playing .wave-bar { animation: soundWave 1.2s ease-in-out infinite alternate; }
.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.4s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.6s; }
.wave-bar:nth-child(5) { animation-delay: 0.3s; }
.wave-bar:nth-child(6) { animation-delay: 0.8s; }
.wave-bar:nth-child(7) { animation-delay: 0.5s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.video-sim-text { font-family: monospace; font-size: 0.8rem; color: var(--text-secondary); }

.video-info-sidebar { display: flex; flex-direction: column; }
.sidebar-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background-color: rgba(255, 214, 0, 0.08);
    border: 1px solid rgba(255, 214, 0, 0.15);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.sidebar-video-title { font-size: 1.35rem; margin-bottom: 1rem; }
.sidebar-video-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 2rem; }
.playlist-container { display: flex; flex-direction: column; gap: 0.75rem; }

.playlist-item {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass-default);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.playlist-item.active { background-color: rgba(0, 229, 255, 0.03); border-color: rgba(0, 229, 255, 0.3); }

.play-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.75rem;
    color: var(--text-secondary);
}

.playlist-item.active .play-item-icon { background-color: var(--accent-cyan); color: var(--bg-dark); }
.play-item-info { display: flex; flex-direction: column; }
.play-item-title { font-size: 0.8rem; font-weight: 600; }
.play-item-duration { font-size: 0.7rem; color: var(--text-muted); }

/* Advantage Comparison */
.advantage-section { padding: 4.5rem 2rem; max-width: 1400px; margin: 0 auto; }
.advantage-table-wrapper { overflow-x: auto; background-color: var(--bg-dark-card); border: 1px solid var(--border-glass-default); border-radius: 16px; }
.advantage-table { width: 100%; border-collapse: collapse; }
.advantage-table th, .advantage-table td { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.04); font-size: 0.95rem; }
.advantage-table th { font-family: var(--font-heading); font-weight: 700; background-color: rgba(12, 18, 38, 0.8); }
.advantage-table th.accent-th { background-color: rgba(0, 229, 255, 0.05); color: var(--accent-cyan); border-bottom: 2px solid var(--accent-cyan); }
.advantage-table td.vsecure-col { font-weight: 500; background-color: rgba(0, 229, 255, 0.01); }
.feature-col { font-weight: 600; font-family: var(--font-heading); }
.icon-sec { color: var(--accent-green); margin-right: 0.6rem; }

/* =========================================================================
   7. SUBPAGE SPECIFIC MODULES (About, Services, Training, Solutions)
   ========================================================================= */

/* --- ABOUT PAGE SPECIFIC MODULES --- */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 5rem 0;
}

.pillar-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-glass-default);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-bounce);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.2);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pillar-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* History Timeline */
.timeline-section {
    padding: 6rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-indigo) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    top: 2.8rem;
    box-shadow: 0 0 10px var(--accent-cyan);
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content-card {
    background-color: var(--bg-dark-accent);
    border: 1px solid var(--border-glass-default);
    border-radius: 8px;
    padding: 2rem;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.timeline-title-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-desc-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Founder Profile block */
.founder-profile-section {
    background-color: var(--bg-dark-accent);
    border: 1px solid var(--border-glass-default);
    border-radius: 16px;
    padding: 4rem;
    margin: 5rem 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3.5rem;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--accent-cyan);
    box-shadow: var(--cyan-glow-subtle);
}

.founder-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-accent) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
}

.founder-name {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.founder-title-role {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.founder-credentials {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.founder-credentials li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-credentials li i {
    color: var(--accent-cyan);
}

/* --- SERVICES & TRAINING DETAIL CARDS --- */
.detailed-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin: 2.5rem 0 5rem;
}

.detailed-service-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-glass-default);
    border-radius: 16px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.detailed-service-card:nth-child(even) {
    grid-template-columns: 1.2fr 1.8fr;
}

.detailed-service-card:nth-child(even) .service-detail-content {
    grid-column: 2;
}

.detailed-service-card:nth-child(even) .service-detail-visual {
    grid-column: 1;
    grid-row: 1;
}

.service-detail-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-detail-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.deliverables-box {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass-default);
    border-radius: 8px;
    padding: 1.5rem;
}

.deliverables-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
}

.deliverables-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.deliverables-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.deliverables-list li i {
    color: var(--accent-green);
}

.service-detail-visual {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 50%, #000 22%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0) 92%);
            mask-image: radial-gradient(ellipse 70% 75% at 50% 50%, #000 22%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0) 92%);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
}

.visual-cyber-icon {
    font-size: 3.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.visual-cyber-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}

/* Training Card Syllabus */
.training-syllabus-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 4rem 0;
}

.syllabus-item {
    background-color: var(--bg-dark-accent);
    border: 1px solid var(--border-glass-default);
    border-radius: 8px;
    overflow: hidden;
}

.syllabus-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
}

.syllabus-trigger i {
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.syllabus-content {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: none;
}

.syllabus-item.active .syllabus-trigger i {
    transform: rotate(180deg);
}

.syllabus-item.active .syllabus-content {
    display: block;
}

/* --- SOLUTIONS SUBPAGE MODULES --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.solution-box {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-glass-default);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.solution-box-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.solution-box-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.solution-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-btn:hover {
    gap: 0.8rem;
}

/* =========================================================================
   8. SITEMAP INTERACTIVE DIRECTORY & CONTACT
   ========================================================================= */
.sitemap-outer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 8rem;
}

.sitemap-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.sitemap-category-box {
    background-color: var(--bg-dark-accent);
    border: 1px solid var(--border-glass-default);
    border-radius: 12px;
    padding: 2.5rem;
}

.sitemap-category-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sitemap-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sitemap-links-list li {
    display: flex;
    flex-direction: column;
}

.sitemap-link-tag {
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sitemap-link-tag:hover {
    color: var(--accent-cyan);
}

.sitemap-link-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 1.3rem;
    margin-top: 0.2rem;
}

/* Contact Specific Calendar Schedule Mock */
.contact-section {
    padding: 4.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card-outer {
    position: relative;
    background-color: var(--bg-dark-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass-default);
    border-radius: 20px;
    padding: 4rem;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.contact-glow-overlay {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(101, 31, 255, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background-color: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.contact-info-title { font-size: 2.75rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.contact-info-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; margin-bottom: 3rem; }

.contact-detail-items { display: flex; flex-direction: column; gap: 1.5rem; }
.detail-item { display: flex; align-items: center; }

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass-default);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: var(--accent-cyan);
    margin-right: 1.25rem;
}

.detail-text { display: flex; flex-direction: column; }
.detail-text strong { font-size: 0.95rem; font-weight: 600; transition: color 0.25s ease; }
.detail-text span { font-size: 0.85rem; color: var(--text-secondary); }

/* Clickable contact detail rows + hover */
.detail-icon { transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease; }
.detail-link {
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    padding: 0.4rem;
    margin: -0.4rem;
    transition: transform 0.25s ease, background-color 0.25s ease;
}
.detail-link:hover { transform: translateX(6px); background-color: rgba(0, 229, 255, 0.04); }
.detail-link:hover .detail-icon {
    border-color: rgba(0, 229, 255, 0.35);
    background-color: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
}
.detail-link:hover .detail-text strong { color: var(--accent-cyan); }
.detail-logo-img { width: 28px; height: 28px; object-fit: contain; display: block; }

.contact-form-panel {
    background-color: rgba(12, 18, 38, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2.5rem;
}

.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { position: relative; margin-bottom: 1.75rem; }

.form-input {
    width: 100%;
    background-color: rgba(7, 10, 19, 0.6);
    border: 1px solid var(--border-glass-default);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-bounce);
}

.form-input:focus { border-color: var(--accent-cyan); box-shadow: var(--cyan-glow-subtle); background-color: rgba(7, 10, 19, 0.85); }
.text-area-input { resize: none; min-height: 120px; }

.floating-group { position: relative; }
.floating-label { position: absolute; top: 1rem; left: 1.25rem; color: var(--text-muted); font-size: 0.95rem; pointer-events: none; transition: var(--transition-smooth); }
.form-input:focus ~ .floating-label, .form-input:not(:placeholder-shown) ~ .floating-label {
    top: -0.6rem; left: 0.75rem; font-size: 0.75rem; font-weight: 700; color: var(--accent-cyan); background-color: var(--bg-dark-accent); padding: 0 0.4rem; border-radius: 4px; font-family: var(--font-heading);
}

.dropdown-label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; font-family: var(--font-heading); }
.form-select {
    width: 100%; background-color: rgba(7, 10, 19, 0.6); border: 1px solid var(--border-glass-default); border-radius: 8px; color: var(--text-primary); padding: 1rem 1.25rem; font-size: 0.95rem; outline: none; transition: var(--transition-bounce); cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2390a4ae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.25rem center; background-size: 1rem;
}

.form-select:focus { border-color: var(--accent-cyan); box-shadow: var(--cyan-glow-subtle); }
.form-feedback-message { margin-top: 1rem; font-size: 0.85rem; font-weight: 600; text-align: center; min-height: 20px; }
.form-feedback-message.success { color: var(--accent-green); }
.form-feedback-message.error { color: var(--accent-red); }

/* --- CALENDAR BOOKING BLOCK --- */
.calendar-mock-container {
    background-color: rgba(7, 10, 19, 0.6);
    border: 1px solid var(--border-glass-default);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.calendar-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-month-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.calendar-arrows {
    display: flex;
    gap: 0.5rem;
}

.cal-arrow-btn {
    background: none;
    border: 1px solid var(--border-glass-default);
    color: var(--text-secondary);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
}

.calendar-grid-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.calendar-grid-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    text-align: center;
}

.cal-day {
    padding: 0.5rem 0;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.cal-day:hover {
    background-color: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.15);
}

.cal-day.active {
    background-color: var(--accent-cyan);
    color: var(--bg-dark);
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.cal-day.muted {
    color: var(--text-muted);
    pointer-events: none;
}

/* =========================================================================
   9. UNIFIED CORPORATE SITEMAP & FOOTER
   ========================================================================= */
.site-footer {
    background-color: #04060c;
    border-top: 1px solid var(--border-glass-default);
    padding: 6rem 2rem 2.5rem;
    position: relative;
    z-index: 10;
}

.footer-top-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr 0.85fr 1.05fr;
    gap: 2.5rem;
}

.footer-column { display: flex; flex-direction: column; }
.brand-column { padding-right: 1.5rem; }

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-logo .accent-dot { color: var(--accent-cyan); }
.brand-tagline { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 2rem; }
.footer-social-links { display: flex; gap: 1rem; margin-bottom: 2rem; }

.social-icon {
    width: 36px; height: 36px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-glass-default); display: flex; justify-content: center; align-items: center; font-size: 0.95rem; color: var(--text-secondary); transition: var(--transition-smooth);
}

.social-icon:hover { color: var(--bg-dark); background-color: var(--accent-cyan); border-color: var(--accent-cyan); box-shadow: var(--cyan-glow-subtle); transform: translateY(-2px); }

.footer-compliance-badges { display: flex; gap: 0.75rem; }
.footer-compliance-badges .badge { padding: 0.4rem 0.8rem; background-color: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-glass-default); border-radius: 4px; font-size: 0.65rem; font-weight: 700; color: var(--text-muted); font-family: var(--font-heading); }

.footer-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.75rem; text-transform: uppercase; color: var(--text-primary); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; }
.footer-links a:hover { color: var(--accent-cyan); padding-left: 0.4rem; }
.link-bullet { font-size: 0.5rem; margin-right: 0.6rem; color: var(--text-muted); }
.footer-links a:hover .link-bullet { color: var(--accent-cyan); }

.newsletter-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.footer-newsletter-form .input-wrapper { position: relative; display: flex; }
.newsletter-input { width: 100%; background-color: rgba(255,255,255,0.02); border: 1px solid var(--border-glass-default); color: var(--text-primary); padding: 0.85rem 3.5rem 0.85rem 1.25rem; border-radius: 8px; font-size: 0.9rem; outline: none; }
.newsletter-input:focus { border-color: var(--accent-cyan); background-color: rgba(255,255,255,0.04); }

.newsletter-submit {
    position: absolute; right: 4px; top: 4px; bottom: 4px; width: 40px; background-color: var(--accent-cyan); border: none; border-radius: 6px; color: var(--bg-dark); font-size: 1rem; cursor: pointer; display: flex; justify-content: center; align-items: center;
}

.newsletter-submit:hover { background-color: var(--accent-blue); color: var(--text-primary); }
.newsletter-status { font-size: 0.75rem; margin-top: 0.5rem; min-height: 16px; }
.newsletter-status.success { color: var(--accent-green); }

.footer-contact-info { margin-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.04); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.phone-link { font-size: 0.85rem; color: var(--text-secondary); display: flex; align-items: center; }
.info-icon { font-size: 0.9rem; margin-right: 0.75rem; color: var(--accent-cyan); }

.footer-divider { height: 1px; background-color: rgba(255, 255, 255, 0.04); margin: 4rem 0 2.5rem; }
.footer-bottom-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; align-items: center; gap: 1rem; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent-cyan); }
.footer-dot-separator { width: 3px; height: 3px; background-color: var(--text-muted); border-radius: 50%; }

/* =========================================================================
   10. KEYFRAME ANIMATIONS & RESPONSIVENESS
   ========================================================================= */
@keyframes rotateClockwise { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes rotateCounterClockwise { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }

@keyframes cyberPulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 229, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

@keyframes cyberPulseGreen {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

@keyframes logFadeIn { 0% { opacity: 0; transform: translateY(4px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes soundWave { 0% { height: 10px; } 100% { height: 50px; } }

.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.revealed { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVENESS --- */
@media (max-width: 1200px) {
    .hero-title, .subpage-title { font-size: 3rem; }
    .services-grid { gap: 1.5rem; }
    .simulator-grid { grid-template-columns: 1.2fr 1fr; gap: 1.5rem; }
    .sim-panel.log-panel { grid-column: span 2; }
    .footer-top-container { grid-template-columns: repeat(3, 1fr); }
    .footer-column.brand-column { grid-column: span 3; }
    .footer-column.newsletter-column { grid-column: span 3; max-width: 500px; }
    .detailed-service-card { gap: 2rem; padding: 2.5rem; }
}

@media (max-width: 992px) {
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .metric-card:nth-child(2)::after { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .video-player-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-pillars-grid { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
    .detailed-service-card { grid-template-columns: 1fr !important; }
    .detailed-service-card .service-detail-content { grid-column: 1 !important; }
    .detailed-service-card .service-detail-visual { grid-column: 1 !important; }
    .sitemap-flow-grid { grid-template-columns: 1fr; gap: 2rem; }
    .solutions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .desktop-navigation { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hide-mobile { display: none !important; }
    .hero-title { font-size: 2.3rem; }
    .subpage-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; max-width: 320px; margin: 0 auto; }
    .metrics-grid { grid-template-columns: 1fr; }
    .metric-card::after { display: none !important; }
    .simulator-grid { grid-template-columns: 1fr; }
    .sim-panel.log-panel { grid-column: span 1; }
    .gauges-container { flex-direction: column; align-items: center; gap: 2rem; }
    .advantage-table th, .advantage-table td { padding: 1rem; font-size: 0.85rem; }
    .footer-top-container { grid-template-columns: 1fr 1fr; }
    .brand-column, .footer-column.newsletter-column { grid-column: span 2; }
    .timeline-container::before { left: 1rem; }
    .timeline-item { width: 100%; padding-left: 2.5rem !important; text-align: left !important; }
    .timeline-dot { left: calc(1rem - 7px) !important; }
    .form-row-two { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .contact-card-outer { padding: 1.5rem; }
    .footer-top-container { grid-template-columns: 1fr; }
    .brand-column, .footer-column.newsletter-column { grid-column: span 1; }
}

/* ============================================
   BRAND LOGO IMAGES (added)
   ============================================ */
.logo-area .text-logo { display: inline-flex; align-items: center; line-height: 0; }
.logo-img {
    height: 52px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}
.site-header.scrolled .logo-img { height: 44px; }

.footer-logo { line-height: 0; }
.footer-logo-img {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 0.25rem;
}

.drawer-logo { line-height: 0; }
.drawer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Preloader shield image replaces the icon glyph */
.preloader-shield-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.45));
}

@media (max-width: 768px) {
    .logo-img { height: 42px; }
    .site-header.scrolled .logo-img { height: 38px; }
    .footer-logo-img { height: 54px; }
}

/* ============================================
   HOW WE USE AI — SUMMARY BANNER (added)
   ============================================ */
.ai-approach-section {
    position: relative;
    padding-top: 1.5rem;
}

/* Tighten the gap between the IAM services overview and "How We Use AI" */
#services {
    padding-bottom: 2.5rem;
}

.ai-summary-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3.5rem auto 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(101, 31, 255, 0.06));
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 16px;
    box-shadow: var(--cyan-glow-subtle);
}

.ai-summary-icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}

.ai-summary-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.ai-summary-text strong { color: var(--text-primary); font-weight: 600; }

/* ============================================
   CREDENTIALS & CERTIFICATIONS — PREMIUM REDESIGN
   ============================================ */
.credentials-section {
    background-color: var(--bg-dark-accent);
    border-top: 1px solid var(--border-glass-default);
    border-bottom: 1px solid var(--border-glass-default);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.credentials-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 3.5rem;
    max-width: 1000px;
}

.cred-stat {
    flex: 1 1 220px;
    text-align: center;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-glass-default);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    transition: var(--transition-bounce);
}

.cred-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.2);
}

.cred-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-indigo));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.6rem;
}

.cred-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.credentials-block {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
}

.credentials-subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* --- Cert Card Stack Grid --- */
.cert-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.platform-stack-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.cert-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-dark-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass-default);
    border-radius: 14px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                background-color 0.4s ease;
    /* Initial state for scroll reveal */
    opacity: 0;
    transform: translateY(30px) scale(0.96);
}

/* Phase 1: SCANNING — card visible, text scrambling, scan line sweeping */
.cert-card.cert-scanning {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    border-color: rgba(0, 229, 255, 0.1);
}

.cert-card.cert-scanning .cert-card-icon {
    animation: certIconScanPulse 0.6s ease infinite alternate;
}

.cert-card.cert-scanning .cert-card-name,
.cert-card.cert-scanning .cert-card-issuer {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.06em;
    color: rgba(0, 229, 255, 0.55);
}

@keyframes certIconScanPulse {
    0%   { opacity: 0.35; transform: scale(0.95); }
    100% { opacity: 1;    transform: scale(1.05); }
}

/* Phase 3: VERIFIED — text resolved, badge visible, border flash */
.cert-card.cert-verified {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: certBorderFlash 0.75s ease forwards;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                background-color 0.4s ease;
}

.cert-card.cert-verified .cert-card-name {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.cert-card.cert-verified .cert-card-issuer {
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    color: var(--text-muted);
}

@keyframes certBorderFlash {
    0%   { border-color: rgba(0, 229, 255, 0.1);  box-shadow: none; }
    35%  { border-color: rgba(0, 229, 255, 0.6);  box-shadow: 0 0 22px rgba(0, 229, 255, 0.18), inset 0 0 12px rgba(0, 229, 255, 0.04); }
    100% { border-color: var(--border-glass-default); box-shadow: none; }
}

.cert-card-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    /* Clean white chip so every authentic logo shows in its real colors */
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Authentic brand logo glyph — scales to fit the chip */
.cert-card-icon .brand-glyph {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
    display: block;
}

/* Text monogram (for issuers shown as a lettermark, not a logo) */
.cert-card-icon .brand-mono {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: -0.01em;
    color: #ffffff;
    line-height: 1;
}

/* Monogram brands use their own brand-colored chip so the letters read */
.cert-card[data-brand="isaca"]      .cert-card-icon { background: #0F69A0; border-color: rgba(15, 105, 160, 0.6); }
.cert-card[data-brand="ec-council"] .cert-card-icon { background: #C8102E; border-color: rgba(200, 16, 46, 0.6); }

.cert-card:hover .cert-card-icon {
    transform: scale(1.06);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.18);
}

/* Exceptions: logos that carry their own background */
.cert-card[data-brand="ping"]    .cert-card-icon { padding: 0; }            /* self-contained red badge */
.cert-card[data-brand="ping"]    .cert-card-icon .brand-glyph { padding: 0; }
.cert-card[data-brand="saviynt"] .cert-card-icon { background: #000000; }   /* green logo on black */
.cert-card[data-brand="sailpoint"] .cert-card-icon .brand-glyph,
.cert-card[data-brand="beyondtrust"] .cert-card-icon .brand-glyph,
.cert-card[data-brand="ec-council"] .cert-card-icon .brand-glyph { padding: 9px; }

.cert-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cert-card-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.4s ease;
}

.cert-card-issuer {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

/* --- Shine sweep effect --- */
.cert-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 60%
    );
    transition: none;
    pointer-events: none;
}

.cert-card:hover .cert-card-shine {
    animation: certShineSwipe 0.8s ease forwards;
}

@keyframes certShineSwipe {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* --- Scan line element (injected by JS) --- */
.cert-scan-line {
    position: absolute;
    top: 0;
    left: -35%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 229, 255, 0.04) 20%,
        rgba(0, 229, 255, 0.14) 50%,
        rgba(0, 229, 255, 0.04) 80%,
        transparent 100%
    );
    z-index: 5;
    pointer-events: none;
    animation: certScanSweep 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cert-scan-line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 1px;
    height: 100%;
    background: rgba(0, 229, 255, 0.45);
    box-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}

@keyframes certScanSweep {
    0%   { left: -35%; }
    100% { left: 110%; }
}

/* --- Default hover (fallback) --- */
.cert-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.12), 0 0 0 1px rgba(0, 229, 255, 0.1);
}

/* ====================================================
   BRAND-SPECIFIC HOVER GLOW (card border + shadow only;
   the logo chips stay white so real colors always show)
   ==================================================== */
.cert-card[data-brand="google"]:hover     { border-color: rgba(66, 133, 244, 0.5);  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.18); }
.cert-card[data-brand="microsoft"]:hover  { border-color: rgba(0, 120, 212, 0.5);   box-shadow: 0 8px 30px rgba(0, 120, 212, 0.18); }
.cert-card[data-brand="aws"]:hover        { border-color: rgba(255, 153, 0, 0.5);   box-shadow: 0 8px 30px rgba(255, 153, 0, 0.18); }
.cert-card[data-brand="cyberark"]:hover   { border-color: rgba(56, 177, 230, 0.5);  box-shadow: 0 8px 30px rgba(56, 177, 230, 0.18); }
.cert-card[data-brand="okta"]:hover       { border-color: rgba(0, 125, 193, 0.5);   box-shadow: 0 8px 30px rgba(0, 125, 193, 0.18); }
.cert-card[data-brand="forgerock"]:hover  { border-color: rgba(240, 110, 20, 0.5);  box-shadow: 0 8px 30px rgba(240, 110, 20, 0.18); }
.cert-card[data-brand="isc2"]:hover       { border-color: rgba(82, 45, 110, 0.5);   box-shadow: 0 8px 30px rgba(82, 45, 110, 0.18); }
.cert-card[data-brand="isaca"]:hover      { border-color: rgba(15, 105, 160, 0.5);  box-shadow: 0 8px 30px rgba(15, 105, 160, 0.18); }
.cert-card[data-brand="ec-council"]:hover { border-color: rgba(237, 28, 36, 0.5);   box-shadow: 0 8px 30px rgba(237, 28, 36, 0.18); }
.cert-card[data-brand="sailpoint"]:hover  { border-color: rgba(204, 39, 176, 0.5);  box-shadow: 0 8px 30px rgba(204, 39, 176, 0.18); }
.cert-card[data-brand="ping"]:hover       { border-color: rgba(188, 31, 39, 0.5);   box-shadow: 0 8px 30px rgba(188, 31, 39, 0.18); }
.cert-card[data-brand="saviynt"]:hover    { border-color: rgba(60, 220, 60, 0.5);   box-shadow: 0 8px 30px rgba(60, 220, 60, 0.16); }
.cert-card[data-brand="beyondtrust"]:hover{ border-color: rgba(237, 118, 0, 0.5);   box-shadow: 0 8px 30px rgba(237, 118, 0, 0.18); }

/* --- Responsive --- */
@media (max-width: 768px) {
    .ai-summary-banner { flex-direction: column; text-align: center; padding: 1.75rem; }
    .credentials-stats { gap: 1.25rem; }
    .cred-stat-num { font-size: 2.2rem; }
    .cert-stack-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.75rem;
    }
    .cert-card { padding: 1rem 1.15rem; gap: 0.75rem; }
    .cert-card-icon { width: 38px; height: 38px; font-size: 1rem; }
    .cert-card-name { font-size: 0.85rem; }
}

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

