/* ================================================================
   TIGERDYNE NEXUS — Main Stylesheet
   ================================================================ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:       #08131f;
    --navy-2:     #0d1b2a;
    --navy-3:     #142234;
    --navy-4:     #1b2e45;
    --navy-5:     #243b55;
    --gold:       #c49a3c;
    --gold-lt:    #dbb55a;
    --gold-dim:   rgba(196,154,60,0.18);
    --offwhite:   #f3f5f8;
    --white:      #ffffff;
    --text:       #1e2d3d;
    --text-mid:   #4a607a;
    --text-lt:    #7a90a8;
    --border:     rgba(196,154,60,0.18);
    --border-lt:  rgba(196,154,60,0.08);
    --shadow:     0 8px 48px rgba(8,19,31,0.14);
    --shadow-sm:  0 4px 20px rgba(8,19,31,0.08);
    --ease:       cubic-bezier(0.4,0,0.2,1);
    --dur:        0.3s;
    --r:          2px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 36px; }
address { font-style: normal; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

.label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.label.center { text-align: center; }
.center { text-align: center; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.scrolled {
    background: rgba(8,19,31,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.25);
}
.nav-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 36px;
    height: 76px; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-photo-wrap {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--navy-4);
    display: flex; align-items: center; justify-content: center;
}
.logo-photo-wrap.small { width: 34px; height: 34px; }
.logo-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.logo-mark {
    width: 100%; height: 100%;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.logo-texts { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--white);
    line-height: 1;
}
.logo-tagline {
    font-size: 0.62rem; font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    line-height: 1;
}

/* Nav links */
.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links li { position: relative; }
.nav-links > li > a {
    display: flex; align-items: center; gap: 3px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.04em;
    padding: 10px 13px;
    border-radius: var(--r);
    transition: color var(--dur);
    white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.caret { font-size: 0.65rem; opacity: 0.6; transition: transform var(--dur); }
.has-drop:hover .caret { transform: rotate(90deg); }

/* Dropdown */
.dropdown {
    position: absolute; top: calc(100% + 6px); left: 0;
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    min-width: 200px; list-style: none;
    padding: 8px 0;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--dur), transform var(--dur), visibility var(--dur);
    box-shadow: var(--shadow);
    z-index: 300;
}
.has-drop:hover .dropdown {
    opacity: 1; visibility: visible; pointer-events: all; transform: none;
}
.dropdown li a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.78rem; font-weight: 400;
    padding: 9px 18px;
    transition: color var(--dur), background var(--dur);
    white-space: nowrap;
}
.dropdown li a:hover { color: var(--gold); background: rgba(196,154,60,0.07); }

/* Lang / Hamburger */
.lang-btn {
    background: transparent; border: 1px solid rgba(196,154,60,0.4);
    color: var(--gold); padding: 6px 14px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    cursor: pointer; border-radius: var(--r); margin-left: 10px;
    transition: background var(--dur);
}
.lang-btn:hover { background: var(--gold-dim); }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; margin-left: 4px;
}
.hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--white); transition: var(--dur);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(196,154,60,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196,154,60,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-glow.top-right { top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(196,154,60,0.1) 0%, transparent 65%); }
.hero-glow.bottom-left { bottom: -200px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(27,46,69,0.6) 0%, transparent 65%); }

.hero-content {
    position: relative; z-index: 1;
    padding-top: 76px;
    max-width: 860px;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero-badge {
    display: inline-block;
    border: 1px solid rgba(196,154,60,0.5);
    color: var(--gold);
    font-size: 0.68rem; letter-spacing: 0.2em; font-weight: 600;
    padding: 7px 18px; text-transform: uppercase;
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    color: var(--white);
    margin-bottom: 28px;
    display: flex; flex-direction: column; gap: 4px;
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.58);
    max-width: 580px; line-height: 1.85; margin-bottom: 52px;
}

