/* Far Point Global - Main Stylesheet */

/* CSS Custom Properties */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.45);
    --accent: #c9a962;
    --accent-light: #dfc07a;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

/* Loader */
.loader {
    position: fixed; inset: 0; background: var(--bg-primary); z-index: 10000;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
    font-family: var(--font-display); font-size: 2rem; font-weight: 400;
    letter-spacing: 0.1em; display: flex; align-items: center; gap: 1rem;
}
.loader-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.loader-icon img {
    width: 100%; height: 100%; display: block;
}
.loader-bar { width: 200px; height: 1px; background: var(--border); position: relative; overflow: hidden; }
.loader-bar::after {
    content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 0;
    background: var(--accent); animation: loadProgress 2s var(--ease) forwards;
}
@keyframes loadProgress { to { width: 100%; } }

/* Grain */
.grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.cursor {
    width: 20px; height: 20px; border: 1px solid var(--accent); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transition: transform 0.15s var(--ease), width 0.2s ease, height 0.2s ease;
    transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.cursor-dot {
    width: 4px; height: 4px; background: var(--accent); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
}
.cursor.hover { width: 50px; height: 50px; }

/* Navigation */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 2rem 5rem; display: flex; justify-content: space-between; align-items: center;
    transition: all 0.5s var(--ease);
}
.nav.scrolled {
    background: rgba(5,5,5,0.92); backdrop-filter: blur(30px);
    padding: 1.25rem 5rem; border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
    letter-spacing: 0.08em; color: var(--text-primary); text-decoration: none;
    display: flex; align-items: center; gap: 1rem; transition: opacity 0.3s ease;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); transition: all 0.3s ease;
}
.nav-logo-icon img {
    width: 100%; height: 100%; display: block;
}
.nav-links { display: flex; gap: 3.5rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-secondary); text-decoration: none; font-size: 0.8rem;
    font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.3s ease; position: relative; padding: 0.5rem 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--accent); transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: transparent; border: 1px solid var(--accent); color: var(--accent);
    padding: 0.875rem 2rem; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
    transition: all 0.4s var(--ease); font-family: var(--font-body);
    position: relative; overflow: hidden;
}
.nav-cta::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--accent); transition: left 0.4s var(--ease); z-index: -1;
}
.nav-cta:hover { color: var(--bg-primary); }
.nav-cta:hover::before { left: 0; }

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.nav-dropdown-toggle .dropdown-arrow {
    transition: transform 0.3s var(--ease);
    vertical-align: middle;
    margin-top: -1px;
}
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    list-style: none;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 1001;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li {
    padding: 0;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.875rem 1.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}
.nav-dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s var(--ease);
}
.nav-dropdown-menu a:hover {
    color: var(--accent);
    background: rgba(201, 169, 98, 0.05);
    padding-left: 2rem;
}
.nav-dropdown-menu a:hover::before {
    transform: scaleY(1);
}
.nav-dropdown-menu a::after {
    display: none;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}
.nav.mobile-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav.mobile-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.nav.mobile-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}
.nav.mobile-open .nav-overlay {
    display: block;
}
.nav-mobile-contact {
    display: none;
}

/* Hero */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.hero-video-container { position: absolute; inset: 0; overflow: hidden; }
.hero-video {
    position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%); object-fit: cover; opacity: 0.2;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(201,169,98,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(201,169,98,0.05) 0%, transparent 45%),
                linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.8) 100%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1100px; padding: 0 2rem; }
