/* ═══════════════════════════════════════════════════════════════
   ULTRA-PREMIUM WEBSITE - ELITE DESIGN SYSTEM
   Crafted for Ultra High Net Worth Individuals
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   RESET & FOUNDATION
   ─────────────────────────────────────────────────────────────── */

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

:root {
    /* Premium Color Palette */
    --midnight: #0a0e27;
    --deep-navy: #101429;
    --royal-purple: #1a1d3f;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #a855f7;
    --gold-accent: #ffd700;
    --pearl: #f8f9fa;
    --silver: #e5e7eb;
    --platinum: #d1d5db;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-royal: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    
    /* Elite Typography Scale */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', 'Inter', -apple-system, sans-serif;
    
    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.65rem + 1.125vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.95rem + 1.5vw, 3.5rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);
    
    /* Premium Spacing */
    --space-xs: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    --space-sm: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    --space-md: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    --space-lg: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    --space-xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
    --space-2xl: clamp(3rem, 2rem + 5vw, 6rem);
    --space-3xl: clamp(4rem, 2.5rem + 7.5vw, 8rem);
    
    /* Shadows & Blur */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    --glow-primary: 0 0 40px rgba(99, 102, 241, 0.3);
    --glow-secondary: 0 0 40px rgba(139, 92, 246, 0.3);
    
    /* Timing Functions */
    --ease-elegant: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ───────────────────────────────────────────────────────────────
   GLOBAL STYLES
   ─────────────────────────────────────────────────────────────── */

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

body {
    font-family: var(--font-body);
    background: var(--midnight);
    color: var(--pearl);
    font-size: var(--text-base);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--accent-primary);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--deep-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* ───────────────────────────────────────────────────────────────
   AMBIENT BACKGROUND
   ─────────────────────────────────────────────────────────────── */

.ambient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #764ba2 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.noise-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
}

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

/* ───────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ─────────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ───────────────────────────────────────────────────────────────
   LAYOUT CONTAINERS
   ─────────────────────────────────────────────────────────────── */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

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

section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.hide-mobile {
    display: inline;
}

/* ───────────────────────────────────────────────────────────────
   ELITE NAVIGATION
   ─────────────────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--ease-elegant);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-signature {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--pearl);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s var(--ease-smooth);
}

.brand-signature:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    color: var(--silver);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s var(--ease-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
    color: var(--pearl);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--pearl);
    transition: all 0.3s var(--ease-smooth);
}

/* ───────────────────────────────────────────────────────────────
   HERO SECTION
   ─────────────────────────────────────────────────────────────── */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--pearl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s var(--ease-elegant);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-line:first-child {
    color: var(--pearl);
    animation: fadeInUp 1s var(--ease-elegant) 0.2s both;
}

.title-line:last-child {
    animation: fadeInUp 1s var(--ease-elegant) 0.4s both;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--silver);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    font-weight: 400;
    animation: fadeInUp 1s var(--ease-elegant) 0.6s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease-elegant) 0.8s both;
}

/* ───────────────────────────────────────────────────────────────
   PREMIUM BUTTONS
   ─────────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2.5rem;
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s var(--ease-elegant);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5), var(--glow-primary);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--pearl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-smooth);
}

.btn:hover svg {
    transform: translateX(5px);
}

/* ───────────────────────────────────────────────────────────────
   SCROLL INDICATOR
   ─────────────────────────────────────────────────────────────── */

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.6;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ───────────────────────────────────────────────────────────────
   SECTION HEADERS
   ─────────────────────────────────────────────────────────────── */

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--silver);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────
   ABOUT SECTION
   ─────────────────────────────────────────────────────────────── */

.about-section {
    background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-navy) 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.5s var(--ease-elegant);
    backdrop-filter: blur(10px);
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.pillar-icon {
    margin-bottom: var(--space-lg);
}

.pillar-icon svg {
    width: 64px;
    height: 64px;
}

