@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0d1b33;
    --primary-mid: #1a2a4a;
    --secondary: #1a6b2e;
    --accent: #c8a84b;
    --accent-light: #e8c96a;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #5a6070;
    --cta-color: #1565c0;
    --subtle: #eef2f8;
    --border: rgba(200,168,75,0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

/* ── CONTAINER ─────────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAVBAR ─────────────────────────────────────────────────────────────────── */
.navbar {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid rgba(200,168,75,0.15);
}
.navbar.scrolled {
    background: rgba(13,27,51,0.97);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 72px;
    max-width: 1300px;
    margin: 0 auto;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, #a07830 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.3px;
}
.brand-sub {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.navbar-nav {
    list-style: none;
    display: flex;
    gap: 6px;
    align-items: center;
}
.navbar-nav a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 5px;
    transition: color 0.25s, background 0.25s;
    letter-spacing: 0.3px;
}
.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--accent);
    background: rgba(200,168,75,0.1);
}
.navbar-cta { display: flex; gap: 10px; }
.btn {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(200,168,75,0.4);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}
.btn-dark {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-dark:hover {
    background: var(--primary-mid);
    transform: translateY(-1px);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu-overlay.open { display: flex; opacity: 1; }
.mobile-menu {
    background: var(--primary);
    width: 300px;
    height: 100%;
    padding: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s;
}
.mobile-menu-overlay.open .mobile-menu { transform: translateX(0); }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}
.mobile-nav { list-style: none; padding: 20px 0; }
.mobile-nav li a {
    display: block;
    padding: 14px 24px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, background 0.2s;
}
.mobile-nav li a:hover { color: var(--accent); background: rgba(200,168,75,0.08); }
.mobile-menu-cta { padding: 20px 24px; }
.mobile-menu-cta .btn { width: 100%; text-align: center; }

/* ── SECTIONS ────────────────────────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 18px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto 50px;
    line-height: 1.75;
}
.text-center { text-align: center; }
.text-white { color: white !important; }
.text-accent { color: var(--accent) !important; }

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, rgba(13,27,51,0.96) 0%, rgba(26,42,74,0.92) 50%, rgba(13,34,64,0.95) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    color: white;
    padding: 130px 0 110px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200,168,75,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,168,75,0.15);
    border: 1px solid rgba(200,168,75,0.35);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero h1 .highlight { color: var(--accent); }
.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 400;
}
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 44px;
    max-width: 640px;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* ── POSITIONING STRIP ──────────────────────────────────────────────────────── */
.positioning-strip {
    background: var(--accent);
    padding: 18px 0;
}
.positioning-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.positioning-strip p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}
.strip-divider {
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
}

/* ── MISSION SECTION ─────────────────────────────────────────────────────────── */
.mission-section {
    background: var(--bg-white);
    padding: 100px 0;
}
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mission-content .section-label { display: block; }
.mission-content .section-title { text-align: left; margin-bottom: 24px; }
.mission-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}
.mission-content p strong { color: var(--primary); }
.mission-content .btn { margin-top: 12px; }
.mission-visual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    border-radius: 16px;
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}
.mission-visual::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(200,168,75,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.mission-visual-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}
.mission-pillars { display: flex; flex-direction: column; gap: 18px; }
.mission-pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    transition: background 0.2s;
}
.mission-pillar:hover { background: rgba(255,255,255,0.1); }
.pillar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.pillar-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.pillar-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ── CORE FUNCTIONS ──────────────────────────────────────────────────────────── */
.functions-section {
    background: var(--subtle);
    padding: 90px 0;
}
.functions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.function-card {
    background: white;
    border-radius: 12px;
    padding: 32px 26px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.function-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}
.function-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: rgba(200,168,75,0.3);
}
.function-card:hover::after { transform: scaleX(1); }
.function-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}
.function-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.function-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── ECOSYSTEM FLOW ──────────────────────────────────────────────────────────── */
.ecosystem-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2240 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&q=80&w=2000') center/cover;
    opacity: 0.04;
}
.ecosystem-section .section-title { color: white; }
.ecosystem-section .section-subtitle { color: rgba(255,255,255,0.65); }
.ecosystem-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 60px 0 70px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(200,168,75,0.25);
    border-radius: 14px;
    min-width: 160px;
    max-width: 190px;
    transition: background 0.3s, transform 0.3s;
    position: relative;
}
.flow-node:hover {
    background: rgba(200,168,75,0.12);
    transform: translateY(-4px);
}
.flow-node.primary-node {
    background: rgba(200,168,75,0.15);
    border-color: var(--accent);
    border-width: 2px;
}
.flow-node-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--accent) 0%, #a07830 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.flow-node.primary-node .flow-node-icon {
    width: 64px;
    height: 64px;
    font-size: 1.7rem;
}
.flow-node h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    line-height: 1.3;
}
.flow-node p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    color: var(--accent);
    font-size: 1.6rem;
    opacity: 0.7;
    flex-shrink: 0;
}
.flow-arrow-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    white-space: nowrap;
}
.ecosystem-result {
    text-align: center;
    margin-top: 20px;
    padding: 30px 40px;
    background: rgba(200,168,75,0.1);
    border: 1px solid rgba(200,168,75,0.3);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.ecosystem-result h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}