.hero-tagline {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 300; line-height: 1.05; margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(40px); animation: fadeUp 1.2s var(--ease) 0.7s forwards;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-description {
    font-size: 1.2rem; color: var(--text-secondary); max-width: 650px;
    margin: 0 auto 3.5rem; line-height: 1.9; font-weight: 300;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s var(--ease) 0.9s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-ctas {
    display: flex; gap: 1.5rem; justify-content: center;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.hero-cta-primary {
    display: inline-flex; align-items: center; gap: 1rem;
    background: var(--accent); color: var(--bg-primary);
    padding: 1.25rem 3rem; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.hero-cta-primary:hover {
    transform: translateY(-3px); box-shadow: 0 25px 50px rgba(201,169,98,0.25);
}
.hero-cta-primary svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.hero-cta-primary:hover svg { transform: translateX(5px); }
.hero-cta-secondary {
    display: inline-flex; align-items: center; gap: 1rem;
    background: transparent; border: 1px solid var(--border-light);
    color: var(--text-primary); padding: 1.25rem 3rem; font-size: 0.8rem;
    font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: all 0.4s var(--ease);
}
.hero-cta-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.hero-scroll {
    position: absolute; bottom: 4rem;
    left: 50vw;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    opacity: 0; animation: fadeUp 1s var(--ease) 1.5s forwards;
}
.hero-scroll-line {
    width: 1px; height: 80px; background: linear-gradient(to bottom, var(--accent), transparent);
    position: relative; overflow: hidden;
}
.hero-scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }

/* Marquee */
.marquee-section {
    padding: 4rem 0; background: var(--bg-secondary);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden;
}
.marquee-label {
    text-align: center; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 2.5rem;
}
.marquee-wrapper {
    display: flex; overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track { display: flex; gap: 5rem; animation: marquee 30s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
    flex-shrink: 0; font-family: var(--font-display); font-size: 1.5rem;
    font-weight: 400; color: var(--text-muted); white-space: nowrap;
    transition: color 0.3s ease; opacity: 0.6;
}
.marquee-item:hover { color: var(--text-primary); opacity: 1; }

/* Stats */
.stats { padding: 10rem 5rem; background: var(--bg-primary); }
.stats-container { max-width: 1500px; margin: 0 auto; }
.stats-header { text-align: center; margin-bottom: 6rem; }
.section-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.5rem; display: inline-block; position: relative;
}
.section-label::before, .section-label::after {
    content: ''; position: absolute; top: 50%; width: 40px; height: 1px;
    background: var(--accent); opacity: 0.4;
}
.section-label::before { right: calc(100% + 1.5rem); }
.section-label::after { left: calc(100% + 1.5rem); }
.section-title {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300; line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--accent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.stat-card {
    background: var(--bg-secondary); text-align: center; padding: 4rem 2rem;
    position: relative; overflow: hidden; transition: all 0.5s var(--ease);
}
.stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.stat-card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,169,98,0.08) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.5s ease;
}
.stat-card:hover { background: var(--bg-tertiary); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover::after { opacity: 1; }
.stat-number {
    font-family: var(--font-display); font-size: clamp(4rem, 7vw, 5.5rem);
    font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 1rem;
    position: relative; z-index: 1;
}
.stat-number .suffix { font-size: 0.5em; vertical-align: super; margin-left: 0.1em; }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); letter-spacing: 0.08em; position: relative; z-index: 1; }
.stat-sublabel { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.75rem; position: relative; z-index: 1; }

/* About */
.about { padding: 12rem 5rem; position: relative; overflow: hidden; }
.about-bg {
    position: absolute; right: 0; top: 0; width: 50%; height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(201,169,98,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.about-container {
    max-width: 1500px; margin: 0 auto; display: grid;
    grid-template-columns: 1fr 1fr; gap: 10rem; align-items: center;
}
.about-content { padding-right: 3rem; }
.about-title {
    font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 300; line-height: 1.15; margin-bottom: 2.5rem;
}
.about-title em { font-style: italic; color: var(--accent); }
.about-text { color: var(--text-secondary); font-size: 1.1rem; line-height: 2; margin-bottom: 1.5rem; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature-icon {
    width: 40px; height: 40px; border: 1px solid var(--accent);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent);
}
.about-feature-text h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.25rem; }
.about-feature-text p { font-size: 0.85rem; color: var(--text-muted); }
.about-link {
    display: inline-flex; align-items: center; gap: 1rem; color: var(--accent);
    text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; margin-top: 2.5rem; padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent); transition: all 0.3s ease;
}
.about-link:hover { gap: 1.5rem; padding-left: 0.5rem; }
.about-visual { position: relative; height: 700px; }
.about-image-main {
    position: absolute; top: 0; right: 0; width: 85%; height: 80%;
    background: var(--bg-tertiary); border: 1px solid var(--border); overflow: hidden;
}
.about-image-main::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,169,98,0.1) 0%, transparent 40%),
                linear-gradient(315deg, rgba(5,5,5,0.8) 0%, transparent 60%);
}
.about-image-content {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.globe-visual {
    width: 280px; height: 280px; border: 1px solid var(--accent); border-radius: 50%;
    position: relative; animation: rotateGlobe 40s linear infinite;
}
@keyframes rotateGlobe { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.globe-visual::before, .globe-visual::after {
    content: ''; position: absolute; border: 1px solid rgba(201,169,98,0.2); border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.globe-visual::before { width: 140%; height: 140%; animation: rotateGlobe 60s linear infinite reverse; }
.globe-visual::after { width: 180%; height: 180%; animation: rotateGlobe 80s linear infinite; }
.globe-inner {
    position: absolute; inset: 40px; border: 1px solid rgba(201,169,98,0.4); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.about-image-accent {
    position: absolute; bottom: 0; left: 0; width: 50%; height: 50%;
    border: 1px solid var(--accent); opacity: 0.2;
}
.about-float-stat {
    position: absolute; bottom: 8%; left: -5%; background: var(--bg-primary);
    border: 1px solid var(--border); padding: 2rem 2.5rem; z-index: 10;
}
.about-float-stat .stat-number { font-size: 3rem; margin-bottom: 0.5rem; }
.about-float-stat .stat-label { font-size: 0.75rem; }

/* Quote */
.quote-section {
    padding: 10rem 5rem; background: var(--bg-secondary); position: relative; overflow: hidden;
}
.quote-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.quote-container { max-width: 1000px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark {
    font-family: var(--font-display); font-size: 15rem; color: var(--accent); opacity: 0.1;
    position: absolute; top: -5rem; left: 50%; transform: translateX(-50%); line-height: 1;
}
.quote-text {
    font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300; line-height: 1.6; font-style: italic; color: var(--text-primary);
    position: relative; z-index: 1; margin-bottom: 3rem;
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.quote-author-image {
    width: 60px; height: 60px; border-radius: 50%; background: var(--bg-tertiary);
    border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); color: var(--accent); font-size: 1.2rem;
}
.quote-author-info h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }
.quote-author-info p { font-size: 0.8rem; color: var(--text-muted); }

/* Services */
.services { padding: 12rem 5rem; position: relative; }
.services-container { max-width: 1500px; margin: 0 auto; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-bottom: 6rem; align-items: end; }
.services-description { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.9; max-width: 500px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.service-card {
    background: var(--bg-secondary); padding: 3.5rem; position: relative;
    overflow: hidden; transition: all 0.5s var(--ease); cursor: pointer;
}
.service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.service-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(201,169,98,0.05) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.5s ease;
}
.service-card:hover { background: var(--bg-tertiary); transform: translateY(-5px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-number {
    font-family: var(--font-display); font-size: 3rem; color: var(--accent); opacity: 0.3;
    position: absolute; top: 2rem; right: 2rem; transition: opacity 0.3s ease;
}
.service-card:hover .service-number { opacity: 0.6; }
.service-icon {
    width: 60px; height: 60px; border: 1px solid var(--accent);
    display: flex; align-items: center; justify-content: center; margin-bottom: 2rem;
    color: var(--accent); position: relative; z-index: 1; transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--accent); color: var(--bg-primary); }
.service-title {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
    margin-bottom: 1rem; position: relative; z-index: 1;
}
.service-text {
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8;
    position: relative; z-index: 1;
}

/* Timeline */
.timeline { padding: 12rem 5rem; background: var(--bg-secondary); position: relative; }
.timeline::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.timeline-container { max-width: 1500px; margin: 0 auto; }
.timeline-header { text-align: center; margin-bottom: 8rem; }
.timeline-track { position: relative; padding: 4rem 0; }
.timeline-line {
    position: absolute; top: 50%; left: 0; right: 0; height: 1px;
    background: var(--border); transform: translateY(-50%);
}
.timeline-items { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2rem; position: relative; }
.timeline-item { text-align: center; position: relative; }
.timeline-dot {
    width: 16px; height: 16px; background: var(--bg-secondary); border: 2px solid var(--accent);
    border-radius: 50%; margin: 0 auto 2rem; position: relative; z-index: 1; transition: all 0.3s ease;
}
.timeline-item:hover .timeline-dot { background: var(--accent); transform: scale(1.3); }
.timeline-year {
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 300;
    color: var(--accent); margin-bottom: 1rem;
}
.timeline-title { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
.timeline-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Insights */
.insights { padding: 12rem 5rem; position: relative; }
.insights-container { max-width: 1500px; margin: 0 auto; }
.insights-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 5rem; }
.insights-link {
    display: inline-flex; align-items: center; gap: 1rem; color: var(--accent);
    text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.5rem 0; border-bottom: 1px solid var(--accent);
    transition: all 0.3s ease;
}
.insights-link:hover { gap: 1.5rem; }
.insights-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2px; background: var(--border); }
.insight-card {
    background: var(--bg-secondary); overflow: hidden; transition: all 0.5s var(--ease);
    cursor: pointer; position: relative;
}
.insight-card:first-child { grid-row: span 2; }
.insight-card:hover { background: var(--bg-tertiary); }
.insight-image {
    height: 250px; background: var(--bg-tertiary); position: relative; overflow: hidden;
}
.insight-card:first-child .insight-image { height: 100%; min-height: 400px; }
.insight-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.9) 100%); z-index: 1;
}
.insight-image-bg {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}
.insight-image-bg svg {
    width: 80px; height: 80px; color: var(--accent); opacity: 0.2; transition: all 0.5s ease;
}
.insight-card:hover .insight-image-bg svg { opacity: 0.4; transform: scale(1.1); }
.insight-content { padding: 2.5rem; position: relative; }
.insight-card:first-child .insight-content {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
}
.insight-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.insight-category {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent);
}
.insight-date { font-size: 0.75rem; color: var(--text-muted); }
.insight-title {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
    line-height: 1.4; margin-bottom: 1rem; transition: color 0.3s ease;
}
.insight-card:first-child .insight-title { font-size: 1.8rem; }
.insight-card:hover .insight-title { color: var(--accent); }
.insight-excerpt {
    color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Leadership */
.leadership { padding: 12rem 5rem; background: var(--bg-secondary); position: relative; }
.leadership::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.leadership-container { max-width: 1500px; margin: 0 auto; }
.leadership-header { text-align: center; margin-bottom: 6rem; }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.leadership-grid-top { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto 3rem; }
.leadership-grid-bottom { grid-template-columns: repeat(3, 1fr); }
.leader-card { text-align: center; cursor: pointer; }
.leader-image {
    width: 100%; aspect-ratio: 1; background: var(--bg-tertiary); border: 1px solid var(--border);
    margin-bottom: 2rem; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center; transition: all 0.5s var(--ease);
}
.leader-card:hover .leader-image { border-color: var(--accent); transform: translateY(-8px); }
.leader-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,169,98,0.1) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.5s ease;
}
.leader-card:hover .leader-image::before { opacity: 1; }
.leader-initials {
    font-family: var(--font-display); font-size: 3rem; font-weight: 300;
    color: var(--accent); opacity: 0.4; transition: opacity 0.3s ease;
}
.leader-card:hover .leader-initials { opacity: 0.7; }
.leader-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.5rem; }
.leader-role { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.08em; }

