/* ===== MIRAE ASSET VENTURE INVESTMENTS - Global Stylesheet ===== */

/* --- CSS Variables --- */
:root {
    --navy: #0a1e3d;
    --navy-light: #132d54;
    --navy-dark: #061529;
    --orange: #e8792b;
    --orange-hover: #d06820;
    --orange-light: rgba(232, 121, 43, 0.1);
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #f0f2f5;
    --gray-200: #e1e5eb;
    --gray-300: #c4cad4;
    --gray-400: #8e97a5;
    --gray-500: #6b7585;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    /*font-family: var(--font-body);*/
    font-family: 'SpoqaHanSansNeo-Regular';
    line-height: 1.7;
    /*background: var(--white);*/
    background: #EDEFF4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #043B72;
}

h1 {
    font-size: 35px;
    letter-spacing: -0.03em;
}

h2 { /*font-size: clamp(2rem, 4vw, 3rem); */
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-size:20px;
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size:13PX;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #043B72;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size:13px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #f58220;
    transition: var(--transition);
    
}

    .navbar.scrolled {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
        background-color:white;
        color:black !important;
    }

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .nav-logo .logo-mark {
        width: 40px;
        height: 40px;
        background: var(--navy);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

        .nav-logo .logo-mark::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 3px solid var(--orange);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    .nav-logo .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .nav-logo .logo-primary {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--navy);
        letter-spacing: -0.02em;
    }

    .nav-logo .logo-secondary {
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--orange);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.icon {
    color: transparent;
    height: 40px;
    width: 40px;
    background: rgb(241, 245, 255);
    border-radius: 4px;
    padding: 10px;
    flex-shrink: 0;
}

    .icon:hover {
        background-color: rgb(229,165,134);
    }

    .nav-links a {
        /*font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;*/
        font-size: 13px;
        position: relative;
        text-decoration: none;
        font-family: 'SpoqaHanSansNeo-Regular', Helvetica, Arial, sans-serif;
        cursor: pointer;
        transition: all .2s ease-in-out;
        /*padding: 0.25rem 0;*/
        /*color: #043b72;*/
        color: white;
        padding: 5px 10px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            /* background: var(--orange);*/
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: black;
            background: #ffede4;
            border-radius: 50px;
        }

            .nav-links a:hover::after,
            .nav-links a.active::after {
                width: 100%;
            }

.nav-cta {
    /*background: var(--navy) !important;*/
    background: #f58220 !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.02em;
}

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        background: #043B72 !important;
        transform: translateY(-1px);
    }

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--navy);
        transition: var(--transition);
    }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

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

    .btn-primary:hover {
        background: var(--orange-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(232, 121, 43, 0.3);
    }

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

    .btn-secondary:hover {
        border-color: var(--navy);
        transform: translateY(-2px);
    }

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

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.btn-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-arrow:hover {
    transform: translateX(4px);
}

/* --- Stats Bar --- */
.stats-bar {
    background: #043B72;
    padding: 3rem 0;
    margin: 10px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
    }

.stat-number {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

    .stat-number span {
        color: #f58220;
    }

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Sections --- */
.section {
    padding: 1rem 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

    .section-dark h2,
    .section-dark h3 {
        color: var(--white);
    }

    .section-dark p {
        color: rgba(255, 255, 255, 0.7);
    }

.section-gray {
  /*  background: var(--off-white);*/
    background: rgb(255, 255, 255);
}

/* --- Cards --- */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        border-color: transparent;
    }

.card-icon {
    width: 56px;
    height: 56px;
   /* background: var(--orange-light);*/
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

/* --- Portfolio Grid --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .portfolio-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
        border-color: var(--orange);
        display: inline-block;
        max-width: 100%;
        width: auto;
        position: relative;
        overflow: hidden;
    }

    .portfolio-card .company-logo {
        height: 48px;
        margin-bottom: 1.25rem;
        object-fit: contain;
        max-width: 160px;
    }

    .portfolio-card .company-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

    .portfolio-card .company-desc {
        font-size: 0.875rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .portfolio-card .company-stage {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

.stage-growth {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.stage-early {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
}

.stage-late {
    background: rgba(232, 121, 43, 0.1);
    color: var(--orange);
}

.stage-ipo {
    background: rgba(236, 72, 153, 0.1);
    color: #db2777;
}

/* --- Team Grid --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-100);
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    }

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .team-avatar::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, transparent 40%, rgba(232, 121, 43, 0.3));
        border-radius: 50%;
    }

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    margin-top: 120px;
    color: white;
}

.team-role {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

/* --- Globe / Map Section --- */
.globe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.globe-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition);
}

    .globe-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--orange);
    }

    .globe-card .region {
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--orange);
        margin-bottom: 0.25rem;
    }

    .globe-card .country {
        font-size: 1rem;
        font-weight: 600;
        color: var(--white);
    }