.pillar-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--pearl);
}

.pillar-card p {
    color: var(--silver);
    line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────
   AUDIENCE CARDS
   ─────────────────────────────────────────────────────────────── */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.audience-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.5s var(--ease-elegant);
}

.audience-enterprise {
    background: linear-gradient(135deg, rgba(20, 33, 97, 0.8) 0%, rgba(37, 56, 150, 0.6) 50%, rgba(20, 33, 97, 0.8) 100%);
    border-color: rgba(102, 126, 234, 0.3);
}

.audience-founders {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.7) 0%, rgba(124, 58, 237, 0.5) 50%, rgba(88, 28, 135, 0.7) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.audience-enterprise:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(20, 33, 97, 0.9) 0%, rgba(37, 56, 150, 0.7) 50%, rgba(20, 33, 97, 0.9) 100%);
}

.audience-founders:hover {
    border-color: #a855f7;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.85) 0%, rgba(124, 58, 237, 0.6) 50%, rgba(88, 28, 135, 0.85) 100%);
}

.audience-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.audience-enterprise .audience-label {
    background: rgba(102, 126, 234, 0.2);
    color: #a5b4fc;
}

.audience-founders .audience-label {
    background: rgba(168, 85, 247, 0.2);
    color: #e9d5ff;
}

.audience-label svg {
    width: 16px;
    height: 16px;
}

.audience-card h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    color: var(--pearl);
}

.audience-card p {
    font-size: var(--text-base);
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.audience-benefits {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.audience-benefits li {
    padding: var(--space-sm) 0;
    color: var(--silver);
    font-size: var(--text-base);
    position: relative;
    padding-left: var(--space-lg);
}

.audience-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-size: var(--text-xl);
    font-weight: bold;
}

.audience-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.audience-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

/* ───────────────────────────────────────────────────────────────
   INDUSTRIES SECTION
   ─────────────────────────────────────────────────────────────── */

.industries-section {
    background: var(--royal-purple);
}

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

.industry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s var(--ease-elegant);
    backdrop-filter: blur(10px);
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-bounce);
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-card h3 {
    font-size: var(--text-lg);
    color: var(--pearl);
    font-weight: 600;
}

/* ───────────────────────────────────────────────────────────────
   SERVICES SECTION
   ─────────────────────────────────────────────────────────────── */

.services-section {
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--midnight) 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
    transition: all 0.5s var(--ease-elegant);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.service-icon {
    margin-bottom: var(--space-lg);
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    color: var(--pearl);
}

.service-card p {
    color: var(--silver);
    line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────
   PROCESS TIMELINE
   ─────────────────────────────────────────────────────────────── */

.process-section {
    background: var(--royal-purple);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-primary), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

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

.timeline-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg), var(--glow-primary);
    transition: all 0.4s var(--ease-elegant);
    z-index: 2;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15) rotate(10deg);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-smooth);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--pearl);
}

.timeline-content p {
    color: var(--silver);
    line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────
   PROJECTS SECTION
   ─────────────────────────────────────────────────────────────── */

.experience-section {
    background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-navy) 100%);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
    transition: all 0.5s var(--ease-elegant);
    backdrop-filter: blur(10px);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.project-icon {
    margin-bottom: var(--space-lg);
    transition: transform 0.4s var(--ease-bounce);
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(-5deg);
}

.project-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--pearl);
}

.project-card p {
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.project-tags span {
    padding: var(--space-xs) var(--space-md);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    font-size: var(--text-xs);
    color: var(--accent-primary);
    font-weight: 500;
}

/* ───────────────────────────────────────────────────────────────
   WHY WORK SECTION
   ─────────────────────────────────────────────────────────────── */

.why-work-section {
    background: var(--royal-purple);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.5s var(--ease-elegant);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    margin-bottom: var(--space-lg);
}

.benefit-icon svg {
    width: 64px;
    height: 64px;
    transition: transform 0.4s var(--ease-bounce);
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.2) rotate(10deg);
}