/* Dual path buttons */
.hero-paths { display: flex; gap: 16px; flex-wrap: wrap; }
.path-btn {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,154,60,0.25);
    padding: 20px 24px;
    text-decoration: none;
    transition: background var(--dur), border-color var(--dur), transform var(--dur);
    min-width: 280px; flex: 1;
    color: var(--white);
}
.path-btn:hover {
    background: rgba(196,154,60,0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.path-icon { width: 36px; height: 36px; color: var(--gold); flex-shrink: 0; }
.path-icon svg { width: 100%; height: 100%; }
.path-btn div strong {
    display: block; font-size: 0.95rem; font-weight: 600;
    margin-bottom: 3px; color: var(--white);
}
.path-btn div span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.path-arrow { margin-left: auto; color: var(--gold); font-size: 1.1rem; opacity: 0.7; flex-shrink: 0; }

.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
}
.hero-scroll span {
    display: block; width: 1px; height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:.2; } 50% { opacity:1; } }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--navy-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 0;
}
.stat {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 44px 24px; gap: 10px;
    border-right: 1px solid var(--border);
    text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-num em { font-style: normal; font-size: 1.6rem; }
.stat-label {
    font-size: 0.72rem; color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section { padding: 110px 0; }
.section-offwhite { background: var(--offwhite); }
.section-dark { background: var(--navy-2); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .label { color: var(--gold); }

.section-header-c { text-align: center; margin-bottom: 64px; }
.section-header-c h2 { margin-bottom: 16px; }
.section-header-c p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; font-size: 0.95rem; line-height: 1.8; }

.sector-header { text-align: center; margin-bottom: 60px; }
.sector-header h2 { margin-bottom: 16px; }
.sector-header p { font-size: 0.95rem; line-height: 1.8; max-width: 560px; margin: 0 auto; }
.section-dark .sector-header p { color: rgba(255,255,255,0.55); }

/* ===== ABOUT ===== */
.about-layout {
    display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.about-tags span {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 6px 14px;
    border: 1px solid rgba(196,154,60,0.35); color: var(--gold);
}

.about-visual { display: flex; align-items: center; justify-content: center; }
.about-emblem {
    position: relative; width: 300px; height: 300px;
    display: flex; align-items: center; justify-content: center;
}
.ring {
    position: absolute; border-radius: 50%; border: 1px solid;
    animation: spin linear infinite;
}
.r1 { width:100%; height:100%; border-color: rgba(196,154,60,0.12); animation-duration: 35s; }
.r2 { width: 72%; height: 72%; border-color: rgba(196,154,60,0.22); animation-duration: 22s; animation-direction:reverse; }
.r3 { width: 46%; height: 46%; border-color: rgba(196,154,60,0.45); animation-duration: 14s; }
@keyframes spin { to { transform: rotate(360deg); } }
.emblem-core {
    display: flex; flex-direction: column; align-items: center; gap: 2px; z-index:1;
}
.emblem-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; font-weight: 700; color: var(--text); line-height: 1;
}
.emblem-sub {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold); opacity: 0.7;
}

/* ===== LEADERSHIP ===== */
.leader-layout {
    display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
    margin-top: 56px;
}
.leader-photo-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.leader-photo-frame {
    width: 280px; height: 340px;
    position: relative;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--offwhite);
}
.leader-photo-frame::before {
    content: ''; position: absolute; inset: 10px;
    border: 1px solid rgba(196,154,60,0.12); z-index: 2; pointer-events: none;
}
.leader-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.leader-photo-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--navy-4), var(--navy-5));
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.fallback-initial {
    font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: var(--gold);
}
.fallback-stars { color: var(--gold); letter-spacing: 6px; font-size: 0.85rem; }
.leader-photo-caption {
    text-align: center; display: flex; flex-direction: column; gap: 6px;
}
.stars-row { color: var(--gold); letter-spacing: 6px; font-size: 0.78rem; }
.leader-photo-caption > div:last-child {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-lt);
}