/* Contact */
.contact { padding: 12rem 5rem; position: relative; }
.contact-container {
    max-width: 1500px; margin: 0 auto; display: grid;
    grid-template-columns: 1fr 1.2fr; gap: 10rem;
}
.contact-content { max-width: 500px; }
.contact-title {
    font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 300; line-height: 1.15; margin-bottom: 2rem;
}
.contact-title em { font-style: italic; color: var(--accent); }
.contact-text { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.9; margin-bottom: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.contact-icon {
    width: 55px; height: 55px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--accent); transition: all 0.3s ease;
}
.contact-item:hover .contact-icon { border-color: var(--accent); background: rgba(201,169,98,0.1); }
.contact-details h4 {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem;
}
.contact-details p { color: var(--text-primary); font-size: 1.05rem; line-height: 1.6; }
.contact-details a { color: var(--text-primary); text-decoration: none; transition: color 0.3s ease; }
.contact-details a:hover { color: var(--accent); }
.contact-form-wrapper {
    background: var(--bg-secondary); border: 1px solid var(--border); padding: 4rem; position: relative;
}
.contact-form-wrapper::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}
.form-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.75rem; }
.form-group label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
}
.form-group input, .form-group textarea {
    background: var(--bg-primary); border: 1px solid var(--border);
    padding: 1.25rem 1.5rem; color: var(--text-primary);
    font-family: var(--font-body); font-size: 1rem; transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-submit {
    background: var(--accent); color: var(--bg-primary); border: none;
    padding: 1.5rem 3rem; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
    transition: all 0.4s var(--ease); font-family: var(--font-body); margin-top: 1rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(201,169,98,0.3); }

/* Footer */
.footer { padding: 5rem; border-top: 1px solid var(--border); background: var(--bg-secondary); }
.footer-main {
    max-width: 1500px; margin: 0 auto; display: grid;
    grid-template-columns: 1fr 2fr 1fr; gap: 5rem;
    padding-bottom: 4rem; border-bottom: 1px solid var(--border);
}
.footer-brand { max-width: 300px; }
.footer-logo {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
    letter-spacing: 0.08em; color: var(--text-primary);
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.footer-logo-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.footer-logo-icon img {
    width: 100%; height: 100%; display: block;
}
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.footer-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.footer-links-col h4 {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-primary); margin-bottom: 1.5rem;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links-col a {
    color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease;
}
.footer-links-col a:hover { color: var(--accent); }
.footer-social { display: flex; flex-direction: column; align-items: flex-end; }
.footer-social h4 {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-primary); margin-bottom: 1.5rem;
}
.footer-social-links { display: flex; gap: 1rem; }
.footer-social-links a {
    width: 45px; height: 45px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: all 0.3s ease;
}
.footer-social-links a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.footer-bottom {
    max-width: 1500px; margin: 0 auto; padding-top: 3rem;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--text-primary); }

