/* ==========================================================================
   MONEYFEST CAPITAL ADVISORS - ARCHITECTURAL DESIGN SYSTEM STYLESHEET
   ========================================================================== */

/* Design System Variables Setup */
:root {
    --primary: #061B4D;
    --primary-rgb: 6, 27, 77;
    --gold: #C79A2B;
    --gold-light: #E5C158;
    --gold-rgb: 199, 154, 43;
    --bg-light: #FFFFFF;
    --bg-offwhite: #F8F9FC;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(6, 27, 77, 0.08);
    --shadow-premium: 0 20px 40px -15px rgba(6, 27, 77, 0.06);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Baseline Normalization */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

/* ==========================================================================
   INITIAL BRAND LOADER ARCHITECTURE (CENTROID VIEW)
   ========================================================================== */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: #020C1B;
    background: radial-gradient(circle at center, #061B4D 0%, #020C1B 75%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.initial-loader.loaded {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    pointer-events: none;
}

.loader-centroid-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    max-width: 90vw;
}

.loader-logo-frame {
    position: relative;
    width: clamp(70px, 12vw, 100px);
    height: clamp(70px, 12vw, 100px);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 18px rgba(199, 154, 43, 0.4));
    animation: loaderPulse 2s ease-in-out infinite alternate;
}

.loader-aura-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 154, 43, 0.25) 0%, rgba(199, 154, 43, 0) 70%);
    z-index: 1;
    animation: auraGlow 2.5s ease-in-out infinite alternate;
}

.loader-typography {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.loader-brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 4px;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.loader-brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

.loader-progress-track {
    width: clamp(160px, 35vw, 240px);
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 4px;
    transition: width 0.25s ease-out;
    box-shadow: 0 0 12px rgba(199, 154, 43, 0.7);
}

@keyframes loaderPulse {
    0% { transform: scale(0.97); }
    100% { transform: scale(1.03); }
}

@keyframes auraGlow {
    0% { opacity: 0.35; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1.15); }
}

/* ==========================================================================
   MINIMALIST LOGO + TYPOGRAPHY NAVBAR BLUEPRINT
   ========================================================================== */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.nav-branding-container {
    display: flex;
    align-items: center;
    gap: 14px; /* Proportional gap between image and text core */
    text-decoration: none;
}

.nav-tree-graphic {
    display: block;
    width: auto;
    height: 52px; /* Proportional institutional framing height */
    object-fit: contain;
    transition: var(--transition-smooth);
    mix-blend-mode: multiply; /* Keeps image background perfectly clear */
}

.nav-typography-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #061B4D; /* True Identity Primary Navy */
    line-height: 1;
}

.nav-brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: #C79A2B; /* True Identity Luxury Gold */
    line-height: 1;
    margin-top: 5px; /* Clean baseline separation parameter */
    white-space: nowrap;
}

/* Micro-Interaction Animation */
.nav-branding-container:hover .nav-tree-graphic {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(199, 154, 43, 0.18));
}

/* Fluid Viewport Scale Boundaries Management */
@media (max-width: 480px) {
    .nav-tree-graphic { height: 40px; }
    .nav-brand-main { font-size: 1.5rem; }
    .nav-brand-sub { font-size: 0.58rem; letter-spacing: 2.5px; margin-top: 3px; }
    .nav-branding-container { gap: 10px; }
}




/* Floating HTML5 Background Canvas Config */
#ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: var(--bg-light);
}

/* Layout Utilities & Common Components */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.text-center-wrapper {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    text-align: center;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.18;
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
}

.heading-gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin: 16px auto 20px auto;
    border-radius: 2px;
}

.section-lead-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

/* Premium Badges System */
.badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(199, 154, 43, 0.08);
    border: 1px solid rgba(199, 154, 43, 0.25);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
}

.gold-badge {
    background: var(--primary);
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-bottom: 24px;
}

/* Button UI Micro-Components */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-light);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 20px -5px rgba(6, 27, 77, 0.2);
}

.btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(199, 154, 43, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid rgba(6, 27, 77, 0.2);
    margin-left: 16px;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(6, 27, 77, 0.02);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER STRUCTURAL LAYOUT
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 32px 0;
}

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

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

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px;
    z-index: 1300;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 27, 77, 0.35);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
    position: absolute;
    height: 100vh;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fallback-logo-icon {
    font-size: 2.2rem;
    color: var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    line-height: 1;
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 4px;
}

.brand-legal {
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 2px;
}

