/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (APPLE OBSIDIAN STANDARD)
   ========================================================================== */

/* Font Declarations */
@font-face {
    font-family: 'SF Pro Display';
    src: url('./San Francisco/pro/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('./San Francisco/pro/SF-Pro-Display-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('./San Francisco/pro/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('./San Francisco/pro/SF-Pro-Display-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('./San Francisco/pro/SF-Pro-Text-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Text';
    src: url('./San Francisco/pro/SF-Pro-Text-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Text';
    src: url('./San Francisco/pro/SF-Pro-Text-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Text';
    src: url('./San Francisco/pro/SF-Pro-Text-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro AR';
    src: url('./alfont_com_SFProAR_semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    /* Obsidian Palette (Dark Mode Default) */
    --color-bg-darkest: #000000;
    --color-bg-darker: #161617;
    --color-bg-darker-hover: #1c1c1e;
    --color-bg-card: rgba(28, 28, 30, 0.6);
    --color-bg-glass: rgba(0, 0, 0, 0.72);
    --color-bg-brand-card: #161617;
    --color-bg-brand-card-hover: #1c1c1e;
    --color-bg-active: #2c2c2e;
    --color-bg-slider-track: #3a3a3c;
    
    --color-emerald: #30d158; /* Apple green */
    --color-emerald-dark: #248a3d;
    --color-emerald-light: #34c759;
    --color-emerald-glow: rgba(48, 209, 88, 0.15);
    
    --color-text-primary: #f5f5f7; /* Apple off-white */
    --color-text-secondary: #86868b; /* Apple gray */
    --color-text-muted: #6e6e73;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-glow: rgba(48, 209, 88, 0.24);
    
    --color-btn-bg: rgba(255, 255, 255, 0.08);
    --color-btn-bg-hover: rgba(255, 255, 255, 0.15);
    
    --color-bg-highlight-card: linear-gradient(135deg, rgba(48, 209, 88, 0.04) 0%, rgba(22, 22, 23, 0.6) 100%);
    --color-bg-highlight-stats: rgba(0, 0, 0, 0.3);
    
    /* Layout */
    --max-width: 1080px;
    --nav-height: 52px;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-snappy: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Typography */
    --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-text: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ar: 'Tajawal', 'Almarai', 'SF Pro AR', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Light Theme Variables */
[data-theme="light"] {
    --color-bg-darkest: #f5f5f7; /* Apple light background */
    --color-bg-darker: #ffffff;  /* Pure white background */
    --color-bg-darker-hover: #f0f0f5;
    --color-bg-card: rgba(255, 255, 255, 0.7); /* Sleek glass white */
    --color-bg-glass: rgba(255, 255, 255, 0.8);
    --color-bg-brand-card: #ffffff;
    --color-bg-brand-card-hover: #f5f5f7;
    --color-bg-active: #e5e5ea;
    --color-bg-slider-track: #d1d1d6;
    
    --color-emerald: #1d7f3a; /* Darker emerald for readability on white */
    --color-emerald-dark: #145a27;
    --color-emerald-light: #30d158;
    --color-emerald-glow: rgba(29, 127, 58, 0.08);
    
    --color-text-primary: #1d1d1f; /* Charcoal dark text */
    --color-text-secondary: #515154; /* Slate gray */
    --color-text-muted: #86868b;
    --color-border: rgba(0, 0, 0, 0.08); /* Darker border for light mode */
    --color-border-glow: rgba(29, 127, 58, 0.2);
    
    --color-btn-bg: rgba(0, 0, 0, 0.05);
    --color-btn-bg-hover: rgba(0, 0, 0, 0.1);
    
    --color-bg-highlight-card: linear-gradient(135deg, rgba(29, 127, 58, 0.04) 0%, rgba(255, 255, 255, 0.85) 100%);
    --color-bg-highlight-stats: rgba(0, 0, 0, 0.03);
}

/* Light mode specific element adjustments */
[data-theme="light"] .brand-logo-container {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
[data-theme="light"] .project-card,
[data-theme="light"] .timeline-card,
[data-theme="light"] .cert-card,
[data-theme="light"] .focus-card,
[data-theme="light"] .method-card,
[data-theme="light"] .sim-panel,
[data-theme="light"] .sim-outputs {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
[data-theme="light"] .calc-outputs {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}
[data-theme="light"] .hero-title {
    background: linear-gradient(180deg, #1d1d1f 60%, #6e6e73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility Focus Indicators */
:focus-visible {
    outline: 2px solid var(--color-emerald) !important;
    outline-offset: 2px !important;
}


html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-darkest);
    color: var(--color-text-primary);
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    letter-spacing: -0.011em;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-darkest);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-active);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-emerald-dark);
}

/* Glow Accent Backgrounds */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
}
.bg-glow-1 {
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--color-emerald) 0%, transparent 70%);
}
.bg-glow-2 {
    top: 50%;
    left: -200px;
    background: radial-gradient(circle, rgba(48, 209, 88, 0.2) 0%, transparent 70%);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.15;
    letter-spacing: -0.022em;
}

p {
    color: var(--color-text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-snappy);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   BUTTONS & ACCENTS (APPLE CAPSULE STYLE)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 980px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-snappy);
    border: none;
}

.btn-primary {
    background-color: var(--color-text-primary);
    color: var(--color-bg-darkest);
}
.btn-primary:hover {
    background-color: #ffffff;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.24);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

.btn-nav {
    padding: 0.35rem 1rem;
    border-radius: 980px;
    background: var(--color-emerald-light);
    color: var(--color-bg-darkest);
    font-size: 0.8rem;
    font-weight: 600;
}
.btn-nav:hover {
    background: #4ade80;
    transform: scale(1.03);
}

.badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 980px;
    background: rgba(48, 209, 88, 0.1);
    border: 1px solid rgba(48, 209, 88, 0.2);
    color: var(--color-emerald-light);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}

.lang-switch-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 0.35rem 0.85rem;
    border-radius: 980px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    transition: var(--transition-snappy);
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
}
.lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   NAVIGATION BAR (STICKY BLURRED)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--color-bg-glass);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-snappy);
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.85);
}