/* 3D Globe */
.hero-globe-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: grab;
    opacity: 0;
    animation: fadeIn 2s var(--ease) 0.3s forwards;
}
@keyframes fadeIn { to { opacity: 0.7; } }
.hero-globe-bg:active { cursor: grabbing; }
.hero-globe-bg canvas { display: block; margin: 0 auto; }
.hero-globe-bg .globe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 50%;
}
.hero-globe-bg .globe-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-network-container {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    cursor: grab;
}
.about-network-container:active { cursor: grabbing; }
.about-network-container canvas { display: block; margin: 0 auto; }
.about-network-container .network-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 1400px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid { grid-template-columns: repeat(3, 1fr); }
    .leadership-grid-top { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid-bottom { grid-template-columns: repeat(3, 1fr); }
    .insights-grid { grid-template-columns: 1fr 1fr; }
    .insight-card:first-child { grid-row: span 1; }
}
@media (max-width: 1200px) {
    .nav { padding: 1.5rem 3rem; }
    .nav.scrolled {
        padding: 1rem 3rem;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(5,5,5,0.98);
    }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero { padding-top: 5rem; }
    .nav.mobile-open {
        background: rgba(5,5,5,0.98);
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: 100%;
        max-width: 400px;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 6rem 2.5rem 3rem;
        gap: 0;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s var(--ease), visibility 0.4s;
        z-index: 999;
        border-left: 1px solid var(--border);
        overflow-y: auto;
    }
    .nav.mobile-open .nav-links {
        transform: translateX(0);
        visibility: visible;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    .nav-links > li > a,
    .nav-links > li > .nav-dropdown-toggle {
        display: block;
        padding: 1.25rem 0;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }
    .nav-links a::after { display: none; }
    .nav-dropdown-toggle .dropdown-arrow {
        float: right;
        margin-top: 2px;
    }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        border: none;
        padding: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding-bottom: 0.5rem;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-menu li { border-bottom: none; }
    .nav-dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    .nav-dropdown-menu a::before { display: none; }
    .nav-dropdown-menu a:hover {
        padding-left: 1.5rem;
        background: transparent;
    }
    .nav-mobile-contact {
        display: block;
        border-bottom: none !important;
        margin-top: 1.5rem;
    }
    .nav-mobile-contact a {
        display: block;
        text-align: center;
        padding: 1rem 2rem;
        border: 1px solid var(--accent);
        color: var(--accent) !important;
        font-size: 0.75rem !important;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        transition: all 0.3s var(--ease);
    }
    .nav-mobile-contact a:hover {
        background: var(--accent);
        color: var(--bg-primary) !important;
    }
    .about-container, .contact-container { grid-template-columns: 1fr; gap: 5rem; }
    .about-visual { height: 500px; }
    .services-header { grid-template-columns: 1fr; gap: 2rem; }
    .footer-main { grid-template-columns: 1fr; gap: 3rem; }
    .footer-social { align-items: flex-start; }
}
@media (max-width: 1024px) {
    .timeline-items { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nav { padding: 1.25rem 1.5rem; }
    .nav.scrolled { padding: 1rem 1.5rem; }
    .nav-logo { font-size: 1.15rem; gap: 0.75rem; }
    .nav-logo-icon { width: 32px; height: 32px; }
    .nav-links {
        max-width: 100%;
        padding: 6rem 2rem 3rem;
    }
    .nav-links > li > a,
    .nav-links > li > .nav-dropdown-toggle {
        padding: 1.35rem 0;
        font-size: 1rem;
        letter-spacing: 0.12em;
    }
    .nav-dropdown-menu a {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    .nav-mobile-contact a {
        padding: 1.25rem 2rem;
        font-size: 0.85rem !important;
    }
    .hero, .stats, .about, .quote-section, .services, .timeline, .insights, .leadership, .contact {
        padding-left: 1.5rem; padding-right: 1.5rem;
    }
    .stats, .about, .services, .timeline, .insights, .leadership, .contact {
        padding-top: 6rem; padding-bottom: 6rem;
    }
    .stats-grid, .services-grid, .insights-grid { grid-template-columns: 1fr; }
    .leadership-grid { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid-top { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid-bottom { grid-template-columns: repeat(3, 1fr); }
    .timeline-items { grid-template-columns: 1fr; gap: 3rem; }
    .timeline-line { display: none; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .cursor, .cursor-dot { display: none; }
}