/* ==========================================================================
   SECTION 1: HERO SYSTEM
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 140px 24px 80px;
    text-align: center;
    overflow: hidden;
}

/* Clean & Visible Animated Hero Background */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.98) contrast(1.05);
    animation: heroSubtleScale 20s infinite ease-in-out alternate;
    will-change: transform;
}

@keyframes heroSubtleScale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 249, 252, 0.84) 60%, rgba(248, 249, 252, 0.95) 100%);
}

.hero-container {
    width: min(100%, 1180px);
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    align-items: center;
    gap: clamp(32px, 6vw, 96px);
    text-align: left;
}

.hero-copy {
    max-width: 800px;
}

.hero-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-emblem img {
    display: block;
    width: min(100%, 360px);
    height: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 18px 22px rgba(126, 84, 8, 0.12));
}

.hero-section .badge {
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-title em {
    color: var(--gold);
    font-weight: 600;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 690px;
    margin: 0 0 48px;
    line-height: 1.7;
}

/* Scroll indicator architecture */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse-wheel {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(6, 27, 77, 0.25);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% {
        opacity: 0;
        top: 6px;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 18px;
    }
}

/* ==========================================================================
   SECTION 2: ABOUT CONFIGURATION
   ========================================================================== */
.about-section {
    background: linear-gradient(135deg, rgba(6, 27, 77, 0.025) 0%, transparent 48%), var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 84px;
    right: -130px;
    width: 360px;
    aspect-ratio: 1;
    border: 1px solid rgba(199, 154, 43, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.section-heading em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1.62fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    padding: clamp(28px, 5vw, 56px);
    background: var(--primary);
    border-radius: 10px;
    box-shadow: 0 24px 55px -28px rgba(6, 27, 77, 0.5);
}

.about-intro-mark {
    width: clamp(82px, 10vw, 120px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 193, 88, 0.5);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
}

.about-intro .paragraph-lead {
    font-size: 1.4rem;
    color: var(--bg-light);
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.55;
}

.about-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.75;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 72px;
}

.about-principle-card {
    display: block;
    padding: 0 12px 0 0;
}

.about-principle-card .section-tag {
    margin-bottom: 14px;
}

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

.about-values {
    margin-top: 52px;
    padding: 30px 34px;
    border: 1px solid rgba(6, 27, 77, 0.1);
    border-radius: 8px;
    background: rgba(248, 249, 252, 0.8);
}

.values-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.values-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.7rem;
}

/* ==========================================================================
   SECTION 3: CAPABILITIES ARCHITECTURE
   ========================================================================== */
.services-section {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FC 100%);
    
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 56px;
    align-items: stretch;
}

.capability-card {
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 77, 0.09);
    border-radius: 18px;
    padding: 38px 32px;
    box-shadow: 0 16px 40px -12px rgba(6, 27, 77, 0.06);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px -15px rgba(6, 27, 77, 0.14);
    border-color: rgba(199, 154, 43, 0.4);
}

.capability-card:hover::before {
    opacity: 1;
    height: 5px;
}

.capability-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.capability-icon-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(6, 27, 77, 0.04);
    border: 1px solid rgba(6, 27, 77, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.capability-card:hover .capability-icon-badge {
    background: rgba(199, 154, 43, 0.1);
    border-color: rgba(199, 154, 43, 0.3);
    transform: scale(1.06);
}

.capability-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 0;
    letter-spacing: -0.2px;
    flex: 1;
}