/* --- Footer --- */

.footer {
    background: #f7f7f7;
    padding: 4rem 0 2rem;
    color: #043B72;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-primary {
    color: #043B72;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.footer-brand .logo-secondary {
    color: var(--orange);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.875rem;
    color: #043B72;
    max-width: 320px;
    line-height: 1.7;
    text-align: left;
    margin: 20px 0;
}

.footer-col h4 {
    color: #043B72;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-align: left;
}

.footer-col a {
    display: block;
    font-size: 12px;
    color: #043B72;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    text-align: left;
    margin: 5px 0;
}

    .footer-col a:hover {
        color: var(--orange);
        transform: translateX(4px);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        transition: var(--transition);
    }

        .footer-socials a:hover {
            background: var(--orange);
            color: var(--white);
        }

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* --- Two-Column Layouts --- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-wide {
    grid-template-columns: 5fr 4fr;
}

/* --- Value Props Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .split, .split-wide {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .stat-item:not(:last-child)::after {
        display: none;
    }

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

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

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 1.25rem;
    }

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

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

/* --- Hero Styles --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 105px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, rgba(232, 121, 43, 0.03) 100%);*/
    background: #F3F4EF;
    z-index: 0;
}

    .hero-bg::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 121, 43, 0.06) 0%, transparent 70%);
        top: -200px;
        right: -100px;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(10, 30, 61, 0.04) 0%, transparent 70%);
        bottom: -100px;
        left: -100px;
    }

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

    .hero-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--orange);
        border-radius: 50%;
    }

.hero h1 {
    margin-bottom: 1.5rem;
    max-width: 650px;
}

    .hero h1 .highlight {
        color: var(--orange);
    }

.hero-desc {
    font-size: 13px;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

    .hero-visual .logo-cloud {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

.logo-cloud-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 80px;*/
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

    .logo-cloud-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border-color: var(--orange);
    }

    .logo-cloud-item span {
        font-weight: 700;
        font-size: 1rem;
        color: #043B72;
    }

/* --- Page Header --- */
.page-header {
    padding: 10rem 0 4rem;
    background: #F58220;
    position: relative;
    overflow: hidden;
    height:300px;
}

    .page-header::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 121, 43, 0.1) 0%, transparent 70%);
        top: -200px;
        right: -100px;
    }

    .page-header h1 {
        color: var(--white);
        margin-bottom: 1rem;
    }

    .page-header .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
    }

/* --- Filter Tabs --- */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--text-secondary);
    transition: var(--transition);
}

    .filter-tab.active,
    .filter-tab:hover {
        background: #043B72;
        color: var(--white);
        border-color: var(--navy);
    }

/* --- CTA Section --- */
.cta-section {
    /* background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);*/
    background: #043B72;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 121, 43, 0.08) 0%, transparent 70%);
        top: -300px;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-section h2 {
        color: var(--white);
        margin-bottom: 1rem;
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

/* --- Approach timeline --- */
.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.approach-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 0.5em 0;
    position: relative;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.step-line {
    width: 2px;
    flex: 1;
    background: var(--gray-200);
    margin-top: 0.5rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 13px;
}

/* Utility */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-6 {
    /*margin-bottom: 3rem;*/
    text-align:left;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-6 {
    margin-top: 3rem;
}

/* --- World Map Section --- */
.world-map-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.world-map {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

/* --- Global Office Cards --- */
.globe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.globe-region-group {
    position: relative;
}

.globe-region-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    display: block;
}

.globe-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.globe-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .globe-card:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--orange);
        transform: translateX(4px);
    }

    .globe-card .region {
        display: block;
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--white);
    }

    .globe-card .country {
        display: block;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.02em;
    }

/* --- Brands Grid --- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.brand-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

    .brand-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        border-color: var(--orange);
    }

    .brand-card h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        color: var(--navy);
    }

    .brand-card p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 0;
    }

.gnet-2 .flex {
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex {
    display: flex;
}

/* --- Responsive: Global Page --- */
@media (max-width: 1024px) {
    .globe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

    .globe-region-title {
        margin-bottom: 1rem;
    }

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

    .world-map-container {
        margin-bottom: 2rem;
    }
}