.leader-name-wrap { margin-bottom: 28px; }
.leader-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem,4vw,3.2rem); font-weight: 600; color: var(--text); line-height: 1;
    margin-bottom: 6px;
}
.leader-name-en { font-size: 0.85rem; color: var(--text-lt); letter-spacing: 0.1em; }

.leader-positions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.position { display: flex; align-items: flex-start; gap: 14px; }
.pos-badge {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
    padding: 4px 10px; flex-shrink: 0; border-radius: 2px;
    margin-top: 2px;
}
.pos-badge.now { background: var(--gold); color: var(--navy); }
.pos-badge.past { background: rgba(0,0,0,0.07); color: var(--text-lt); }
.position span:last-child { font-size: 0.98rem; font-weight: 500; color: var(--text); line-height: 1.4; }
.position.current span:last-child { font-weight: 600; }

.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 24px 0; opacity: 0.7; }

.leader-bio { font-size: 0.93rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; }

.credentials {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 8px;
}
.cred {
    font-size: 0.82rem; color: var(--text-mid); line-height: 1.5;
    padding-left: 4px;
}

/* ===== SERVICES GRID ===== */
.services-grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
}
.svc-card {
    background: var(--navy-3); padding: 36px 32px;
    transition: background var(--dur);
}
.svc-card:hover { background: var(--navy-4); }
.svc-card.dark-border { background: var(--white); }
.svc-card.dark-border:hover { background: var(--offwhite); }
.svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 700;
    color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 16px;
}
.svc-num.gold { color: rgba(196,154,60,0.15); }
.svc-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.05rem; }
.svc-card.dark-border h3 { color: var(--text); }
.svc-card p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.svc-card.dark-border p { color: var(--text-mid); }

/* ===== DOMAINS ===== */
.domains-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
    background: var(--border); border: 1px solid var(--border);
}
.domain-card {
    background: var(--navy-3); padding: 36px 24px;
    text-align: center; transition: background var(--dur);
}
.domain-card:hover { background: var(--navy-4); }
.domain-icon { width: 52px; height: 52px; color: var(--gold); margin: 0 auto 20px; }
.domain-icon svg { width: 100%; height: 100%; }
.domain-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 12px; }
.domain-card p { font-size: 0.78rem; color: rgba(255,255,255,0.42); line-height: 1.75; }

/* ===== INSIGHTS ===== */
.insights-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.insights-header h2 { margin-top: 4px; }
.insights-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 24px;
}
.insight-card {
    background: var(--white); border: 1px solid #e0e6ee;
    padding: 36px 32px; display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow var(--dur), transform var(--dur);
}
.insight-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.insight-card.featured { background: var(--navy-2); border-color: var(--border); }
.insight-meta { display: flex; align-items: center; gap: 10px; }
.insight-tag {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 3px 10px; background: var(--gold-dim); color: var(--gold); border-radius: 2px;
}
.insight-date { font-size: 0.72rem; color: var(--text-lt); }
.insight-card.featured .insight-date { color: rgba(255,255,255,0.35); }
.insight-card h3 { font-size: 1.1rem; color: var(--text); line-height: 1.4; }
.insight-card.featured h3 { color: var(--white); }
.insight-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.8; flex: 1; }
.insight-card.featured p { color: rgba(255,255,255,0.5); }
.read-more { font-size: 0.8rem; font-weight: 600; color: var(--gold); text-decoration: none; letter-spacing: 0.04em; }
.read-more:hover { text-decoration: underline; }

/* ===== VISION ===== */
.vision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.vision-card {
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    border-top: 2px solid var(--gold); padding: 40px 34px;
    transition: background var(--dur);
}
.vision-card:hover { background: rgba(255,255,255,0.07); }
.vision-num {
    font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700;
    color: rgba(196,154,60,0.15); line-height: 1; margin-bottom: 16px;
}
.vision-card h3 { color: var(--white); margin-bottom: 14px; font-size: 1.1rem; }
.vision-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.85; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.value-list li {
    font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.6;
    padding-left: 14px; position: relative;
}
.value-list li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 5px; height: 1px; background: var(--gold);
}

