/* ========================================
   SAVIOR FUND - Light Theme Stylesheet
   Clean, Professional, Modern Design
======================================== */

:root {
    /* Colors - Private Bank Aesthetic */
    --color-bg: #faf9f7;
    --color-bg-secondary: #f5f4f1;
    --color-bg-alt: #f0efec;
    --color-bg-card: #ffffff;
    --color-primary: #1e3a5f;
    --color-primary-dark: #152a45;
    --color-primary-light: #e8edf2;
    --color-accent: #1e3a5f;
    --color-accent-gold: #b8a378;
    --color-accent-gold-light: #f7f5f0;
    --color-text: #2d3436;
    --color-text-secondary: #505659;
    --color-text-muted: #717579;
    --color-border: #e5e3df;
    --color-border-light: #efeee9;
    --color-success: #3d7c5e;
    --color-warning: #9a7b4f;
    --color-gradient-start: #1e3a5f;
    --color-gradient-end: #2d4a6f;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 12px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 16px;
        gap: 12px;
    }

    .logo-img {
        height: 28px;
    }
}

@media (max-width: 374px) {
    .nav-cta {
        padding: 6px 10px;
        font-size: 11px;
    }

    .logo-img {
        height: 24px;
    }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn svg {
    width: 18px;
    height: 18px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-bg-secondary);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-border-light);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background: var(--color-bg-secondary);
    border-color: var(--color-text);
}

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

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 120px 24px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-badge,
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.hero-eyebrow {
    padding: 0;
    background: none;
    border: none;
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
}

/* Institutional Snapshot Card */
.institutional-snapshot {
    background: var(--color-primary);
    border: none;
    padding: 32px;
}
.snapshot-header {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.snapshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.snapshot-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.snapshot-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.snapshot-value {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.card-header {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
}

.card-dot:first-child {
    background: #ff5f56;
}

.card-dot:nth-child(2) {
    background: #ffbd2e;
}

.card-dot:nth-child(3) {
    background: #27ca40;
}

.card-stats {
    padding: 24px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

/* Enhanced Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hero.institutional-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 60px;
    gap: 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.eyebrow-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent-gold);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-success);
}

/* Hero Visual - Card Stack */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.hero-stat-card-1 {
    top: 0;
    left: -20px;
    animation-delay: 0s;
}

.hero-stat-card-2 {
    top: 70px;
    right: -30px;
    animation-delay: 0.5s;
}

.hero-stat-card-3 {
    bottom: 60px;
    left: -40px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary-light);
    border-radius: var(--radius-sm);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stat-card .stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-card .stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Hero Main Card */
.hero-main-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    margin-top: 100px;
}

.main-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-success);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.main-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
}

.main-card-chart {
    height: 60px;
    margin-bottom: 20px;
}

.chart-line {
    width: 100%;
    height: 100%;
}

.main-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.footer-divider {
    width: 1px;
    height: 30px;
    background: var(--color-border);
}

/* Hero Glow Effect */
.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hero Disclaimer */
.hero-disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--color-text-muted);
    padding: 0 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        min-height: 380px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-stat-card-1 {
        left: 10px;
    }

    .hero-stat-card-2 {
        right: 10px;
    }

    .hero-stat-card-3 {
        left: 0;
    }
}