.navbar-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.logo-accent {
    color: var(--color-emerald-light);
}
.logo-name {
    color: var(--color-text-primary) !important;
}
.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-top: 0.05rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.25rem 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--color-text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 0.75rem;
}
.mobile-toggle .bar {
    width: 18px;
    height: 1.5px;
    background-color: var(--color-text-primary);
    transition: var(--transition-snappy);
}

/* ==========================================================================
   HERO / ABOUT SECTION (APPLE INTRO)
   ========================================================================== */
.hero-section {
    padding-top: calc(var(--nav-height) + 5rem);
    padding-bottom: 6rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #ffffff 60%, #a1a1a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 2.25rem;
    color: var(--color-text-secondary);
}
.hero-subtitle strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-glass-frame {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ==========================================================================
   STATS SECTION (MINIMAL TEXT)
   ========================================================================== */
.stats-section {
    padding: 3.5rem 0;
    background-color: var(--color-bg-darkest);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1rem 0.5rem;
}

.stat-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-emerald-light);
    margin-left: 0.1rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ==========================================================================
   BRANDS & CLIENT LOGOS (APPLE WALL)
   ========================================================================== */
.brands-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--color-border);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    justify-content: center;
}

.brand-item {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    transition: var(--transition-snappy);
    cursor: pointer;
    text-align: center;
}

.brand-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--color-bg-darker-hover);
    transform: translateY(-2px);
}

.brand-logo-container {
    background-color: #ffffff;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px;
    overflow: hidden;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.2) opacity(0.9);
    transition: var(--transition-snappy);
}

.brand-item:hover .brand-logo {
    filter: grayscale(0) opacity(1);
    transform: scale(1.04);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: #a1a1a6;
    transition: var(--transition-snappy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0.2rem 0.25rem;
}

.brand-item:hover .brand-name {
    color: var(--color-text-primary);
}

/* ==========================================================================
   FOCUS AREAS SECTION
   ========================================================================== */
.focus-section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4.5rem;
}
.section-tag {
    color: var(--color-emerald-light);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.section-description {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.focus-card {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    height: auto;
}
.focus-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--color-bg-darker-hover);
}

.focus-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}
.focus-icon {
    width: 22px;
    height: 22px;
}

.focus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.focus-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

/* Methodology boxes */
.methodology-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.methodology-box {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}
.methodology-box:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.method-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
}
.method-badge {
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}
.method-body p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.doctrine-badge {
    background: rgba(48, 209, 88, 0.1) !important;
    border: 1px solid rgba(48, 209, 88, 0.15);
    color: var(--color-emerald-light) !important;
}
.doctrine-btn {
    margin-top: 1.5rem;
    align-self: flex-start;
}

