/* ===================================
   PROFESSIONAL CONSULTING DESIGN SYSTEM
   Inspired by PWC, Accenture, Genpact
   =================================== */

/* ===================================
   CSS VARIABLES & DESIGN TOKENS
   =================================== */
:root {
    /* Gold Fin Brand Colors */
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    
    /* Navy/Dark Colors */
    --navy-primary: #0a1929;
    --navy-secondary: #1a2940;
    --navy-light: #2d3e50;
    
    /* Neutral Palette */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;
    
    /* Typography */
    --font-display: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   TYPOGRAPHY SYSTEM
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===================================
   REFINED PROFESSIONAL LANDING PAGE
   =================================== */

.landing-body-refined {
    background: #0a1929;
    min-height: 100vh;
    font-family: var(--font-body);
}

/* Massive Watermark Logo */
.watermark-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(6);
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
    filter: saturate(0.2) contrast(1.5);
}

.watermark-logo img {
    width: 900px;
    height: auto;
}

/* Refined Navigation */
.nav-refined {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: clamp(1rem, 2vw, 2rem) clamp(1.5rem, 4vw, 3rem);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand-refined {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.nav-home-btn {
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-home-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.95);
}

.nav-logo-refined {
    height: 32px;
    width: auto;
    filter: saturate(0.7) contrast(1.1);
}

/* Main Landing Content */
.landing-main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.landing-content-refined {
    max-width: 1100px;
    width: 100%;
}

/* Typography */
.landing-title-refined {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.landing-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5rem;
    font-weight: 400;
}

/* Choice Cards */
.landing-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.choice-refined {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.choice-refined:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.choice-featured {
    border-color: rgba(212, 175, 55, 0.2);
}

.choice-featured:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.choice-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.choice-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.choice-arrow {
    transition: all 0.3s ease;
    display: inline-block;
    align-self: flex-end;
}

.choice-arrow img {
    width: 32px;
    height: 32px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.choice-refined:hover .choice-arrow {
    transform: translateX(8px);
}

.choice-refined:hover .choice-arrow img {
    opacity: 1;
}

.choice-featured .choice-arrow img {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .watermark-logo {
        transform: translate(-50%, -50%) scale(4);
    }
}

@media (max-width: 768px) {
    .nav-refined {
        padding: 1.5rem 2rem;
    }
    
    .landing-title-refined {
        font-size: 2.5rem;
    }
    
    .landing-tagline {
        margin-bottom: 3rem;
    }
    
    .landing-choices {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .choice-refined {
        padding: 2rem;
    }
    
    .choice-arrow img {
        width: 28px;
        height: 28px;
    }
    
    .watermark-logo {
        transform: translate(-50%, -50%) scale(2.5);
    }
    
    .landing-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Landing Info Section */
.landing-info-section {
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    position: relative;
    z-index: 1;
}

.landing-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-info-block {
    text-align: center;
}

.landing-info-block h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.landing-info-block p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

@media (max-width: 480px) {
    .landing-title-refined {
        font-size: 2rem;
    }
    
    .nav-logo-refined {
        height: 28px;
    }
    
    .nav-brand-refined {
        font-size: 1rem;
    }
}

/* ===================================
   NAVIGATION - ENTERPRISE STYLE
   =================================== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity var(--transition-base);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-base);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--gray-900);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold-primary);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   HERO - ENTERPRISE STYLE
   =================================== */
.hero-enterprise {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 25, 41, 0.95) 0%, 
        rgba(26, 41, 64, 0.85) 100%);
    z-index: 1;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-style: italic;
    padding: var(--space-lg);
    text-align: center;
}

.hero-content-enterprise {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--space-3xl) 0;
}

.dynamic-tagline-enterprise {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    transition: opacity var(--transition-slow);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===================================
   BUTTON SYSTEM
   =================================== */
.btn-primary-gold,
.btn-secondary-gold,
.btn-primary-white,
.btn-secondary-outline,
.btn-ghost {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary-gold {
    background: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-primary);
}

.btn-primary-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

.btn-primary-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-gold {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-secondary-gold:hover {
    background: var(--gold-primary);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: transparent;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header-center,
.section-header-left,
.section-header-between {
    margin-bottom: var(--space-2xl);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-lg);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-top: var(--space-sm);
    line-height: 1.7;
}

/* ===================================
   FEATURED SOLUTIONS
   =================================== */
.featured-solutions {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.solutions-grid-enterprise {
    display: grid;
    gap: var(--space-xl);
}

.solution-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    background: var(--gray-50);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.solution-card-large:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.solution-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-style: italic;
    padding: var(--space-lg);
    text-align: center;
}

.solution-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
}

.solution-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    margin-bottom: var(--space-md);
    align-self: flex-start;
}

.solution-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.solution-content > p {
    margin-bottom: var(--space-md);
}

.solution-highlights {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.solution-highlights li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.solution-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

.link-arrow {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: auto;
}

.link-arrow:hover {
    color: var(--gold-dark);
    padding-left: 4px;
}

.link-arrow-large {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.link-arrow-large:hover {
    color: var(--gold-dark);
}

/* ===================================
   INDUSTRY EXPERTISE
   =================================== */
.industry-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.industry-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.industry-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.industry-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.industry-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   CASE STUDY FEATURED
   =================================== */
.case-study-featured {
    padding: var(--space-3xl) 0;
    background: var(--navy-primary);
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.case-study-image-placeholder {
    aspect-ratio: 16/9;
    background: var(--navy-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-style: italic;
    padding: var(--space-lg);
    text-align: center;
}

.case-study-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

.case-study-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.case-study-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* ===================================
   INSIGHTS PREVIEW
   =================================== */
.insights-preview {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.insights-grid-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.insight-card-featured {
    grid-row: span 2;
    background: var(--gray-50);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.insight-card-featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.insight-card-featured .insight-image-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-style: italic;
    padding: var(--space-lg);
    text-align: center;
}

.insight-card-featured .insight-content {
    padding: var(--space-xl);
}

.insight-card-featured h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.insight-card-secondary {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.insight-card-secondary:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.insight-card-secondary h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.insight-meta {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.insight-content p {
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

/* ===================================
   CTA ENTERPRISE
   =================================== */
.cta-enterprise {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    text-align: center;
}

.cta-content-center h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content-center p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER ENTERPRISE
   =================================== */
.footer-enterprise {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-700);
}

.footer-column-brand {
    max-width: 350px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-column-brand p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.footer-column h5 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-column a {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-base);
}

.footer-column a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

/* ===================================
   PRODUCTS PAGE (Unchanged)
   =================================== */
.coming-soon-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    padding: 2rem;
}

.coming-soon-content {
    text-align: center;
    max-width: 700px;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.coming-soon-text {
    font-size: 1.25rem;
    color: #b8c5d6;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-primary);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

/* ===================================
   MODAL & FORM (Unchanged)
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gray-600);
    cursor: pointer;
    transition: color var(--transition-base);
}

.close-modal:hover {
    color: var(--gray-900);
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: var(--gray-900);
    font-size: 1.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.submit-button {
    width: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-success {
    text-align: center;
    padding: 2rem;
    color: #2e7d32;
    font-size: 1.125rem;
}

.form-success.hidden {
    display: none;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .solution-card-large,
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid-featured {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 3rem;
        --space-2xl: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-header-between {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-metrics {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group > *,
    .cta-buttons > * {
        width: 100%;
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

/* ===================================
   REFINED PROFESSIONAL SERVICES PAGES
   =================================== */

.services-body-refined {
    background: #0a1929;
    min-height: 100vh;
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9);
    padding-top: clamp(60px, 10vw, 80px); /* Account for fixed navigation, scales with viewport */
}

/* Watermark Logo for Services */
.watermark-logo-services {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(6);
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
    filter: saturate(0.2) contrast(1.5);
}

.watermark-logo-services img {
    width: 900px;
    height: auto;
}

/* Refined Navigation for Services */
.nav-refined {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 25, 41, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-brand-refined {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: opacity 0.3s ease;
}

.nav-brand-refined:hover {
    opacity: 0.8;
}

.nav-logo-refined {
    height: 32px;
    width: auto;
    filter: saturate(0.7) contrast(1.1);
}

.nav-links-refined {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link-refined {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link-refined:hover,
.nav-link-refined.active {
    color: rgba(255, 255, 255, 0.95);
}

.nav-link-refined::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.6);
    transition: width 0.3s ease;
}

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

.nav-link-cta {
    color: rgba(212, 175, 55, 0.9);
    font-weight: 500;
}

.nav-link-cta:hover {
    color: rgba(212, 175, 55, 1);
}

/* Container */
.container-refined {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 3rem);
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-refined {
    padding: clamp(8rem, 12vw, 10rem) clamp(1rem, 3vw, 2rem) clamp(4rem, 8vw, 6rem);
}

.hero-title-refined {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle-refined {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-actions-refined {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-refined-primary,
.btn-refined-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-refined-primary {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.95);
}

.btn-refined-primary:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
}

.btn-refined-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.btn-refined-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

/* Stats */
.stats-refined {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-refined {
    text-align: center;
}

.stat-number-refined {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label-refined {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section */
.section-refined {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.section-header-refined {
    margin-bottom: 4rem;
}

.section-title-refined {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro-refined {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Services Grid */
.services-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card-refined {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all 0.3s ease;
}

.service-card-refined:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.service-card-refined h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card-refined p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-list-refined {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list-refined li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-list-refined li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(212, 175, 55, 0.6);
}

.link-refined {
    color: rgba(212, 175, 55, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-refined:hover {
    color: rgba(212, 175, 55, 1);
    padding-left: 4px;
}

/* Case Study */
.case-study-refined {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.case-study-content-refined {
    max-width: 900px;
    margin: 0 auto;
}

.case-study-label {
    font-size: 0.8125rem;
    color: rgba(212, 175, 55, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.case-study-content-refined h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.case-study-content-refined p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.case-metrics-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-metric-refined {
    text-align: center;
}

.metric-value-refined {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 0.5rem;
}

.metric-label-refined {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Industries */
.industries-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-refined {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    text-align: center;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.industry-refined:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-refined {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
    text-align: center;
}

.cta-refined h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.cta-refined p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer-refined {
    padding: clamp(3rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content-refined {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand-refined {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    font-weight: 500;
}

.footer-logo-refined {
    height: 28px;
    width: auto;
    filter: saturate(0.6) contrast(1.1);
}

.footer-links-refined {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-refined a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links-refined a:hover {
    color: rgba(212, 175, 55, 0.8);
}

.footer-bottom-refined {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-refined p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Page-Specific Styles */
.page-hero-refined {
    padding: clamp(8rem, 10vw, 10rem) clamp(1rem, 3vw, 2rem) clamp(3rem, 5vw, 4rem);
    text-align: center;
}

.page-hero-refined h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-hero-refined p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-refined img {
    max-width: 150px;
    height: auto;
    margin: 2.5rem auto 0;
    display: block;
    opacity: 0.85;
}

/* Content Sections */
.content-section-refined {
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 3vw, 1.5rem);
}

.content-block-refined {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.content-block-refined h2 {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.content-block-refined p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .watermark-logo-services {
        transform: translate(-50%, -50%) scale(4);
    }
}

@media (max-width: 768px) {
    .nav-refined {
        padding: 1.5rem 2rem;
    }
    
    .nav-links-refined {
        display: none;
    }
    
    .hero-refined {
        padding: 10rem 2rem 6rem;
    }
    
    .services-grid-refined {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-refined {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .case-metrics-refined {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industries-grid-refined {
        grid-template-columns: 1fr;
    }
    
    .footer-content-refined {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links-refined {
        flex-direction: column;
        gap: 1rem;
    }
    
    .watermark-logo-services {
        transform: translate(-50%, -50%) scale(2.5);
    }
}

@media (max-width: 480px) {
    .hero-title-refined {
        font-size: 2rem;
    }
    
    .stats-grid-refined {
        grid-template-columns: 1fr;
    }
    
    .nav-logo-refined,
    .footer-logo-refined {
        height: 28px;
    }
}

/* ===================================
   ADDITIONAL REFINED PAGE STYLES
   =================================== */

/* Values Grid */
.values-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card-refined {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card-refined:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.value-card-refined h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.value-card-refined p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Background Subtle */
.bg-subtle {
    background: rgba(255, 255, 255, 0.015);
}

/* Leadership Grid */
.leadership-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.leader-card-refined {
    text-align: center;
}

.leader-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.leader-card-refined h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.leader-title-refined {
    font-size: 0.875rem;
    color: rgba(212, 175, 55, 0.8);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leader-card-refined p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons-refined {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Detail Page */
.service-detail-section {
    padding: 4rem 2rem;
}

.service-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-weight: 500;
}

.service-offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Insights Page */
.insights-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.insight-card-main {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insight-card-main:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.insight-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.insight-card-main .insight-content {
    padding: 2rem;
}

.insight-meta {
    font-size: 0.8125rem;
    color: rgba(212, 175, 55, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-card-main h3 {
    font-size: 1.375rem;
    font-weight: 500;
    color: rgba(10, 25, 41, 0.7);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.insight-card-main p {
    font-size: 1rem;
    color: rgba(10, 25, 41, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Careers Page */
.job-listings-section {
    padding: 4rem 2rem;
}

.job-listing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.job-listing-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
}

.job-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-meta span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.job-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.job-apply-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.95);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
}

/* Footer Legal */
.footer-legal-refined {
    display: flex;
    gap: 2rem;
}

.footer-legal-refined a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-refined a:hover {
    color: rgba(212, 175, 55, 0.7);
}

/* Footer Social Media */
.footer-social-refined {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-social-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons a:hover {
    color: rgba(212, 175, 55, 0.8);
}

.footer-social-icons svg {
    width: 20px;
    height: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .values-grid-refined,
    .leadership-grid-refined,
    .insights-grid-main {
        grid-template-columns: 1fr;
    }
    
    .footer-legal-refined {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom-refined {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-social-refined {
        width: 100%;
        justify-content: space-between;
    }
}

/* ===================================
   PRODUCTS PAGE - REFINED
   =================================== */

.products-main-refined {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

.products-content-refined {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.products-title-refined {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.products-description-refined {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Waitlist Email Box */
.waitlist-email-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    text-align: center;
}

.waitlist-email-box h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.waitlist-email-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Products Mission Box */
.products-mission-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.products-mission-box p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.products-logo-display {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.products-logo-display img {
    width: 150px;
    height: auto;
    opacity: 0.8;
    filter: saturate(0.9) contrast(1.2);
}

.email-display {
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2px;
}

.email-display a {
    font-size: 1.125rem;
    color: rgba(212, 175, 55, 0.95);
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-display a:hover {
    color: rgba(212, 175, 55, 1);
}

@media (max-width: 768px) {
    .products-main-refined {
        padding: 10rem 2rem 4rem;
    }
    
    .waitlist-email-box {
        padding: 2rem;
    }
    
    .email-display {
        padding: 1.25rem 1.5rem;
    }
    
    .email-display a {
        font-size: 1rem;
        word-break: break-all;
    }
}

/* ===================================
   PRICING/SERVICES PAGE WITH SPLIT LAYOUT
   =================================== */

.pricing-section-refined {
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
}

.pricing-split-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side: Information */
.pricing-info-left {
    position: sticky;
    top: 120px;
}

.pricing-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Package Navigation Buttons */
.package-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.package-nav-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.package-nav-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.package-nav-btn.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    border-left-width: 3px;
}

.package-nav-number {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(212, 175, 55, 0.9);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    flex-shrink: 0;
}

.package-nav-btn.active .package-nav-number {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.package-nav-content h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.package-nav-type {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Slideshow Controls at Bottom of Left Side */
.slideshow-controls-bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.slide-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.9);
    transform: scale(1.05);
}

.slide-indicator {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.slide-current {
    color: rgba(212, 175, 55, 0.9);
    font-weight: 600;
}

/* Right Side: Slideshow */
.pricing-slideshow-right {
    position: relative;
    min-height: 600px;
}

.pricing-slide {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.pricing-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pricing Card Styles */
.pricing-card-refined {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: clamp(2rem, 4vw, 3rem);
    transition: all 0.4s ease;
}

.pricing-card-refined:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-card-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-number {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(212, 175, 55, 0.9);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.pricing-card-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.pricing-type {
    display: inline-block;
    font-size: 0.8125rem;
    color: rgba(212, 175, 55, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.pricing-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.875rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 600;
}

.pricing-info-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(212, 175, 55, 0.5);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

.pricing-label-refined {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.pricing-amount-refined {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.95);
    margin-bottom: 1rem;
    line-height: 1;
}

.pricing-details-refined {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.pricing-ideal h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.pricing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pricing-tags span {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.875rem;
    border-radius: 2px;
    font-weight: 500;
}

/* Responsive Split Layout */
@media (max-width: 1024px) {
    .pricing-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-info-left {
        position: relative;
        top: 0;
    }
    
    .package-nav {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .package-nav-btn {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .pricing-card-refined {
        padding: 2rem;
    }
    
    .pricing-card-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .pricing-card-header h2 {
        font-size: 1.5rem;
    }
    
    .pricing-amount-refined {
        font-size: 2rem;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .pricing-tags {
        flex-direction: column;
    }
    
    .pricing-tags span {
        text-align: center;
    }
    
    .pricing-slideshow-right {
        min-height: 700px;
    }
    
    .package-nav {
        flex-direction: column;
    }
    
    .package-nav-btn {
        min-width: auto;
    }
}

/* ===================================
   2026 TRENDS: GLASSMORPHISM & KINETIC DESIGN
   =================================== */

/* Services Body Specific Styles */
.services-body {
    background: linear-gradient(135deg, #0a1929 0%, #1a2940 50%, #0f1e2e 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Massive Faded Background Logo for Services */
.services-logo-background {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(5);
    z-index: 0;
    opacity: 0.04;
    pointer-events: none;
    filter: saturate(0.3) contrast(2) brightness(1.2);
}

.services-logo-background img {
    width: 1000px;
    height: auto;
}

/* Glassmorphism Navigation */
.navbar-glass {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 4rem);
    max-width: 1400px;
}

.nav-content-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-brand-glass {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.nav-brand-glass:hover {
    transform: translateY(-2px);
}

.nav-logo-glass {
    height: 40px;
    width: auto;
    filter: saturate(0.85) contrast(1.2) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.nav-brand-glass:hover .nav-logo-glass {
    filter: saturate(1) contrast(1.3) drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.brand-text {
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links-glass {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link-glass {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-glass:hover,
.nav-link-glass.active {
    color: rgba(255, 255, 255, 1);
}

.nav-link-glass::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

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

.nav-cta-glass {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(244, 208, 63, 0.9));
    color: #0a1929;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.nav-cta-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Kinetic Hero Section */
.hero-kinetic {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

/* Organic Floating Shapes */
.organic-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatOrganic 20s ease-in-out infinite;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.3), transparent);
    top: 50%;
    right: -5%;
    animation-delay: 7s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent);
    bottom: -10%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes floatOrganic {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) rotate(240deg) scale(0.9);
    }
}

/* Kinetic Typography */
.hero-content-kinetic {
    text-align: center;
    max-width: 900px;
    z-index: 10;
}

.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(244, 208, 63, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.kinetic-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.kinetic-title .word {
    display: inline-block;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(40px) rotateX(-20deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay);
}

.kinetic-title .word.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.gradient-text {
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-description.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphic Buttons */
.hero-cta-kinetic {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.hero-cta-kinetic.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-glass-primary,
.btn-glass-secondary,
.btn-glass-tertiary,
.btn-glass-hero,
.btn-glass-outline {
    position: relative;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-glass-primary,
.btn-glass-hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(244, 208, 63, 0.95));
    color: #0a1929;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.btn-glass-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-glass-tertiary {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(244, 208, 63, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.btn-glass-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-glass-primary:hover,
.btn-glass-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-glass-secondary:hover,
.btn-glass-tertiary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Button Shine Effect */
.btn-shine,
.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-glass-primary:hover .btn-shine,
.btn-glass-hero:hover .btn-glow {
    left: 100%;
}

/* Floating Glass Stats Cards */
.floating-stats {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.floating-stats.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-glass-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Bento Grid Layout (2026 Trend) */
.bento-services {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.bento-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title-kinetic {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Bento Card Sizes */
.bento-large {
    grid-column: span 6;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 6;
}

.bento-tall {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 8;
}

/* Glass Cards with Gradient Orbs */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
}

.glass-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Gradient Orbs Inside Cards */
.bento-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    top: -50%;
    right: -20%;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.25), transparent);
    bottom: -30%;
    left: -10%;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    top: 20%;
    left: 50%;
}

.orb-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.28), transparent);
    top: -20%;
    left: -15%;
}

.orb-5 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent);
    bottom: -10%;
    right: 20%;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

/* Bento Card Content */
.bento-content {
    position: relative;
    z-index: 1;
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.bento-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.bento-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bento-list {
    list-style: none;
    margin-bottom: 2rem;
}

.bento-list li {
    color: rgba(255, 255, 255, 0.65);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.bento-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(244, 208, 63, 0.8);
    font-weight: 700;
}

.link-kinetic {
    color: rgba(244, 208, 63, 0.9);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-kinetic:hover {
    color: rgba(244, 208, 63, 1);
    padding-left: 8px;
}

.link-kinetic-large {
    font-size: 1.25rem;
    color: rgba(244, 208, 63, 0.9);
    font-weight: 600;
}

.bento-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.metric-highlight {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 3D Case Study Card */
.case-study-3d {
    padding: 8rem 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-3d.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-study-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.glass-card-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.glass-card-3d:hover {
    transform: translateZ(20px) rotateY(-5deg) rotateX(5deg);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(212, 175, 55, 0.2);
}

.case-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15), transparent 70%);
    border-radius: 32px;
    z-index: 0;
}

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

.case-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: rgba(244, 208, 63, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.case-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-metric {
    text-align: center;
}

.case-metric-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.case-metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.case-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.case-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Insights Kinetic Cards */
.insights-kinetic {
    padding: 8rem 2rem;
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.insights-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.insights-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-card-kinetic {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card-kinetic.visible {
    opacity: 1;
    transform: translateY(0);
}

.insight-card-kinetic:hover {
    transform: translateY(-8px);
}

.insight-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.insight-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-text {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1.125rem;
}

.gradient-bg-1 {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(26, 41, 64, 0.6));
}

.gradient-bg-2 {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.25), rgba(20, 35, 55, 0.6));
}

.gradient-bg-3 {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(32, 47, 70, 0.6));
}

.insight-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.insight-type,
.insight-date {
    font-size: 0.8125rem;
    color: rgba(244, 208, 63, 0.8);
    font-weight: 600;
}

.insight-card-kinetic h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.insight-card-kinetic p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* CTA Glass Section */
.cta-glass {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-glass-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.organic-shape-cta {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.shape-cta-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent);
    top: -300px;
    left: -200px;
}

.shape-cta-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.3), transparent);
    bottom: -250px;
    right: -150px;
}

.cta-content-glass {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-content-glass.visible {
    opacity: 1;
    transform: scale(1);
}

.cta-content-glass h2 {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.cta-content-glass p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-glass {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Minimal Footer */
.footer-minimal {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-links-minimal {
    display: flex;
    gap: 2rem;
}

.footer-links-minimal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links-minimal a:hover {
    color: rgba(244, 208, 63, 0.9);
}

.footer-bottom-minimal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-minimal p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Responsive for 2026 Design */
@media (max-width: 1024px) {
    .bento-large,
    .bento-medium,
    .bento-tall,
    .bento-wide {
        grid-column: span 12;
    }
    
    .case-study-container {
        grid-template-columns: 1fr;
    }
    
    .insights-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-glass {
        top: 1rem;
        width: calc(100% - 2rem);
    }
    
    .nav-links-glass {
        display: none;
    }
    
    .kinetic-title {
        font-size: 2.5rem;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: stretch;
    }
    
    .case-metric-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content-minimal {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links-minimal {
        flex-wrap: wrap;
    }
}

/* ===================================
   PAGE HERO (Generic)
   =================================== */
.page-hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-hero .hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   SERVICES DETAIL PAGE
   =================================== */
.services-detail-section {
    padding: var(--space-3xl) 0;
}

.service-detail-block {
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--gray-200);
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-detail-header {
    margin-bottom: var(--space-xl);
}

.service-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: var(--space-md);
}

.service-detail-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.service-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 900px;
}

.service-offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.offering-card {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.offering-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.offering-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.offering-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   INSIGHTS/BLOG PAGES
   =================================== */
.insights-hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    text-align: center;
}

.insights-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.insights-hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.insights-filters {
    padding: var(--space-xl) 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.filter-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--white);
}

.insights-content-section {
    padding: var(--space-3xl) 0;
}

.insights-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.insight-card-main {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.insight-card-main:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.insight-card-main .insight-image-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-style: italic;
    padding: var(--space-lg);
    text-align: center;
}

.insight-card-main .insight-content {
    padding: var(--space-lg);
}

.insight-card-main h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    color: rgba(10, 25, 41, 0.7);
}

.insight-card-main p {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--gray-600);
}

/* ===================================
   CAREERS PAGE
   =================================== */
.careers-intro {
    padding: var(--space-3xl) 0;
    background: var(--white);
    text-align: center;
}

.careers-intro h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.careers-intro p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

.values-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.values-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.value-card-large {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.value-icon-large {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.value-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.value-card-large p {
    font-size: 1rem;
    color: var(--gray-600);
}

.job-listings-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.job-listing-card {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.job-listing-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.job-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.job-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.job-description {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.job-apply-btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.job-apply-btn:hover {
    background: var(--gold-dark);
}

/* ===================================
   ABOUT PAGE ENHANCEMENTS
   =================================== */
.about-hero-enhanced {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.about-hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.about-hero-image-placeholder {
    aspect-ratio: 4/3;
    background: var(--navy-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-style: italic;
    padding: var(--space-lg);
    text-align: center;
}

.leadership-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

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

.leader-image-placeholder {
    aspect-ratio: 1;
    background: var(--gray-200);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-style: italic;
}

.leader-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.leader-title {
    font-size: 0.9375rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.leader-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

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

@media (max-width: 768px) {
    .insights-grid-main {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
    }
}
/* ===================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   iOS and Android Compatible
   =================================== */

/* Base Mobile Viewport Fix */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
}

/* Navigation - Mobile Fix */
@media (max-width: 768px) {
    .nav-refined {
        padding: 1rem 1.5rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .nav-brand-refined {
        font-size: 1rem;
        gap: 0.75rem;
        z-index: 1001;
    }
    
    .nav-logo-refined {
        height: 24px;
    }
    
    .nav-home-btn {
        display: none;
    }
    
    /* Hamburger Menu */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
        -webkit-tap-highlight-color: transparent; /* Remove iOS tap highlight */
        touch-action: manipulation; /* Improve touch response */
    }
    
    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 2px;
        transition: all 0.3s ease;
        pointer-events: none; /* Prevent span from blocking clicks */
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Mobile Menu */
    .nav-links-refined {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for iOS */
        background: rgba(10, 25, 41, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* iOS Safari support */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .nav-links-refined.active {
        right: 0;
    }
    
    .nav-link-refined {
        display: block;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.95);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .nav-link-refined:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link-refined.nav-link-cta {
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        background: rgba(212, 175, 55, 0.15);
        border: 1px solid rgba(212, 175, 55, 0.4);
        border-radius: 2px;
        text-align: center;
    }
    
    .nav-link-refined::after {
        display: none;
    }
    
    /* Prevent scroll when menu open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* iOS-specific fixes */
    @supports (-webkit-touch-callout: none) {
        .nav-links-refined {
            height: -webkit-fill-available;
        }
    }
    
    /* Menu overlay for better UX */
    .nav-links-refined::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .nav-links-refined.active::before {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Show hamburger only on mobile */
@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }
    
    /* Desktop navigation - show links normally */
    .nav-links-refined {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        gap: 2rem;
        box-shadow: none;
    }
    
    .nav-link-refined {
        width: auto;
        padding: 0;
        border: none;
        font-size: 1rem;
    }
    
    .nav-link-refined:first-child {
        border: none;
    }
    
    .nav-link-refined.nav-link-cta {
        margin-top: 0;
        padding: 0.625rem 1.5rem;
    }
}

/* Landing Page - Mobile */
@media (max-width: 768px) {
    .landing-main {
        padding: 8rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .landing-title-refined {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .landing-tagline {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .landing-choices {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .choice-refined {
        padding: 2rem 1.5rem;
    }
    
    .choice-label {
        font-size: 1.375rem;
    }
    
    .choice-description {
        font-size: 0.9375rem;
    }
    
    .landing-info-section {
        padding: 4rem 1.5rem;
    }
    
    .landing-info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .landing-info-block h2 {
        font-size: 1.25rem;
    }
    
    .landing-info-block p {
        font-size: 0.9375rem;
    }
}

/* Services Pages - Mobile */
@media (max-width: 768px) {
    .watermark-logo,
    .watermark-logo-services {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.02;
    }
    
    .page-hero-refined {
        padding: 8rem 1.5rem 3rem;
    }
    
    .page-hero-refined h1 {
        font-size: 2rem;
    }
    
    .page-hero-refined p {
        font-size: 1rem;
    }
    
    .hero-refined {
        padding: 8rem 1.5rem 4rem;
    }
    
    .hero-title-refined {
        font-size: 2rem;
    }
    
    .hero-subtitle-refined {
        font-size: 1rem;
    }
    
    .hero-actions-refined {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions-refined a {
        width: 100%;
        text-align: center;
    }
}

/* Stats Section - Mobile */
@media (max-width: 768px) {
    .stats-refined {
        padding: 3rem 1.5rem;
    }
    
    .stats-grid-refined {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number-refined {
        font-size: 2rem;
    }
    
    .stat-label-refined {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .stats-grid-refined {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Services Grid - Mobile */
@media (max-width: 768px) {
    .section-refined {
        padding: 4rem 1.5rem;
    }
    
    .section-title-refined {
        font-size: 1.75rem;
    }
    
    .section-intro-refined {
        font-size: 1rem;
    }
    
    .services-grid-refined {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-refined {
        padding: 2rem 1.5rem;
    }
    
    .service-card-refined h3 {
        font-size: 1.25rem;
    }
}

/* Pricing Slideshow - Mobile */
@media (max-width: 1024px) {
    .pricing-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-info-left {
        position: relative;
        top: 0;
    }
    
    .package-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .package-nav-btn {
        min-width: 220px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .pricing-section-refined {
        padding: 3rem 1.5rem;
    }
    
    .pricing-slideshow-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .pricing-card-refined {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .pricing-card-header h2 {
        font-size: 1.5rem;
    }
    
    .pricing-amount-refined {
        font-size: 2rem;
    }
    
    .pricing-tags {
        flex-direction: column;
    }
    
    .pricing-tags span {
        width: 100%;
        text-align: center;
    }
    
    .package-nav {
        flex-direction: column;
        overflow-x: visible;
    }
    
    .package-nav-btn {
        min-width: auto;
        width: 100%;
    }
    
    .slideshow-controls-bottom {
        justify-content: center;
        margin-top: 2rem;
    }
}

/* Case Study - Mobile */
@media (max-width: 768px) {
    .case-study-refined {
        padding: 4rem 1.5rem;
    }
    
    .case-study-content-refined h2 {
        font-size: 1.5rem;
    }
    
    .case-metrics-refined {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Industries - Mobile */
@media (max-width: 768px) {
    .industries-grid-refined {
        grid-template-columns: 1fr;
    }
    
    .industry-refined {
        padding: 1.5rem;
    }
}

/* CTA Section - Mobile */
@media (max-width: 768px) {
    .cta-refined {
        padding: 4rem 1.5rem;
    }
    
    .cta-refined h2 {
        font-size: 1.75rem;
    }
    
    .cta-refined p {
        font-size: 1rem;
    }
    
    .cta-buttons-refined {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons-refined .btn-refined-primary,
    .cta-buttons-refined .btn-refined-secondary {
        width: 100%;
        text-align: center;
    }
}

/* About Page - Mobile */
@media (max-width: 768px) {
    .content-section-refined {
        padding: 3rem 1.5rem;
    }
    
    .content-block-refined {
        margin: 0 auto 3rem;
    }
    
    .content-block-refined h2 {
        font-size: 1.5rem;
    }
    
    .values-grid-refined,
    .leadership-grid-refined {
        grid-template-columns: 1fr;
    }
    
    .leader-card-refined h3 {
        font-size: 1.125rem;
    }
}

/* Insights Page - Mobile */
@media (max-width: 768px) {
    .insights-grid-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insight-card-main h3 {
        font-size: 1.25rem;
    }
}

/* Products Page - Mobile */
@media (max-width: 768px) {
    .products-main-refined {
        padding: 8rem 1.5rem 3rem;
    }
    
    .page-hero-refined img {
        max-width: 120px;
        margin: 2rem auto 0;
    }
    
    .waitlist-email-box {
        padding: 2rem 1.5rem;
    }
    
    .email-display {
        padding: 1rem;
    }
    
    .email-display a {
        font-size: 0.9375rem;
        word-break: break-word;
    }
    
    .products-mission-box {
        padding: 1.5rem;
    }
    
    .products-mission-box p {
        font-size: 1rem;
    }
}

/* Footer - Mobile */
@media (max-width: 768px) {
    .footer-refined {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content-refined {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-brand-refined {
        font-size: 1rem;
    }
    
    .footer-logo-refined {
        height: 24px;
    }
    
    .footer-links-refined {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .footer-links-refined a {
        font-size: 0.875rem;
    }
    
    .footer-bottom-refined {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-legal-refined {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .footer-social-refined {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-social-icons {
        gap: 1.5rem;
    }
}

/* Buttons - Mobile Touch Targets */
@media (max-width: 768px) {
    .btn-refined-primary,
    .btn-refined-secondary {
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .slide-btn {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets for mobile */
    .nav-link-refined,
    .footer-links-refined a,
    .link-refined {
        padding: 0.5rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Remove hover effects on touch devices */
    .choice-refined:hover {
        transform: none;
    }
    
    .service-card-refined:hover {
        transform: none;
    }
}

/* Small Mobile Devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .landing-title-refined {
        font-size: 1.75rem;
    }
    
    .page-hero-refined h1 {
        font-size: 1.75rem;
    }
    
    .hero-title-refined {
        font-size: 1.75rem;
    }
    
    .nav-refined {
        padding: 1rem;
    }
    
    .choice-refined {
        padding: 1.5rem;
    }
    
    .section-title-refined {
        font-size: 1.5rem;
    }
}