.capability-desc {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.68;
    margin-bottom: 0;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .capability-card {
        padding: 28px 24px;
    }
    .capability-title {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   SECTION 4: THE PIPELINE TIMELINE
   ========================================================================== */
.timeline-section {
    background: linear-gradient(180deg, rgba(6, 27, 77, 0.015) 0%, transparent 100%);
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
    padding: 20px 0;
}

/* Center gold core alignment trace line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(199, 154, 43, 0.1), var(--gold) 20%, var(--gold) 80%, rgba(199, 154, 43, 0.1));
    transform: translateX(-50%);
}

.timeline-node {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.node-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 12px;
    height: 12px;
    background-color: var(--bg-light);
    border: 2px solid var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-node:hover .node-dot {
    background-color: var(--primary);
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 12px rgba(199, 154, 43, 0.6);
}

.node-content {
    width: 44%;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.timeline-node:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-node:hover .node-content {
    border-color: rgba(6, 27, 77, 0.15);
    box-shadow: 0 15px 30px -10px rgba(6, 27, 77, 0.08);
}

.node-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.node-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================SECTION 5: PREMIUM PRE-LAUNCH CALL TO ACTION========================================================================== */
.cta-section {
    padding-bottom: 120px;
}

.cta-glass-card {
    background: linear-gradient(135deg, rgba(6, 27, 77, 0.97) 0%, rgba(2, 12, 27, 0.99) 100%);
    border: 1px solid rgba(199, 154, 43, 0.35);
    padding: 90px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 40px 80px -25px rgba(2, 12, 27, 0.45);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-desc {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 44px;
    font-weight: 300;
    line-height: 1.7;
}

.cta-actions .btn-primary {
    background-color: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
    box-shadow: 0 10px 20px -5px rgba(199, 154, 43, 0.3);
}

.cta-actions .btn-primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 15px 30px -5px rgba(199, 154, 43, 0.4);
}

/* ==========================================================================SECTION 6: INSTITUTIONAL FOOTER========================================================================== */
.site-footer {
    background-color: #020C1B;
    color: #FFFFFF;
    border-top: 1px solid rgba(199, 154, 43, 0.25);
    padding: 80px 18px 35px;
    position: relative;
    z-index: 10;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer-brand-meta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 2px;
    line-height: 1;
}

.footer-brand-meta .legal-subtext {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer-tagline-clean {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-tagline-clean .tagline-phrase {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 1.25vw, 1.12rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.4px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.footer-tagline-clean:hover .tagline-phrase {
    color: var(--gold);
}

.footer-tagline-clean .tagline-bullet {
    color: var(--gold);
    font-size: 0.85em;
    flex-shrink: 0;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 22px;
    text-transform: uppercase;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-nav-list a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

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

.footer-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a.footer-info-row:hover {
    color: var(--gold);
}

.footer-info-row .info-icon {
    font-size: 1.1rem;
    line-height: 1.3;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links span {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-tagline-clean {
        flex-wrap: wrap;
        white-space: normal;
        gap: 4px 6px;
    }

    .footer-tagline-clean .tagline-phrase {
        white-space: normal;
        font-size: 0.9rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================NEW CONTENT SYSTEMS========================================================================== */


.site-header .nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.site-header .nav-links a:hover {
    color: var(--gold);
}

.why-section {
    background: linear-gradient(180deg, rgba(6, 27, 77, 0.02) 0%, rgba(199, 154, 43, 0.03) 100%);
}

.why-grid,
.contact-grid,
.modern-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.experience-section .section-container,
.contact-section .section-container {
    padding-top: 96px;
    padding-bottom: 96px;
}

.experience-section .section-heading,
.contact-section .section-heading {
    margin-bottom: 20px;
}

.experience-section .paragraph-body,
.contact-section .paragraph-body {
    margin-bottom: 28px;
}

.experience-section .btn-primary {
    margin-top: 8px;
}

.contact-section .contact-list {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.why-list,
.bullet-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.why-list li,
.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 1rem;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-premium);
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.info-card p,
.info-card li {
    color: var(--text-muted);
    line-height: 1.7;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(6, 27, 77, 0.95) 0%, rgba(2, 12, 27, 0.98) 100%);
    color: #fff;
}

.highlight-card h3,
.highlight-card p,
.highlight-card .stat-pill {
    color: #fff;
}

.stat-pill {
    display: inline-block;
    margin: 10px 10px 0 0;
    padding: 8px 14px;
    background: rgba(199, 154, 43, 0.2);
    border: 1px solid rgba(199, 154, 43, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* ==========================================================================
   CONTACT SECTION ARCHITECTURE & MAP EMBED
   ========================================================================== */
.contact-section {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FC 100%);
    
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 36px;
    align-items: stretch;
    margin-top: 54px;
}

.contact-info-card {
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 77, 0.09);
    border-radius: 20px;
    padding: clamp(32px, 4vw, 48px);
    box-shadow: 0 16px 40px -12px rgba(6, 27, 77, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(199, 154, 43, 0.12);
    border: 1px solid rgba(199, 154, 43, 0.3);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 28px;
    width: fit-content;
}

.contact-blocks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.block-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    background: rgba(6, 27, 77, 0.04);
    border: 1px solid rgba(6, 27, 77, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.block-content {
    display: flex;
    flex-direction: column;
}

.block-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.block-text {
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.contact-interactive-link {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    word-break: break-all;
}

.contact-interactive-link:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.contact-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px dashed rgba(6, 27, 77, 0.12);
}

.contact-act-btn {
    padding: 12px 24px;
    font-size: 0.88rem;
}

.contact-map-card {
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 77, 0.09);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px -12px rgba(6, 27, 77, 0.07);
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.map-container-frame {
    width: 100%;
    height: 100%;
    min-height: 420px;
    flex-grow: 1;
}

.map-footer-badge {
    padding: 14px 20px;
    background: rgba(6, 27, 77, 0.96);
    color: #FFFFFF;
    font-size: 0.84rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-pin-icon {
    font-size: 1rem;
}

/* ==========================================================================MEDIA QUERY RESPONSIVENESS MATRIX========================================================================== */
@media (max-width: 1024px) {
    .section-container {
        padding: 60px 24px;
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 3.8rem);
    }

    .hero-container {
        gap: 32px;
    }

    .hero-emblem img {
        width: min(100%, 290px);
    }

    .values-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .why-grid,
    .contact-grid,
    .modern-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 18px 72px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        margin: 0 auto;
    }

    .hero-emblem {
        display: none;
    }

    .hero-section .badge {
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 9vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 32px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .site-header {
        position: fixed;
        padding: 0;
    }

    .header-container {
        flex-wrap: wrap;
        align-items: center;
        position: relative;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease;
    }

    .site-header.is-scrolled .header-container {
        border-bottom-color: rgba(6, 27, 77, 0.09);
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed !important;
        top: 0;
        right: -100%;
        width: min(78vw, 320px);
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 14px;
        padding: 24px 20px 24px;
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,249,252,0.98) 100%);
        box-shadow: -12px 0 30px rgba(6, 27, 77, 0.12);
        z-index: 1200;
        transition: right 0.35s ease;
        
    }

    .nav-links.open {
        display: flex !important;
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(6, 27, 77, 0.08);
        font-size: 1rem;
        color: var(--primary);
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }

    .nav-close {
        align-self: flex-end;
        background: transparent;
        border: 0;
        color: var(--primary);
        font-size: 1.6rem;
        cursor: pointer;
        margin-bottom: 8px;
        line-height: 1;
    }

    .grid-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-intro-mark {
        width: 82px;
    }

    .about-copy {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-principles {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .about-values {
        margin-top: 40px;
    }

    .section-heading {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }

    .hero-section {
        padding: 120px 18px 72px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 9vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 24px;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .btn-secondary {
        margin-left: 0;
    }

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

    .experience-section .section-container,
    .contact-section .section-container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .timeline-line {
        left: 20px;
        transform: none;
    }

    .node-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .node-content {
        width: calc(100% - 48px);
        float: right;
        margin-left: 48px;
    }

    .timeline-node {
        justify-content: flex-start;
    }

    .timeline-node:nth-child(even) {
        flex-direction: row;
    }

    .footer-top {
        flex-direction: column;
        gap: 48px;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 0;
    }

    .header-container {
        padding: 20px 18px;
    }

    .section-container,
    .footer-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav-tree-graphic {
        height: 42px;
    }

    .nav-brand-main {
        font-size: 1.5rem;
    }

    .nav-brand-sub {
        font-size: 0.58rem;
        letter-spacing: 2.6px;
    }

    .cta-glass-card {
        padding: 64px 24px;
    }

    .cta-title {
        font-size: clamp(2.1rem, 9vw, 2.7rem);
    }

    .cta-desc {
        font-size: 1rem;
    }

    .service-card,
    .info-card,
    .contact-card {
        padding: 36px 24px;
    }

    .about-principle-card {
        padding: 0;
    }

    .about-values {
        padding: 26px 22px;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .nav-branding-container {
        gap: 10px;
    }

    .nav-tree-graphic {
        height: 38px;
    }

    .nav-brand-main {
        font-size: 1.3rem;
    }

    .nav-brand-sub {
        font-size: 0.54rem;
        letter-spacing: 2px;
    }

    .node-content {
        padding: 22px;
    }

    .node-title {
        font-size: 1.26rem;
    }

    .node-text {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   REDEFINED EXECUTIVE LEADERSHIP ARCHITECTURE
   ========================================================================== */
.leadership-section {
    position: relative;
    background: linear-gradient(180deg, #F8F9FC 0%, #FFFFFF 50%, #F8F9FC 100%);
    
    overflow: hidden;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 36px);
    margin-top: 60px;
    align-items: stretch;
}

.leader-card {
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 77, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px -12px rgba(6, 27, 77, 0.07);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(6, 27, 77, 0.15);
    border-color: rgba(199, 154, 43, 0.45);
}

.card-top-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
}

.leader-header-block {
    padding: 32px 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(6, 27, 77, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.leader-avatar-frame {
    position: relative;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    margin-bottom: 20px;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold) 0%, rgba(6, 27, 77, 0.2) 100%);
    box-shadow: 0 10px 25px -5px rgba(6, 27, 77, 0.15);
}

.leader-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    background-color: var(--primary);
    transition: transform 0.5s ease;
}

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

.leader-exp-tag {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(6, 27, 77, 0.25);
}

.leader-identity {
    margin-top: 6px;
}

.leader-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 4px;
}

.leader-designation {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.leader-body {
    padding: 0 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.leader-bio {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.68;
    margin-bottom: 24px;
    flex-grow: 1;
}

.focus-section {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed rgba(6, 27, 77, 0.12);
}

.focus-title {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.focus-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.focus-chip {
    display: inline-block;
    background: rgba(6, 27, 77, 0.04);
    border: 1px solid rgba(6, 27, 77, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.leader-card:hover .focus-chip {
    background: rgba(199, 154, 43, 0.08);
    border-color: rgba(199, 154, 43, 0.3);
    color: var(--primary);
}

.leader-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 24px 22px;
    background: rgba(248, 249, 252, 0.7);
    border-top: 1px solid rgba(6, 27, 77, 0.08);
}

.contact-item-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 77, 0.09);
    transition: var(--transition-smooth);
    word-break: break-all;
}

.contact-item-row:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(199, 154, 43, 0.06);
    transform: translateX(3px);
}

.contact-icon {
    font-size: 0.92rem;
    flex-shrink: 0;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1px;
}

/* Responsive Layout Media Queries */
@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }

    .leader-header-block {
        padding: 28px 20px 16px;
    }

    .leader-body {
        padding: 0 20px 20px;
    }

    .leader-contact-details {
        padding: 14px 20px 20px;
    }
}

@media (max-width: 480px) {
    .leader-avatar-frame {
        width: 106px;
        height: 106px;
    }

    .leader-name {
        font-size: 1.55rem;
    }

    .leader-bio {
        font-size: 0.9rem;
    }

    .contact-item-row {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
}

/* ==========================================================================
   SECTORS COVERAGE SECTION ARCHITECTURE
   ========================================================================== */
.sectors-section {
    position: relative;
    background: linear-gradient(180deg, #F8F9FC 0%, #FFFFFF 50%, #F8F9FC 100%);
    overflow: hidden;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 28px);
    margin-top: 56px;
}

.sector-card {
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 77, 0.09);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 35px -10px rgba(6, 27, 77, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(6, 27, 77, 0.15);
    border-color: rgba(199, 154, 43, 0.45);
}

.sector-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--primary);
}

.sector-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card:hover .sector-img {
    transform: scale(1.1);
}

.sector-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 27, 77, 0.15) 0%, rgba(6, 27, 77, 0.75) 100%);
    transition: var(--transition-smooth);
}

.sector-card:hover .sector-img-overlay {
    background: linear-gradient(180deg, rgba(6, 27, 77, 0.05) 0%, rgba(6, 27, 77, 0.65) 100%);
}

.sector-number {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(6, 27, 77, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(199, 154, 43, 0.5);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
}

.sector-content {
    padding: 22px 24px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-grow: 1;
}

.sector-icon-pill {
    width: 44px;
    height: 44px;
    background: rgba(6, 27, 77, 0.04);
    border: 1px solid rgba(6, 27, 77, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.sector-card:hover .sector-icon-pill {
    background: rgba(199, 154, 43, 0.1);
    border-color: rgba(199, 154, 43, 0.3);
    transform: scale(1.08);
}

.sector-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 0;
}

.sector-card-more {
    border: 1px dashed rgba(199, 154, 43, 0.45);
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(199, 154, 43, 0.05) 100%);
}

.sector-card-more .sector-icon-pill {
    background: rgba(199, 154, 43, 0.15);
    border-color: rgba(199, 154, 43, 0.4);
}

@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sector-img-wrapper {
        height: 160px;
    }

    .sector-content {
        padding: 18px 20px;
    }

    .sector-name {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   SIMPLE & MOBILE-FRIENDLY STRUCTURED EXECUTION ARCHITECTURE
   ========================================================================== */
.process-section {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FC 50%, #FFFFFF 100%);
    
}

.process-simple-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    margin-top: 50px;
}

.process-simple-card {
    background: #FFFFFF;
    border: 1px solid rgba(6, 27, 77, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px -10px rgba(6, 27, 77, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.process-simple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(6, 27, 77, 0.12);
    border-color: rgba(199, 154, 43, 0.4);
}

.simple-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.simple-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.simple-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 0;
    flex: 1;
}

.simple-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .process-simple-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .process-simple-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-simple-card {
        padding: 22px 20px;
    }

    .simple-card-title {
        font-size: 1.3rem;
    }
}