/* ==========================================================================
   REVENUE ARCHITECT VALUE-ADD SECTION
   ========================================================================== */
.value-add-section {
    padding: 7rem 0;
    border-top: 1px solid var(--color-border);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.value-card {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--color-bg-darker-hover);
}

[data-theme="light"] .value-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.pillar-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.75rem;
}

.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comp-card {
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.15);
    transition: var(--transition-snappy);
}

[data-theme="light"] .comp-card {
    background: rgba(0, 0, 0, 0.02);
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comp-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.comp-metric {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.comp-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--color-text-secondary);
}

/* Pain Card Theme Adjustments */
.pain-card {
    border-color: rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.02);
}
.pain-card:hover {
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.08);
}
.pain-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.pain-metric {
    color: #ef4444;
}

/* Solution Card Theme Adjustments */
.solution-card {
    border-color: rgba(245, 158, 11, 0.18);
    background: rgba(245, 158, 11, 0.02);
}
.solution-card:hover {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.12);
}
.solution-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}
.solution-metric {
    color: #f59e0b;
}

/* Why Necessary Box */
.why-necessary-box {
    background: rgba(255, 255, 255, 0.015);
    border-inline-start: 3px solid var(--color-emerald);
    padding: 1rem;
    padding-inline-start: 1.25rem;
    border-radius: 4px;
}

[data-theme="light"] .why-necessary-box {
    background: rgba(0, 0, 0, 0.015);
}

.why-necessary-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Responsive grid overrides */
@media (max-width: 900px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .value-card {
        padding: 1.75rem;
    }
}

/* ==========================================================================
   GROWTH SIMULATOR SECTION (APPLE DASHBOARD)
   ========================================================================== */