/* ===== CONTACT ===== */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 32px; }

.contact-leader {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px; background: var(--offwhite);
    border-left: 3px solid var(--gold); margin-bottom: 28px;
}
.cl-photo {
    width: 52px; height: 60px; flex-shrink: 0; overflow: hidden;
    background: var(--navy-4);
}
.cl-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.cl-init {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold);
}
.cl-info { display: flex; flex-direction: column; gap: 4px; }
.cl-info strong { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.cl-info span { font-size: 0.78rem; color: var(--text-lt); }

.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.cd-row { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--text-mid); }
.cd-icon { width: 22px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.cd-link { color: var(--text-mid); text-decoration: none; transition: color var(--dur); }
.cd-link:hover { color: var(--gold); }
.conf-note { font-size: 0.75rem; color: var(--text-lt); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-lt);
}
.form-group input, .form-group select, .form-group textarea {
    border: 1px solid #d0d8e4; padding: 12px 15px;
    font-size: 0.88rem; font-family: 'Inter', sans-serif;
    color: var(--text); background: var(--white);
    outline: none; border-radius: 0;
    transition: border-color var(--dur);
    -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.72rem; color: var(--text-lt); text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
    padding: 14px 32px; cursor: pointer; border: none; transition: all var(--dur);
    border-radius: 0;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
    background: transparent; color: var(--text); border: 1.5px solid #c8d0db;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn.full { width: 100%; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: #060f19; border-top: 1px solid rgba(196,154,60,0.12); }
.footer-top {
    padding: 72px 0 56px;
    display: grid; grid-template-columns: 300px 1fr; gap: 80px;
}
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.32); line-height: 1.9; margin-top: 18px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-col h4 {
    font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span {
    font-size: 0.82rem; color: rgba(255,255,255,0.35);
    text-decoration: none; transition: color var(--dur);
}
.footer-col li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 22px 0; }
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
}
.footer-bottom-inner p { font-size: 0.72rem; color: rgba(255,255,255,0.22); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .domains-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 960px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; }
    .about-layout { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .leader-layout { grid-template-columns: 1fr; gap: 48px; }
    .leader-photo-col { flex-direction: row; align-items: flex-start; gap: 28px; }
    .leader-photo-frame { width: 160px; height: 195px; flex-shrink: 0; }
    .services-grid-3 { grid-template-columns: repeat(2,1fr); }
    .domains-grid { grid-template-columns: repeat(2,1fr); }
    .insights-grid { grid-template-columns: 1fr 1fr; }
    .insight-card.featured { grid-column: 1/-1; }
    .vision-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-layout { grid-template-columns: 1fr; gap: 52px; }
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 700px) {
    .nav-links { display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--navy-2); flex-direction: column; padding: 24px 24px; gap: 0; overflow-y: auto; }
    .nav-links.open { display: flex; }
    .nav-links > li > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1rem; }
    .dropdown { position: static; opacity: 1; visibility: visible; pointer-events: all; transform: none; background: rgba(255,255,255,0.03); border: none; border-top: none; padding: 0 0 0 16px; box-shadow: none; }
    .caret { display: none; }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat { padding: 32px 16px; }
    .services-grid-3 { grid-template-columns: 1fr; }
    .domains-grid { grid-template-columns: repeat(2,1fr); }
    .insights-grid { grid-template-columns: 1fr; }
    .hero-paths { flex-direction: column; }
    .path-btn { min-width: auto; }
    .section { padding: 72px 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .credentials { grid-template-columns: 1fr; }
    .leader-photo-col { flex-direction: column; align-items: center; }
}