.ecosystem-result p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* ── SOLUTIONS GRID ──────────────────────────────────────────────────────────── */
.solutions-section { background: var(--bg-white); padding: 90px 0; }
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}
.solution-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    padding: 36px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.solution-card-icon {
    width: 56px;
    height: 56px;
    background: var(--subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}
.solution-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.solution-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
}
.solution-card-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.solution-card-link:hover { gap: 10px; }

/* ── RELATIONSHIP MODEL ──────────────────────────────────────────────────────── */
.relationship-section {
    background: var(--subtle);
    padding: 90px 0;
}
.relationship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.relationship-visual {
    position: relative;
}
.relationship-center {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent) 0%, #a07830 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 0 20px rgba(200,168,75,0.12), 0 0 0 40px rgba(200,168,75,0.06);
}
.relationship-center span:first-child {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.relationship-center span:last-child {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.relationship-spokes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.spoke-item {
    background: white;
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.07);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.spoke-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(200,168,75,0.15);
}
.spoke-item .spoke-icon { font-size: 1.4rem; margin-bottom: 6px; display: block; }
.relationship-content .section-title { text-align: left; }
.relationship-content .section-label { display: block; }
.relationship-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}
.relationship-content p strong { color: var(--primary); }
.value-props { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}
.value-prop-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.value-prop-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}
.value-prop-text p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ── PARTNERSHIPS SECTION ────────────────────────────────────────────────────── */
.partnerships-section {
    background: var(--bg-white);
    padding: 90px 0;
}
.partnerships-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.partnership-type {
    background: var(--subtle);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.partnership-type:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}
.partnership-type-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    display: block;
}
.partnership-type h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.partnership-type p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.partnership-type ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.partnership-type ul li {
    font-size: 0.82rem;
    color: var(--text-light);
    padding-left: 18px;
    position: relative;
}
.partnership-type ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ── CTA SECTION ─────────────────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a1628 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 60%);
}
.cta-section .section-title { color: white; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.65); }
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
footer {
    background: #080f1e;
    color: white;
    padding: 70px 0 24px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
}
.footer-brand .brand-name { font-size: 1.2rem; }
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 300px;
}
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.ecosystem-bar {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
}
.ecosystem-bar-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-bottom: 16px;
}
.ecosystem-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.ecosystem-links a {
    background: rgba(255,255,255,0.04);
    padding: 7px 16px;
    border-radius: 20px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.25s;
    border: 1px solid rgba(255,255,255,0.08);
}
.ecosystem-links a:hover {
    background: rgba(200,168,75,0.12);
    color: var(--accent);
    border-color: rgba(200,168,75,0.3);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .functions-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .relationship-grid { grid-template-columns: 1fr; gap: 40px; }
    .partnerships-types { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { gap: 28px; }
    .ecosystem-flow { flex-direction: column; gap: 12px; }
    .flow-arrow { transform: rotate(90deg); }
}
@media (max-width: 768px) {
    .navbar-nav, .navbar-cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 90px 0 70px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.9rem; }
    .functions-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .functions-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: center; }
    .hero h1 { font-size: 1.9rem; }
    .relationship-spokes { grid-template-columns: repeat(2, 1fr); }
}

/* v10.0 shared ecosystem navigation */
.ecosystem-nav { background:#111; color:#fff; padding:48px 5%; text-align:center; }
.ecosystem-nav h3 { color:var(--accent,#d4af37); margin:0 0 28px; font-size:1.45rem; }
.ecosystem-nav .ecosystem-links { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; max-width:1080px; margin:0 auto; }
.ecosystem-nav .ecosystem-links a { display:flex; align-items:center; color:#fff; text-decoration:none; padding:15px 18px; border:1px solid #333; border-radius:5px; transition:background .2s,border-color .2s,transform .2s; font-size:.9rem; font-weight:650; line-height:1.45; background:transparent; }
.ecosystem-nav .ecosystem-links a:hover,
.ecosystem-nav .ecosystem-links a:focus-visible { background:#222; color:#fff; border-color:var(--accent,#d4af37); transform:translateY(-1px); }
@media (max-width:700px) {
    .ecosystem-nav .ecosystem-links { grid-template-columns:1fr; }
    .ecosystem-nav { padding:42px 20px; }
    #leadForm { padding:24px!important; }
    #leadForm [style*="grid-template-columns"] { grid-template-columns:1fr!important; gap:14px!important; }
}