.simulator-section {
    padding: 7rem 0;
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Tab Navigation Styles */
.sim-tabs-nav {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.25rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.sim-tab-btn {
    background: var(--color-btn-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-display);
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-snappy);
}

.sim-tab-btn:hover {
    color: var(--color-text-primary);
    background: var(--color-btn-bg-hover);
    border-color: var(--color-text-secondary);
}

.sim-tab-btn.active {
    color: #ffffff;
    background: var(--color-emerald-dark);
    border-color: var(--color-emerald);
    font-weight: 600;
    box-shadow: 0 4px 12px var(--color-emerald-glow);
}

[data-theme="light"] .sim-tab-btn.active {
    color: #ffffff;
    background: var(--color-emerald);
    border-color: var(--color-emerald-dark);
}

/* Tab Panels */
.sim-tab-panel {
    display: block;
}

.sim-tab-panel.hidden {
    display: none;
}

/* Alert Card Styles for Health Outcomes */
.alert-card {
    transition: var(--transition-smooth);
}

.alert-card.critical {
    background: rgba(255, 69, 58, 0.08) !important;
    border: 1px solid rgba(255, 69, 58, 0.3) !important;
}
.alert-card.critical .output-value {
    color: #ff453a !important;
}

.alert-card.warning {
    background: rgba(255, 159, 10, 0.08) !important;
    border: 1px solid rgba(255, 159, 10, 0.3) !important;
}
.alert-card.warning .output-value {
    color: #ff9f0a !important;
}

.alert-card.healthy {
    background: rgba(48, 209, 88, 0.05) !important;
    border: 1px solid rgba(48, 209, 88, 0.2) !important;
}
.alert-card.healthy .output-value {
    color: var(--color-emerald) !important;
}

.alert-card.excellent {
    background: var(--color-emerald-glow) !important;
    border: 1px solid var(--color-border-glow) !important;
    box-shadow: 0 0 15px rgba(48, 209, 88, 0.1);
}
.alert-card.excellent .output-value {
    color: var(--color-emerald-light) !important;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
}

.sim-panel {
    background: var(--color-bg-darkest);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.sim-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.sim-panel-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.control-group {
    margin-bottom: 1.75rem;
}
.control-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.control-label-row label {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
}
.control-val {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.range-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 980px;
    background: var(--color-bg-slider-track);
    outline: none;
    margin-bottom: 0.35rem;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: var(--transition-snappy);
}
.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.sim-outputs {
    background: var(--color-bg-darker);
}

.outputs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.output-card {
    background: var(--color-bg-darker-hover);
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.output-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.output-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.output-indicator-bar {
    width: 100%;
    height: 3px;
    background: var(--color-bg-active);
    border-radius: 980px;
    overflow: hidden;
}
.indicator-fill {
    height: 100%;
    background: var(--color-emerald);
    border-radius: 980px;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.output-note {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.sim-disclaimer {
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}
.sim-disclaimer p {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

@keyframes pulseGlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}
.animate-pulse-light {
    animation: pulseGlow 4s infinite ease-in-out;
}

/* ==========================================================================
   TIMELINE EXPERIENCE (COLLISION-FREE LABELS)
   ========================================================================== */
.experience-section {
    padding: 7rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4.5rem auto 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 1.5px;
    background-color: var(--color-border);
    top: 0;
    bottom: 0;
    left: 20px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 3.5rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--color-bg-darkest);
    border: 2px solid var(--color-border);
    left: 14px;
    top: 10px;
    z-index: 2;
    transition: var(--transition-snappy);
}
.timeline-item:hover .timeline-dot {
    border-color: var(--color-emerald);
    background-color: var(--color-emerald);
}

.timeline-date {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--color-emerald-light);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.timeline-card {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    padding: 2.25rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
}
.timeline-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.timeline-brand-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    padding: 5px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
    filter: grayscale(1) opacity(0.8);
    transition: var(--transition-smooth);
}

.timeline-card:hover .card-logo {
    filter: none;
    opacity: 1;
    border-color: var(--color-emerald-light);
}

.role-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.role-group h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.25;
}
.company-name {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.loc-tag {
    align-self: flex-start;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-display);
    border: 1px solid var(--color-border);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* Card badges flowing naturally - zero overlap */
.card-badge {
    align-self: flex-start;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}
.gold-badge {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.timeline-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.timeline-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.timeline-bullet-list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
}
.timeline-bullet-list li::before {
    content: "•";
    color: var(--color-emerald);
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-card {
    border-color: rgba(48, 209, 88, 0.2);
    background: var(--color-bg-highlight-card);
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--color-bg-highlight-stats);
    border: 1px solid var(--color-border);
    padding: 1rem;
    border-radius: 10px;
}
.hl-stat {
    text-align: center;
}
.hl-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-primary);
}
.hl-lbl {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* ==========================================================================
   SELECTED ADVISORY PROJECTS SECTION
   ========================================================================== */
.projects-section {
    padding: 7rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.25rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
}
.project-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.project-card-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    padding: 4px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
    filter: grayscale(1) opacity(0.8);
    transition: var(--transition-smooth);
}
.project-card:hover .project-card-logo {
    filter: none;
    opacity: 1;
    border-color: var(--color-emerald-light);
}

.project-card-logo-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(48, 209, 88, 0.1);
    border: 1px solid rgba(48, 209, 88, 0.25);
    color: var(--color-emerald-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sec-proj-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sec-proj-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    padding: 3px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    flex-shrink: 0;
    filter: grayscale(1) opacity(0.8);
    transition: var(--transition-smooth);
}
.sec-proj-card:hover .sec-proj-logo {
    filter: none;
    opacity: 1;
    border-color: var(--color-emerald-light);
}

.project-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-emerald-light);
    background: rgba(48, 209, 88, 0.08);
    border: 1px solid rgba(48, 209, 88, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.project-title-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.project-title-row h3 {
    font-size: 1.25rem;
    font-weight: 600;
}
.project-duration {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-display);
}

.project-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
}

.project-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.5rem;
}
.project-skills-list span {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

/* Secondary projects */
.secondary-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 3.5rem;
}

.sec-proj-card {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: auto;
}
.sec-proj-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.sec-proj-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
}
.sec-proj-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-family: var(--font-display);
}
.sec-proj-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   LICENSES & CERTIFICATIONS SECTION
   ========================================================================== */
.certifications-section {
    padding: 7rem 0;
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cert-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.cert-filter-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.5rem 1.15rem;
    border-radius: 980px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-snappy);
}
.cert-filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--color-text-primary);
}
.cert-filter-btn.active {
    background-color: var(--color-text-primary);
    border-color: var(--color-text-primary);
    color: var(--color-bg-darkest);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.cert-card {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: auto;
}
.cert-card.hidden {
    display: none;
}
.cert-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.cert-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.cert-issuer-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-emerald-light);
    background: rgba(48, 209, 88, 0.08);
    border: 1px solid rgba(48, 209, 88, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.cert-date-val {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-family: var(--font-display);
}

.cert-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
}