.benefit-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--pearl);
}

.benefit-card p {
    color: var(--silver);
    line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────
   UNICORN CTA SECTION
   ─────────────────────────────────────────────────────────────── */

.unicorn-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: var(--space-3xl) 0;
}

.unicorn-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
}

.unicorn-header h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    color: var(--pearl);
}

.unicorn-header p {
    font-size: var(--text-lg);
    color: var(--silver);
    line-height: 1.8;
}

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

.unicorn-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease-elegant);
}

.unicorn-card:first-child {
    background: linear-gradient(135deg, rgba(20, 33, 97, 0.8) 0%, rgba(37, 56, 150, 0.6) 50%, rgba(20, 33, 97, 0.8) 100%);
    border-color: rgba(102, 126, 234, 0.3);
}

.unicorn-card:last-child {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.7) 0%, rgba(124, 58, 237, 0.5) 50%, rgba(88, 28, 135, 0.7) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

.unicorn-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.unicorn-card:first-child:hover {
    background: linear-gradient(135deg, rgba(20, 33, 97, 0.9) 0%, rgba(37, 56, 150, 0.7) 50%, rgba(20, 33, 97, 0.9) 100%);
    border-color: #667eea;
}

.unicorn-card:last-child:hover {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.85) 0%, rgba(124, 58, 237, 0.6) 50%, rgba(88, 28, 135, 0.85) 100%);
    border-color: #a855f7;
}

.unicorn-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.unicorn-card:first-child .unicorn-label {
    background: rgba(102, 126, 234, 0.2);
    color: #a5b4fc;
}

.unicorn-card:last-child .unicorn-label {
    background: rgba(168, 85, 247, 0.2);
    color: #e9d5ff;
}

.unicorn-card h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    color: var(--pearl);
}

.unicorn-card > p {
    font-size: var(--text-base);
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.unicorn-benefits {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.unicorn-benefits li {
    padding: var(--space-sm) 0;
    color: var(--silver);
    font-size: var(--text-base);
    position: relative;
    padding-left: var(--space-lg);
    line-height: 1.7;
}

.unicorn-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: var(--text-lg);
}

.unicorn-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.unicorn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

/* ───────────────────────────────────────────────────────────────
   CONTACT SECTION
   ─────────────────────────────────────────────────────────────── */

.contact-section {
    background: var(--deep-navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s var(--ease-elegant);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.contact-icon {
    margin-bottom: var(--space-lg);
}

.contact-icon svg {
    width: 48px;
    height: 48px;
}

.contact-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--pearl);
}

.contact-card p {
    color: var(--silver);
}

.contact-card a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

.contact-card a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.contact-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-message p {
    font-size: var(--text-lg);
    color: var(--silver);
    line-height: 1.8;
}

/* ───────────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────────── */

.footer {
    background: var(--midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-xl) 0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: var(--silver);
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    opacity: 0.7;
}

/* ───────────────────────────────────────────────────────────────
   ANIMATIONS
   ─────────────────────────────────────────────────────────────── */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ───────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ─────────────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-item {
        flex-direction: row;
    }
    
    .process-timeline::before {
        left: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--space-xl);
        gap: var(--space-md);
        transition: left 0.3s var(--ease-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .pillars-grid,
    .audience-grid,
    .industries-grid,
    .services-grid,
    .projects-grid,
    .benefits-grid,
    .unicorn-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 3rem;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .pillar-card,
    .service-card,
    .project-card,
    .benefit-card {
        padding: var(--space-lg);
    }
}

/* ───────────────────────────────────────────────────────────────
   PRINT STYLES
   ─────────────────────────────────────────────────────────────── */

@media print {
    .navbar,
    .mobile-toggle,
    .scroll-indicator,
    .ambient-overlay {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