@media (max-width: 575px) {
    .hero.institutional-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-card-stack {
        max-width: 300px;
    }

    .hero-stat-card {
        padding: 10px 14px;
    }

    .hero-stat-card .stat-value {
        font-size: 18px;
    }

    .hero-main-card {
        padding: 18px;
        margin-top: 80px;
    }

    .hero-badge {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* ========================================
   SECTION STYLES
======================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-primary-light);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-header h2,
.about-content h2,
.approach-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    background: var(--color-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content .lead {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content p {
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.about-highlight {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.about-highlight strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.about-highlight p {
    margin: 0;
    font-size: 14px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--color-text);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-text);
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========================================
   STRATEGIES SECTION
======================================== */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.strategy-suite:first-child .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
}

.strategy-card {
    padding: 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.strategy-card:hover {
    border-color: var(--color-text);
    box-shadow: var(--shadow-md);
}

.strategy-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.strategy-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.strategy-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.strategy-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--color-primary-light);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
}

/* Strategy Suite Styling */
.strategy-suite {
    margin-bottom: 60px;
}

.strategy-suite:last-child {
    margin-bottom: 0;
}

.suite-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.suite-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.suite-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.suite-label {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.suite-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 700px;
}

/* Suite Color Variants */
.suite-cerebro .strategy-card {
    border-left: 3px solid var(--color-primary);
}

.suite-cerebro .strategy-tag {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.suite-ta .strategy-card {
    border-left: 3px solid #3d7c5e;
}

.suite-ta .strategy-tag {
    background: #e8f0ec;
    color: #3d7c5e;
}

.suite-ta .suite-label {
    background: var(--color-primary);
}

.suite-tradfi .strategy-card {
    border-left: 3px solid #5a6872;
}

.suite-tradfi .strategy-tag {
    background: #eef0f2;
    color: #5a6872;
}

.suite-tradfi .suite-label {
    background: #5a6872;
}

/* ========================================
   APPROACH SECTION
======================================== */
.approach {
    background: var(--color-bg-secondary);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.approach-chart {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.chart-ring {
    position: relative;
    width: 160px;
    height: 160px;
}

.chart-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-value {
    font-size: 32px;
    font-weight: 700;
}

.chart-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.approach-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.approach-content .lead {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.approach-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.approach-icon svg {
    width: 20px;
    height: 20px;
}

.approach-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.approach-item p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========================================
   GOVERNANCE SECTION
======================================== */
.governance {
    background: var(--color-bg);
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.governance-card {
    padding: 32px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.governance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.governance-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.governance-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.governance-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.governance-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .governance-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRODUCTS SECTION
======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    padding: 40px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.product-card.featured {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.product-card.featured .product-label {
    color: rgba(255,255,255,0.7);
}

.product-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.product-features svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
}

.product-card.featured .product-features svg {
    color: white;
}

.product-card.featured .btn-primary {
    background: white;
    color: var(--color-primary);
}

/* ========================================
   NOTICE SECTION
======================================== */
.notice {
    padding: 60px 0;
    background: var(--color-bg);
}

.notice-box {
    display: flex;
    gap: 20px;
    padding: 28px 32px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-md);
}

.notice-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon svg {
    width: 24px;
    height: 24px;
    color: #d97706;
}

.notice-content strong {
    display: block;
    color: #92400e;
    margin-bottom: 4px;
}

.notice-content p {
    font-size: 14px;
    color: #92400e;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.cta-content .section-tag {
    background: var(--color-bg);
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 24px 0 16px;
    background: #1e293b;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 12px;
}

.footer-brand .logo-img {
    height: 24px;
    margin-bottom: 8px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    max-width: 220px;
    line-height: 1.4;
}

.footer-links h4 {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.5);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a,
.footer-links li {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.footer-links a:hover {
    color: #ffffff;
}

/* ========================================
   PARTNERS SECTION
======================================== */
.partners {
    background: var(--color-bg-secondary);
    padding: 60px 0;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

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

.partner-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.partner-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.partner-info p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .partners-grid {
        flex-direction: column;
        align-items: center;
    }

    .partner-card {
        width: 100%;
        max-width: 400px;
    }
}

.footer-bottom {
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-bottom .disclaimer {
    font-size: 10px;
    max-width: 100%;
    line-height: 1.4;
    color: rgba(255,255,255,0.5);
}

.footer-legal-links {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 11px;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.5);
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-legal-links span {
    color: rgba(255,255,255,0.2);
}

/* ========================================
   CORE VALUES SECTION
======================================== */
.values {
    background: var(--color-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-text);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========================================
   WHY INVEST SECTION
======================================== */
.why-invest {
    background: var(--color-bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.why-item:hover {
    border-color: var(--color-text);
}

.why-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-it-works {
    background: var(--color-bg);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.how-content .lead {
    font-size: 18px;
    color: var(--color-text-secondary);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.step {
    display: flex;
    gap: 16px;
    padding: 28px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.step:hover {
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   REGULATION / LEI SECTION
======================================== */
.regulation {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}

.regulation .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.regulation .section-header h2 {
    color: white;
}

.regulation .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.regulation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.regulation-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.regulation-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.regulation-card .card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
}

.regulation-card .card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.regulation-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.regulation-card .card-value {
    font-size: 18px;
    font-weight: 600;
    color: white;
    word-break: break-all;
}

.regulation-card .card-value.lei-code {
    font-size: 14px;
    font-family: 'SF Mono', Monaco, monospace;
    letter-spacing: 0.05em;
}

.lei-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 14px;
    color: white;
}

.lei-badge .status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 1024px) {
    .values-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .regulation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .about-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .strategies-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero {
        padding-top: 100px;
    }

    .strategies-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .regulation-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .notice-box {
        flex-direction: column;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-visual {
        order: 2;
    }

    .approach-content {
        order: 1;
    }
}

/* ========================================
   CONTACT MODAL
======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover { background: var(--color-border); }
.modal-close svg { width: 20px; height: 20px; }

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p { color: var(--color-text-secondary); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--color-bg);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.modal-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.modal-footer p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 16px;
}

.email-link:hover { color: var(--color-primary-dark); }
.email-link svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
    .modal-content { padding: 24px; }
    .modal-header h3 { font-size: 24px; }
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.form-message-success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.form-message-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Service Providers Section */
.service-providers {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.provider-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}
.provider-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.08);
}
.provider-role {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.provider-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}
.provider-detail {
    font-size: 14px;
    color: var(--color-text-muted);
}
@media (max-width: 992px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .providers-grid {
        grid-template-columns: 1fr;
    }
    .provider-card {
        padding: 24px;
    }
}

/* Provider Icon */
.provider-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    object-fit: contain;
}
.provider-card-featured {
    border-color: var(--color-border);
    background: var(--color-bg-card);
}

/* Provider Icon Inline */
.provider-icon-inline {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
    object-fit: contain;
}

/* ========================================
   INSTITUTIONAL IMPROVEMENTS
======================================== */

/* Institutional Proof Panel in Hero */
.institutional-proof {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
}
.proof-header {
    padding: 16px 24px;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
}
.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.proof-item {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border-light);
    border-right: 1px solid var(--color-border-light);
}
.proof-item:nth-child(even) {
    border-right: none;
}
.proof-item:nth-last-child(-n+2) {
    border-bottom: none;
}
.proof-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}
.proof-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

/* Typography Improvements - More Editorial */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}
h2 {
    font-weight: 600;
    line-height: 1.2;
}
p {
    line-height: 1.8;
}
.section-desc {
    line-height: 1.85;
    font-size: 17px;
}
.section-tag {
    font-weight: 500;
    letter-spacing: 1.5px;
}

/* Service Providers - Premium Look */
.service-providers {
    padding: 120px 0;
    background: var(--color-bg);
}
.service-providers .section-header {
    margin-bottom: 80px;
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.provider-card {
    background: var(--color-bg-card);
    border: none;
    border-radius: 0;
    padding: 40px 32px;
    text-align: left;
    transition: background var(--transition-base);
}
.provider-card:hover {
    background: var(--color-bg-secondary);
    transform: none;
    box-shadow: none;
}
.provider-role {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}
.provider-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}
.provider-detail {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Subdued Cards and Sections */
.value-card,
.feature-card,
.strategy-card,
.governance-card {
    transition: border-color var(--transition-base);
}
.value-card:hover,
.feature-card:hover,
.strategy-card:hover,
.governance-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--color-primary);
}

/* Remove aggressive hover effects */
.btn-primary {
    background: var(--color-primary);
    box-shadow: none;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: none;
}

/* Muted Highlight Colors */
.highlight {
    color: var(--color-primary);
}

/* Less Aggressive Section Tags */
.section-tag {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 6px 14px;
}

/* ========================================
   SECTION HIERARCHY: Narrative / Proof / Action
======================================== */

/* NARRATIVE SECTIONS - "We explain" */
/* About, Core Values, Strategies, Approach */
.narrative-section {
    background: var(--color-bg);
    padding: 100px 0;
}
.narrative-section .section-header {
    max-width: 680px;
}
.narrative-section h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--color-text);
}
.narrative-section .section-desc {
    font-size: 18px;
    line-height: 1.9;
    color: var(--color-text-secondary);
}

/* PROOF SECTIONS - "We prove" - THE HEAVYWEIGHTS */
/* Service Providers, Regulated & Registered, Governance */
.proof-section {
    background: var(--color-bg-secondary);
    padding: 120px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.proof-section .section-header {
    margin-bottom: 60px;
}
.proof-section .section-tag {
    background: var(--color-primary);
    color: white;
    border: none;
}
.proof-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

/* ACTION SECTIONS - "We convert" */
/* CTA, Contact, How It Works */
.action-section {
    background: var(--color-primary);
    color: white;
    padding: 80px 0;
}
.action-section .section-tag {
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
}
.action-section h2 {
    color: white;
    font-size: 36px;
}
.action-section p {
    color: rgba(255,255,255,0.85);
}

/* SERVICE PROVIDERS - Premium "Fund Stack" Layout */
.service-providers {
    background: var(--color-bg-secondary);
    padding: 140px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.service-providers .section-tag {
    background: var(--color-primary);
    color: white;
    border: none;
    font-weight: 600;
}
.service-providers h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}
.service-providers .section-desc {
    max-width: 540px;
    margin: 0 auto;
}
.providers-grid {
    margin-top: 60px;
    gap: 0;
    border-radius: 0;
}
.provider-card {
    padding: 48px 40px;
}

/* REGULATION - The Trust Center */
.regulation {
    background: var(--color-bg-secondary);
    padding: 140px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}
.regulation .section-tag {
    background: var(--color-primary);
    color: white;
    border: none;
}
.regulation .section-header h2 {
    color: #1a1f2e;
    font-weight: 600;
}
.regulation .section-desc {
    color: #4e5560;
}
.regulation-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.regulation-card {
    background: var(--color-bg-card);
    padding: 32px 24px;
    text-align: center;
}
.regulation-card h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5b6572;
    margin-bottom: 8px;
}
.regulation-card .card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    word-break: break-all;
}
.regulation-card .card-icon {
    display: none;
}

/* FOOTER - Heavier, More Solid */
.footer {
    background: #1a1f24;
    color: #a0a5aa;
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: #8a8f94;
    margin-top: 20px;
    max-width: 320px;
}
.footer-links h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 24px;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    font-size: 14px;
    color: #8a8f94;
    transition: color var(--transition-fast);
}
.footer-links ul li a:hover {
    color: #ffffff;
}
.footer-bottom {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-bottom p {
    font-size: 13px;
    color: #6a6f74;
}
.footer-bottom .disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #a5aab0;
    max-width: 900px;
    margin-top: 8px;
}
.footer-legal-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.footer-legal-links a {
    color: #8a9098;
    font-size: 13px;
    transition: color var(--transition-fast);
}
.footer-legal-links a:hover {
    color: #ffffff;
}
.footer-legal-links span {
    color: #4a5058;
}
.footer .logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ========================================
   INDICATIVE METRICS
======================================== */
.indicative-metrics {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
}
.metrics-header {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    text-align: center;
}
.approach-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.approach-metrics-grid .metric {
    text-align: center;
    padding: 16px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
}
.approach-metrics-grid .metric-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.approach-metrics-grid .metric-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.metrics-disclaimer {
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}
.metrics-disclaimer p {
    font-size: 11px;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

/* ========================================
   INSTITUTIONAL FOOTER
======================================== */
.institutional-footer {
    background: #141920;
    padding: 100px 0 60px;
}
.footer-tagline {
    font-size: 14px;
    color: #6a7580;
    margin-top: 12px;
    letter-spacing: 0.5px;
}
.footer-fund-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.fund-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}
.fund-info-item .info-label {
    color: #5a6570;
}
.fund-info-item .info-value {
    color: #9aa0a8;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 12px;
}
.footer-legal {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-disclaimer {
    font-size: 12px;
    line-height: 1.8;
    color: #5a6068;
    margin-bottom: 16px;
    max-width: 100%;
}
.legal-disclaimer:last-child {
    margin-bottom: 0;
}
.legal-disclaimer strong {
    color: #7a8088;
}
.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}
.footer-meta p {
    font-size: 13px;
    color: #5a6068;
}
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-legal-links a {
    font-size: 13px;
    color: #6a7078;
    transition: color var(--transition-fast);
}
.footer-legal-links a:hover {
    color: #ffffff;
}
.footer-legal-links .divider {
    color: #3a4048;
}

/* ========================================
   STRATEGY SLEEVES
======================================== */
.strategy-sleeves {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.strategy-sleeve {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
}
.sleeve-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}
.sleeve-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.sleeve-items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sleeve-items li {
    font-size: 14px;
    color: var(--color-text);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border-light);
    position: relative;
    padding-left: 16px;
}
.sleeve-items li:last-child {
    border-bottom: none;
}
.sleeve-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Why Grid 4 columns */
.why-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

/* ========================================
   INSTITUTIONAL SERVICE PROVIDERS
======================================== */
.institutional-providers {
    background: var(--color-primary);
    padding: 100px 0;
}
.institutional-providers .light-header .section-tag {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: none;
}
.institutional-providers .light-header h2 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.institutional-providers .light-header .section-desc {
    color: rgba(255,255,255,0.85);
}
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 48px;
}
.premium-card {
    background: rgba(255,255,255,0.05);
    padding: 28px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: default;
}
.premium-card:hover {
    background: rgba(255,255,255,0.15);
}
.premium-card:hover .provider-name {
    color: #ffffff;
}
.premium-card:hover .provider-role {
    color: rgba(255,255,255,0.8);
}
.premium-card:hover .provider-detail {
    color: rgba(255,255,255,0.85);
}
.premium-card .provider-role {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.premium-card .provider-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.premium-card .provider-detail {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    transition: color 0.3s ease;
}
.provider-icon-inline {
    height: 18px;
    width: auto;
    margin-right: 6px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

/* ========================================
   ACCESS CARDS (Investment Classes)
======================================== */
.access-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.access-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
}
.access-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}
.access-title .class-label {
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 14px;
}
.access-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}
.access-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   INSTITUTIONAL CTA
======================================== */
.institutional-cta {
    background: var(--color-bg-secondary);
    padding: 80px 0;
}
.institutional-cta .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.institutional-cta h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}
.institutional-cta p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta-email {
    font-size: 14px;
    color: var(--color-text-muted);
}
.cta-email:hover {
    color: var(--color-primary);
}