.cert-sub {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.cert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.5rem;
}
.cert-skills span {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

/* ==========================================================================
   GOVERNANCE & ADVISORY SECTION
   ========================================================================== */
.governance-section {
    padding: 7rem 0;
    border-bottom: 1px solid var(--color-border);
}

.gov-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.gov-tag {
    color: var(--color-emerald-light);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.gov-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.gov-content p {
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
    color: var(--color-text-secondary);
}

.gov-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.gov-feature-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}
.gov-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(48, 209, 88, 0.1);
    color: var(--color-emerald-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}
.gov-feature-item div {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}
.gov-feature-item strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.glass-advisory-card {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.glass-advisory-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.75rem;
    font-weight: 600;
}
.adv-list {
    list-style: none;
}
.adv-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 0.85rem;
    gap: 1rem;
}
.adv-list li:last-child {
    border-bottom: none;
}
.adv-name {
    font-weight: 500;
    color: var(--color-text-primary);
}
.adv-stat {
    color: var(--color-emerald-light);
    font-family: var(--font-display);
    font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 7rem 0 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.contact-tag {
    color: var(--color-emerald-light);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.contact-details p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: var(--transition-snappy);
}
a.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--color-bg-darker-hover);
    transform: translateX(4px);
}
.contact-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
}
.contact-icon-box svg {
    width: 18px;
    height: 18px;
}

.contact-lbl {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.15rem;
}
.contact-val-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text-primary);
}
.contact-val-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text-primary);
}

.contact-image-panel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}
.contact-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.image-glass-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}
.image-glass-card h4 {
    font-size: 0.95rem;
    color: var(--color-emerald-light);
    margin-bottom: 0.35rem;
    font-weight: 600;
}
.image-glass-card p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.45;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    border-top: 1px solid var(--color-border);
    padding: 2.5rem 0;
    background-color: var(--color-bg-darkest);
    color: var(--color-text-muted);
    font-size: 0.8rem;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.footer-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.sep {
    color: rgba(255,255,255,0.05);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    /* Sticky nav mobile toggle activated at 1024px to prevent overlapping menu links */
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--color-bg-darker);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--color-border);
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .simulator-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .gov-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .focus-grid {
        grid-template-columns: 1fr;
    }
    .methodology-container {
        grid-template-columns: 1fr;
    }
    .outputs-grid {
        grid-template-columns: 1fr;
    }
    .timeline::after {
        left: 15px;
    }
    .timeline-dot {
        left: 9px;
    }
    .timeline-item {
        padding-left: 40px;
    }
    .highlight-stats {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
    .brand-item {
        height: 105px;
        padding: 0.4rem;
    }
    .brand-logo-container {
        height: 60px;
        padding: 6px;
    }
    .timeline-card {
        padding: 1.5rem;
    }
    .project-card {
        padding: 1.5rem;
    }
    .cert-card {
        padding: 1.5rem;
    }
    .sim-panel {
        padding: 1.5rem;
    }
    .glass-advisory-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RTL LANGUAGE OVERRIDES (ARABIC SPECIFIC STYLES)
   ========================================================================== */
html[dir="rtl"] {
    font-family: var(--font-ar), -apple-system, BlinkMacSystemFont, sans-serif !important;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .logo,
html[dir="rtl"] .btn,
html[dir="rtl"] .nav-link,
html[dir="rtl"] .stat-number,
html[dir="rtl"] .stat-suffix,
html[dir="rtl"] .control-val,
html[dir="rtl"] .output-value,
html[dir="rtl"] .badge,
html[dir="rtl"] .method-badge,
html[dir="rtl"] .card-badge,
html[dir="rtl"] .cert-issuer-badge,
html[dir="rtl"] .cert-date-val,
html[dir="rtl"] .cert-filter-btn,
html[dir="rtl"] .project-badge,
html[dir="rtl"] .project-duration,
html[dir="rtl"] .sec-proj-meta {
    font-family: var(--font-ar), -apple-system, BlinkMacSystemFont, sans-serif !important;
}

html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] .hero-content {
    text-align: right;
    align-items: flex-start; /* flexbox works relative to direction in modern browsers but let's be explicit */
}
html[dir="rtl"] .hero-actions {
    justify-content: flex-start;
}
html[dir="rtl"] .lang-switch-btn {
    margin-right: 0;
    margin-left: 0.75rem;
}
html[dir="rtl"] .mobile-toggle {
    margin-left: 0;
    margin-right: 0.75rem;
}

/* Timeline RTL Mirroring */
html[dir="rtl"] .timeline::after {
    left: auto;
    right: 20px;
}
html[dir="rtl"] .timeline-item {
    padding-left: 0;
    padding-right: 55px;
    text-align: right;
}
html[dir="rtl"] .timeline-dot {
    left: auto;
    right: 14px;
}
html[dir="rtl"] .timeline-date {
    text-align: right;
}
html[dir="rtl"] .timeline-card {
    text-align: right;
}
html[dir="rtl"] .timeline-bullet-list li {
    padding-left: 0;
    padding-right: 1rem;
    text-align: right;
}
html[dir="rtl"] .timeline-bullet-list li::before {
    left: auto;
    right: 0;
}

/* Card badges & layouts flow */
html[dir="rtl"] .card-badge,
html[dir="rtl"] .project-badge,
html[dir="rtl"] .cert-issuer-badge,
html[dir="rtl"] .loc-tag,
html[dir="rtl"] .doctrine-btn {
    align-self: flex-start; /* Keep them neatly aligned to the right-start */
}

/* Projects RTL */
html[dir="rtl"] .project-card {
    text-align: right;
}
html[dir="rtl"] .project-skills-list {
    justify-content: flex-start;
}
html[dir="rtl"] .sec-proj-card {
    text-align: right;
}
html[dir="rtl"] .sec-proj-header {
    flex-direction: row-reverse;
}

/* Certifications RTL */
html[dir="rtl"] .cert-card {
    text-align: right;
}
html[dir="rtl"] .cert-skills {
    justify-content: flex-start;
}

/* Governance RTL */
html[dir="rtl"] .gov-content {
    text-align: right;
}
html[dir="rtl"] .gov-feature-item {
    text-align: right;
}
html[dir="rtl"] .glass-advisory-card {
    text-align: right;
}
html[dir="rtl"] .adv-list li {
    flex-direction: row-reverse;
}

/* Contact RTL */
html[dir="rtl"] .contact-details {
    text-align: right;
}
html[dir="rtl"] .contact-card {
    text-align: right;
}
html[dir="rtl"] a.contact-card:hover {
    transform: translateX(-4px);
}
html[dir="rtl"] .image-glass-card {
    text-align: right;
}

/* Slider Bounds RTL */
html[dir="rtl"] .slider-bounds {
    flex-direction: row-reverse;
}

/* Responsiveness overrides under RTL */
@media (max-width: 1024px) {
    html[dir="rtl"] .hero-grid {
        text-align: center;
    }
    html[dir="rtl"] .hero-content {
        align-items: center;
    }
    html[dir="rtl"] .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html[dir="rtl"] .timeline::after {
        left: auto;
        right: 15px;
    }
    html[dir="rtl"] .timeline-dot {
        left: auto;
        right: 9px;
    }
    html[dir="rtl"] .timeline-item {
        padding-left: 0;
        padding-right: 40px;
    }
}



/* Theme Toggle Button Styling */
.theme-toggle-btn {
    background: var(--color-btn-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-snappy);
    margin-right: 0.75rem;
    padding: 0;
    position: relative;
    outline: none;
}
.theme-toggle-btn:hover {
    background: var(--color-btn-bg-hover);
    transform: scale(1.05);
}
.theme-toggle-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.4s ease, opacity 0.2s ease;
}
.theme-toggle-btn svg.theme-sun {
    display: none;
}
.theme-toggle-btn svg.theme-moon {
    display: block;
}
/* If dark theme (default), show moon. If light theme, show sun. */
[data-theme="light"] .theme-toggle-btn svg.theme-sun {
    display: block;
}
[data-theme="light"] .theme-toggle-btn svg.theme-moon {
    display: none;
}

/* Align layout in RTL direction */
html[dir="rtl"] .theme-toggle-btn {
    margin-right: 0;
    margin-left: 0.75rem;
}

/* ==========================================================================
   C-SUITE PLAYBOOK DOWNLOAD CENTER
   ========================================================================== */