/* ========================================
   MOBILE-FIRST RESPONSIVE STYLES
   Breakpoints: 0-479 (base), 480-767, 768-1023, 1024+
======================================== */

/* GLOBAL MOBILE RULES */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Text wrapping rules */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* Long codes/identifiers */
.card-value, .lei-code, code, .mono {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Hide any floating/fixed badges on mobile */
@media (max-width: 767px) {
    [class*="badge-floating"],
    [class*="created-by"],
    [class*="minimax"],
    [class*="agent-badge"],
    .floating-badge,
    .agent-badge,
    .created-by,
    [data-agent],
    .watermark,
    iframe[src*="badge"],
    div[style*="position: fixed"][style*="bottom"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* ========================================
   MOBILE CONTRAST FIX
   Make muted text more readable
======================================== */
@media (max-width: 767px) {
    :root {
        --color-text-muted: #5a5e62;
        --color-text-secondary: #454850;
    }

    /* Improve contrast for all secondary text */
    .section-desc,
    .hero-subtitle,
    .card p,
    .governance-card p,
    .value-card p,
    .feature-card p {
        color: #454850;
    }

    /* Reduce blur/shadow effects for performance */
    .regulation-card,
    .hero-card,
    .institutional-snapshot {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Reduce shadows on mobile */
    .value-card:hover,
    .feature-card:hover,
    .governance-card:hover,
    .partner-card:hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    /* HOW IT WORKS - Mobile Timeline Style */
    .how-it-works {
        padding: 48px 0 40px !important;
    }

    .how-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .how-content {
        text-align: center;
        margin-bottom: 8px;
    }

    .how-content h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .how-content .lead {
        font-size: 15px;
        line-height: 1.5;
        color: #454850;
    }

    .how-steps {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .step {
        padding: 16px 18px !important;
        gap: 12px !important;
        border-radius: 10px;
        align-items: flex-start;
    }

    .step:hover {
        box-shadow: none;
    }

    .step-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 13px !important;
        flex-shrink: 0;
    }

    .step-content h4 {
        font-size: 15px !important;
        margin-bottom: 2px !important;
    }

    .step-content p {
        font-size: 13px !important;
        line-height: 1.45 !important;
        color: #505659;
    }

    /* Hero centered without snapshot */
    .institutional-hero {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   BASE MOBILE (0-479px)
======================================== */
@media (max-width: 479px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Section spacing - reduced */
    section {
        padding: 40px 0;
    }
    .proof-section,
    .service-providers,
    .regulation,
    .institutional-providers {
        padding: 48px 0;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 24px;
    }
    .section-header h2 {
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: -0.02em;
    }
    .section-desc {
        font-size: 15px;
        line-height: 1.6;
        color: var(--color-text-secondary);
    }
    .section-tag {
        font-size: 10px;
        padding: 4px 10px;
    }

    /* HEADER - compact */
    .navbar {
        padding: 10px 0;
    }
    .navbar.scrolled {
        padding: 8px 0;
    }
    .nav-container {
        padding: 0 16px;
    }
    .logo-img {
        height: 26px;
    }
    .nav-cta {
        padding: 8px 14px;
        font-size: 12px;
    }
    .mobile-menu-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    .mobile-menu-btn span {
        width: 20px;
    }

    /* Reduce blur/shadow on mobile for performance */
    .navbar.scrolled {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }
    .regulation-card {
        backdrop-filter: none;
    }

    /* MOBILE MENU */
    .mobile-menu {
        padding: 16px;
    }
    .mobile-menu-header {
        margin-bottom: 24px;
    }
    .mobile-nav-links {
        flex-direction: column;
        gap: 0;
    }
    .mobile-nav-links a {
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid var(--color-border);
    }
    .mobile-menu-footer {
        margin-top: 24px;
        padding-top: 16px;
    }
    .mobile-menu-footer p {
        font-size: 12px;
        line-height: 1.5;
        max-height: 3em;
        overflow: hidden;
    }

    /* HERO - Typography per spec: H1 34-42px */
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-eyebrow {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .hero-title {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 14px;
        letter-spacing: -0.03em;
    }
    .hero-title .highlight {
        display: inline;
    }
    .hero-title br {
        display: none;
    }
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 20px;
        color: var(--color-text-secondary);
    }
    .hero-subtitle br {
        display: none;
    }
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Institutional Snapshot */
    .hero-visual {
        margin-top: 32px;
    }
    .institutional-snapshot {
        padding: 20px;
    }
    .snapshot-header {
        font-size: 10px;
        margin-bottom: 16px;
    }
    .snapshot-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .snapshot-item {
        padding: 12px;
        text-align: left;
    }
    .snapshot-label {
        font-size: 10px;
    }
    .snapshot-value {
        font-size: 14px;
    }

    /* TWO-COLUMN HERO TO SINGLE */
    .institutional-hero {
        flex-direction: column;
    }
    .institutional-hero .hero-content,
    .institutional-hero .hero-visual {
        width: 100%;
        max-width: 100%;
    }

    /* ALL GRIDS TO SINGLE COLUMN */
    .values-grid,
    .features-grid,
    .why-grid,
    .why-grid-4,
    .governance-grid,
    .strategy-sleeves,
    .access-cards,
    .premium-grid,
    .providers-grid,
    .regulation-grid,
    .approach-metrics-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    /* CARDS */
    .value-card,
    .feature-card,
    .governance-card,
    .strategy-card,
    .access-card,
    .premium-card,
    .provider-card,
    .regulation-card {
        padding: 16px;
        border-radius: 14px;
    }

    /* Card typography */
    .value-card h3,
    .feature-card h3,
    .governance-card h4,
    .strategy-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .value-card p,
    .feature-card p,
    .governance-card p,
    .strategy-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Icons in cards */
    .value-icon,
    .governance-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    .value-icon svg,
    .governance-icon svg {
        width: 24px;
        height: 24px;
    }

    /* STRATEGY SLEEVES */
    .strategy-sleeve {
        padding: 16px;
    }
    .sleeve-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .sleeve-items {
        gap: 6px;
    }
    .sleeve-items li {
        font-size: 13px;
        padding-left: 16px;
    }

    /* REGULATION / REGISTRY */
    .regulation-card {
        padding: 16px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .regulation-card .card-icon {
        width: 40px;
        height: 40px;
        margin: 0;
        flex-shrink: 0;
    }
    .regulation-card .card-icon svg {
        width: 20px;
        height: 20px;
    }
    .regulation-card h4 {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .regulation-card .card-value {
        font-size: 14px;
    }
    .regulation-card .card-value.lei-code {
        font-size: 11px;
    }

    /* SERVICE PROVIDERS */
    .premium-card {
        padding: 16px;
    }
    .premium-card .provider-role {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .premium-card .provider-name {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .premium-card .provider-detail {
        font-size: 12px;
    }
    .provider-icon-inline {
        height: 14px;
    }

    /* ACCESS CARDS / Investment Classes */
    .access-card {
        padding: 16px;
    }
    .access-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .access-title .class-label {
        font-size: 12px;
    }
    .access-desc {
        font-size: 13px;
    }

    /* METRICS */
    .approach-metrics-grid {
        gap: 8px;
    }
    .metric-card {
        padding: 16px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .metric-value {
        font-size: 24px;
    }
    .metric-label {
        font-size: 12px;
    }
    .approach-disclaimer {
        font-size: 11px;
        margin-top: 16px;
        padding: 12px;
    }

    /* CTA */
    .cta, .institutional-cta {
        padding: 48px 0;
    }
    .cta h2, .institutional-cta h2 {
        font-size: 22px;
    }
    .cta p, .institutional-cta p {
        font-size: 14px;
    }
    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* PARTNERS */
    .partners-grid {
        flex-direction: column;
        gap: 12px;
    }
    .partner-card {
        width: 100%;
        padding: 16px;
    }
    .partner-logo {
        width: 48px;
        height: 48px;
    }
    .partner-info h4 {
        font-size: 15px;
    }
    .partner-info p {
        font-size: 12px;
    }

    /* FOOTER - Ultra Compact for Mobile */
    .footer {
        background: #1a1f24 !important;
        padding: 24px 16px 16px !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding-bottom: 16px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    .footer-brand {
        text-align: center;
        padding-bottom: 0;
        border-bottom: none;
    }
    .footer-brand .logo-img {
        height: 22px;
        margin: 0 auto 6px;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }
    .footer-brand p {
        max-width: 260px;
        margin: 0 auto;
        font-size: 12px;
        line-height: 1.4;
        color: #8a8f94 !important;
    }
    /* Hide footer-links on small mobile */
    .footer-links {
        display: none !important;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding-top: 12px;
    }
    .footer-bottom p {
        font-size: 11px;
        color: #6a6f74 !important;
        margin: 0;
    }
    .footer-bottom .disclaimer {
        font-size: 10px;
        max-width: 100%;
        line-height: 1.5;
        padding: 10px 12px;
        background: rgba(255,255,255,0.05);
        border-radius: 6px;
        color: #8a9098 !important;
        margin: 4px 0;
    }
    .footer-legal-links {
        font-size: 11px;
        gap: 8px;
        justify-content: center;
    }
    .footer-legal-links span {
        display: none;
    }
    .footer-legal-links a {
        padding: 4px 10px;
        background: rgba(255,255,255,0.08);
        border-radius: 4px;
        color: #8a9098 !important;
    }

    /* MODAL / FORM */
    .modal-content {
        padding: 20px;
        width: 95%;
        max-width: 100%;
    }
    .modal-header h3 {
        font-size: 20px;
    }
    .form-group label {
        font-size: 13px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
    }
    .btn-full {
        padding: 14px;
        font-size: 14px;
    }
}

/* ========================================
   LARGE MOBILE (480-767px)
======================================== */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 56px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    /* Hero */
    .hero {
        padding: 110px 0 56px;
    }
    .hero-title {
        font-size: 30px;
    }

    /* Two columns allowed for small cards */
    .regulation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .regulation-card {
        flex-direction: column;
        text-align: center;
    }
    .regulation-card .card-icon {
        margin: 0 auto 8px;
    }

    /* Snapshot 2 cols */
    .snapshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer - show links on larger mobile */
    .footer {
        padding: 28px 0 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        text-align: left;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: left;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-border);
        margin-bottom: 8px;
    }
    .footer-brand .logo-img {
        margin: 0 0 8px;
        height: 26px;
    }
    .footer-links {
        display: block;
        text-align: left;
    }
    .footer-links h4 {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .footer-links ul {
        gap: 6px;
    }
    .footer-links a, .footer-links li {
        font-size: 12px;
    }
}

/* ========================================
   TABLET (768-1023px)
======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 32px;
    }

    section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    /* Hero side-by-side */
    .institutional-hero {
        flex-direction: row;
        gap: 40px;
    }
    .institutional-hero .hero-content {
        flex: 1;
    }
    .institutional-hero .hero-visual {
        flex: 0 0 340px;
    }
    .hero-title {
        font-size: 32px;
    }

    /* Grids 2 columns */
    .values-grid,
    .features-grid,
    .why-grid-4,
    .governance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategy-sleeves {
        grid-template-columns: repeat(3, 1fr);
    }

    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regulation-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .access-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

/* ========================================
   DESKTOP (1024px+)
======================================== */
@media (min-width: 1024px) {
    /* Restore full desktop layouts */
    .container {
        padding: 0 24px;
    }

    section {
        padding: 100px 0;
    }

    .proof-section,
    .service-providers,
    .regulation {
        padding: 120px 0;
    }

    .institutional-providers {
        padding: 100px 0;
    }

    .values-grid,
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .governance-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .regulation-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