.download-section {
    padding: 7rem 0;
    border-bottom: 1px solid var(--color-border);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

@media (max-width: 900px) {
    .download-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.publication-card {
    background: var(--color-bg-darker);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.publication-card:hover {
    border-color: var(--color-border-glow);
    box-shadow: 0 15px 35px var(--color-emerald-glow);
    transform: translateY(-4px);
}

[data-theme="light"] .publication-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pub-cover-wrapper {
    width: 150px;
    height: 220px;
    perspective: 1000px;
    flex-shrink: 0;
}

.pub-cover-gradient {
    width: 100%;
    height: 100%;
    border-radius: 8px 16px 16px 8px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5), inset 1px 1px 3px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.publication-card:hover .pub-cover-gradient {
    transform: rotateY(-12deg) scale(1.03);
}

.pub-cover-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 10px;
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0.1) 40%, rgba(0,0,0,0.1) 100%);
    border-radius: 8px 0 0 8px;
    z-index: 2;
}

/* Gradients for Book Covers */
.cover-1 {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.cover-2 {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
}

.cover-accent-line {
    width: 30px;
    height: 2px;
    background-color: var(--color-emerald-light);
    margin-bottom: 1rem;
}

.pub-cover-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.pub-cover-subtitle {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-emerald-light);
    text-align: center;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.pub-cover-author {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    margin-top: auto;
}

.pub-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pub-details h3 {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
}

.pub-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .publication-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
    .pub-cover-wrapper {
        align-self: center;
    }
}

/* ==========================================================================
   SCALE READINESS INDEX DIAGNOSTIC
   ========================================================================== */
#sim-panel-diagnostic .simulator-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

@media (max-width: 900px) {
    #sim-panel-diagnostic .simulator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.diag-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.diag-step-indicator {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-emerald-light);
    background: rgba(48, 209, 88, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 980px;
}

/* Progress bar inside diagnostic quiz card */
.diagnostic-progress-bar-container {
    width: 100%;
    height: 4px;
    background: var(--color-bg-active);
    border-radius: 980px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.diagnostic-progress-bar {
    height: 100%;
    background: var(--color-emerald);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Question card styling */
.diag-question-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.diag-question-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.diag-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.diag-option {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: var(--transition-snappy);
    text-align: left;
    outline: none;
    border-style: solid;
}

html[dir="rtl"] .diag-option {
    text-align: right;
}

.diag-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-text-muted);
    color: var(--color-text-primary);
}

.diag-option.selected {
    background: var(--color-emerald-glow);
    border-color: var(--color-emerald);
    color: var(--color-text-primary);
    font-weight: 500;
    box-shadow: 0 4px 12px var(--color-emerald-glow);
}

/* Results panel enhancements */
.diag-quiz-completed {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.diag-quiz-completed.hidden {
    display: none;
}

.diag-quiz-active.hidden {
    display: none;
}

.diag-rec-list {
    margin: 0;
    padding: 0;
}

.diag-rec-list li {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    position: relative;
    padding-left: 1.25rem;
}

html[dir="rtl"] .diag-rec-list li {
    padding-left: 0;
    padding-right: 1.25rem;
}

.diag-rec-list li::before {
    content: "→";
    color: var(--color-emerald);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

html[dir="rtl"] .diag-rec-list li::before {
    content: "←";
    left: auto;
    right: 0;
}

/* RTL layout adjustments for cover folds */
html[dir="rtl"] .pub-cover-gradient {
    border-radius: 16px 8px 8px 16px;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.5), inset -1px 1px 3px rgba(255, 255, 255, 0.2);
}

html[dir="rtl"] .pub-cover-gradient::before {
    left: auto;
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0.1) 40%, rgba(0,0,0,0.1) 100%);
    border-radius: 0 8px 8px 0;
}

html[dir="rtl"] .publication-card:hover .pub-cover-gradient {
    transform: rotateY(12deg) scale(1.03);
}

/* ==========================================================================
   CONTACT FORM STYLES
   ========================================================================== */
.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-text);
    font-size: 0.9rem;
    transition: var(--transition-snappy);
    margin-bottom: 12px;
    outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-emerald-light);
    box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.15);
}

.form-textarea {
    resize: vertical;
}

.form-status {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    transition: var(--transition-snappy);
}
.form-status.success {
    color: var(--color-emerald-light);
}
.form-status.error {
    color: #ff453a;
}

.contact-form .form-input,
.contact-form .form-textarea,
.contact-form .form-select {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.form-select option {
    background: #1c1c1e;
    color: #fff;
}

/* Input elements light mode overrides */
[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea,
[data-theme="light"] .form-select {
    color: var(--color-text-primary) !important;
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus,
[data-theme="light"] .form-select:focus {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: var(--color-emerald) !important;
}

[data-theme="light"] .form-select option {
    background: #ffffff;
    color: var(--color-text-primary);
}

/* ==========================================================================
   ROBUSTNESS & EXPORT MEDIA STYLES (v1.8.0)
   ========================================================================== */

/* Responsive SVG viewport scaling overrides */
#expansion-svg, #lev-curve-svg {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}

/* Ensure diagrams are readable on small screens by allowing horizontal scroll */
@media (max-width: 600px) {
    .diagram-container, .chart-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        text-align: start !important;
    }
    #expansion-svg {
        min-width: 600px !important;
    }
    #lev-curve-svg {
        min-width: 280px !important;
    }
}

/* Print styles for clean corporate PDF reporting */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    /* Hide non-report layout elements */
    header, footer, nav, .bg-glow, .hero-section, .stats-section, 
    .brands-section, .focus-section, .value-add-section, 
    .download-section, .experience-section, .projects-section, 
    .certifications-section, .governance-section, .contact-section {
        display: none !important;
    }
    
    /* Optimize simulator print wrapper */
    .simulator-section {
        background: #ffffff !important;
        padding: 0 !important;
        border: none !important;
    }
    
    /* Hide interactive input panel and tab bar */
    .sim-panel.sim-controls, .sim-tabs-nav {
        display: none !important;
    }
    
    /* Expand outputs panel to full width */
    .sim-panel.sim-outputs {
        width: 100% !important;
        max-width: 100% !important;
        background: #ffffff !important;
        color: #000000 !important;
        border: 1px solid #e5e5ea !important;
        box-shadow: none !important;
        padding: 2rem !important;
    }
    
    /* Force high contrast text on print output */
    .output-value, .output-label, .output-note, 
    .diag-recommendations-box h4, .diag-rec-list li {
        color: #000000 !important;
    }
    
    .indicator-fill {
        background: #000000 !important;
    }
    
    /* Hide call-to-actions during print */
    .diag-results-actions, #diag-quiz-panel, .scenario-actions, .boardroom-tools, .load-preset-btn, #boardroom-toast, .boardroom-brief-cta {
        display: none !important;
    }
}

/* ==========================================================================
   BOARDROOM DECISION SUITE STYLES (v2.0.0)
   ========================================================================== */
#lead-gate-modal.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}
#lead-gate-modal.active .modal-card {
    transform: scale(1) !important;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-snappy);
}
.scenario-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-emerald-light);
    box-shadow: 0 4px 20px var(--color-emerald-glow);
}
.scenario-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: start;
}
.scenario-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}
.scenario-meta {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}
.scenario-actions {
    display: flex;
    gap: 8px;
}

/* Light Theme Overrides for Scenario Manager */
[data-theme="light"] .scenario-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .scenario-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: var(--color-emerald) !important;
    box-shadow: 0 4px 20px rgba(48, 209, 88, 0.15);
}
[data-theme="light"] .modal-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #1d1d1f !important;
}
[data-theme="light"] .modal-card h3 {
    color: #1d1d1f !important;
}

/* Accessibility: Reduced Motion Overrides */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: scroll !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}

/* ==========================================================================
   ARABIC TYPOGRAPHICAL READABILITY OVERRIDES (v2.3.0)
   ========================================================================== */
[dir="rtl"] p, 
[dir="rtl"] li, 
[dir="rtl"] .calc-desc, 
[dir="rtl"] .output-note, 
[dir="rtl"] .diag-rec-list li {
    line-height: 1.75;
}

/* ==========================================================================
   BOWTIE MODEL & SAAS SIMULATOR STYLE OVERRIDES (v2.5.0)
   ========================================================================== */
.bowtie-visualizer-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1.5rem;
}

#bowtie-svg {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.02));
}

#bowtie-left, #bowtie-right {
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease, stroke-width 0.3s ease, fill 0.3s ease;
}

[data-theme="light"] .bowtie-visualizer-container {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

