:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-card: #18181b;
    --text-primary: #f4f4f5;
    --text-secondary: #e0e0e8;
    --accent: #8b5cf6;
    --accent-hover: #7c3aed;
    --border: #27272a;
    --highlight: rgba(139, 92, 246, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 11, 0.95) 0%, transparent 100%);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-logo {
    height: 36px;
    width: auto;
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-details {
    position: relative;
}

.lang-details summary {
    list-style: none;
    cursor: pointer;
}

.lang-details summary::-webkit-details-marker {
    display: none;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    flex-direction: column;
    gap: 2px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    z-index: 100;
    min-width: 80px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.lang-switcher.dropdown-open .lang-dropdown,
.lang-details[open] .lang-dropdown {
    display: flex;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.lang-btn.active {
    background: var(--highlight);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.globe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    color: var(--text-secondary);
}

.globe-btn:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

section {
    padding: 120px 0;
}

.hero .container {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background-image: url('img/low/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.60) 0%, rgba(10, 10, 15, 0.45) 50%, rgba(10, 10, 15, 0.55) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: left;
}

.hero-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,1);
}

.hero-eyebrow {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
    text-shadow: 0 0 30px rgba(139,92,246,0.8), 0 2px 12px rgba(0,0,0,0.9);
}

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

h1 {
    font-size: clamp(56px, 10vw, 96px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
    margin-bottom: 32px;
    text-shadow: 0 0 30px rgba(0,0,0,0.95), 0 4px 20px rgba(0,0,0,1);
}

h1 .accent {
    color: var(--accent);
}

.hero-description {
    font-size: 20px;
    color: var(--text-primary);
    max-width: 600px;
    margin-bottom: 56px;
    line-height: 1.75;
    text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,1);
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--accent);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.4);
}

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

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    box-shadow: none;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.split-section.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.split-sticky {
    position: sticky;
    top: 80px;
}

.section-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: 0.15em;
}

.section-heading {
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    gap: 24px;
}

.location-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--highlight) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.location-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-8px);
}

.location-card:hover::before {
    opacity: 1;
}

.location-icon {
    font-size: 52px;
    margin-bottom: 28px;
    position: relative;
}

.location-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.location-role {
    color: var(--text-secondary);
    font-size: 16px;
    position: relative;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), transparent);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 28px;
    transition: all 0.35s ease;
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--highlight);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
}

.feature-content h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    min-width: 0;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 32px;
    text-align: center;
    transition: all 0.35s ease;
}

.team-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-6px);
}

.team-avatar {
    width: 92px;
    height: 92px;
    background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%);
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.team-photo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin: 0 auto 28px;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.team-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: var(--text-secondary);
}

.mission-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,11,0.50), rgba(10,10,11,0.65)), url('img/low/Transforming Financial Lives.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,11,0.55);
    z-index: 0;
}

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

.mission-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.mission-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mission-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.mission-text {
    font-size: 18px;
    color: rgba(244,244,245,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.mission-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 0 0 32px;
    border-radius: 2px;
}

.mission-question {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.mission-highlight {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 40px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.mission-btn {
    display: inline-flex;
}

.plans-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.plans-layout {
    display: block;
}

.plans-layout .split-sticky {
    position: static;
    margin-bottom: 40px;
}

.plans-layout .split-section {
    display: block;
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
}

.plans-table-wrapper {
    overflow-x: auto;
}

.plans-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.plans-table-wrapper::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.plans-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.plans-table th,
.plans-table td {
    padding: 24px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.plans-table th {
    background: var(--bg-card);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.plans-table tr:last-child td {
    border-bottom: none;
}

.plans-table tr:hover td {
    background: var(--bg-card);
}

.plan-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 16px;
    white-space: nowrap;
}

.plan-name-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.plan-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 12px;
}

.plans-guidance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.guidance-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
}

.guidance-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guidance-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.level-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.level-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.level-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 16px;
    border-radius: 12px;
    background: var(--bg-secondary);
}

.level-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.level-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.level-deposit {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.level-deposit span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
}

.level-comm {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.level-comm span {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-secondary);
}

.levels-note {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-secondary);
}

.levels-deep {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.levels-deep-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.levels-deep-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.deep-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.deep-range {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.deep-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .level-card {
        padding: 16px;
    }

    .level-img {
        max-width: 120px;
    }

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

.commission-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 64px;
}

.commission-header {
    text-align: left;
    margin-bottom: 16px;
    display: block;
}

.commission-badge {
    background: var(--accent);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.commission-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 12px;
}

.activation-subtitle {
    text-align: left;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 18px;
}

.levels-intro {
    text-align: left;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 16px;
}

.commission-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.commission-table th,
.commission-table td {
    padding: 20px 28px;
    border: 1px solid var(--border);
}

.commission-table th {
    background: var(--bg-secondary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.commission-table td {
    text-align: center;
    font-size: 16px;
}

.commission-table tbody tr:hover {
    background: var(--bg-secondary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(139,92,246,0.15), transparent 70%);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.cta-text {
    font-size: 18px;
    color: rgba(229,229,234,0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(139,92,246,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(139,92,246,0.6);
}

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
}

.footer-logo .accent {
    color: var(--accent);
}

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

.footer-text {
    color: var(--text-secondary);
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-link {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {

    .split-section,
    .split-section.reverse {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .split-sticky {
        position: static;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, auto));
    }

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

    .team-card {
        padding: 24px 16px;
    }

    .team-card.team-ceo-card {
        grid-column: 1 / -1;
    }


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

}

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

    .hero {
        padding: 120px 0;
    }

    .locations-grid,
    .team-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 20px 16px;
    }

    .location-card .location-name {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .plans-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .plans-table {
    }

    .plans-table th,
    .plans-table td {
        padding: 14px 10px;
    }

    .plans-guidance {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .guidance-item {
        padding: 16px;
    }

    .plans-layout .split-sticky {
        margin-bottom: 28px;
    }

    .commission-container {
        padding: 40px 28px;
    }

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

    .btn {
        justify-content: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .lang-switcher {
        top: 16px;
        right: 16px;
    }

    .lang-dropdown {
        top: calc(100% + 6px);
        right: 0;
    }

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

.activation-section {
    padding: 60px 0;
}

.activation-header {
    text-align: center;
    margin-bottom: 48px;
}

.activation-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.activation-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: none;
    margin: 0;
}

.activation-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.activation-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.activation-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.activation-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.activation-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activation-level {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
}

.activation-deposit {
    font-size: 24px;
    font-weight: 700;
}

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



@media (max-width: 768px) {
    .activation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activation-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

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


    .earn-card {
        padding: 24px 16px;
    }

    .earn-card-title {
        font-size: 20px;
    }

}

.withdraw-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,11,0.50), rgba(10,10,11,0.65)), url('img/low/transacao-e-saques.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.withdraw-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,11,0.55);
    z-index: 0;
}

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

.withdraw-header {
    text-align: center;
    margin-bottom: 48px;
}

.withdraw-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.withdraw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.withdraw-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.withdraw-card.highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(139, 130, 246, 0.1), transparent);
}

.withdraw-icon {
    color: var(--accent);
    margin-bottom: 16px;
}

.withdraw-icon.highlight-icon {
    color: #22c55e;
}

.withdraw-main {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.withdraw-sub {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.withdraw-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.withdraw-desc.highlight-desc {
    font-size: 18px;
    font-weight: 600;
    color: #22c55e;
}

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

    .withdraw-title {
        font-size: 22px;
    }
}

.platform-section {
    padding: 60px 0;
}

.platform-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--border);
    display: block;
    margin: 0 auto;
}

.platform-img:hover {
    border-color: var(--accent);
}

/* Analytical Section */
.analytical-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,11,0.40), rgba(10,10,11,0.55)), url('img/low/guy-pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.analytical-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,11,0.45);
    z-index: 0;
}

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

.analytical-header {
    text-align: center;
    margin-bottom: 40px;
}

.analytical-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.analytical-subtitle {
    font-size: 18px;
    color: rgba(229,229,234,0.8);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.analytical-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.analytical-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(244,244,245,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Standards Section */
.standards-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.standards-header {
    text-align: center;
    margin-bottom: 40px;
}

.standards-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.standards-subtitle {
    font-size: 18px;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.standards-chart {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.chart-marker {
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #22c55e;
}

.standards-advantage {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.standards-advantage h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--accent);
}

.standards-advantage p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.standards-note {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: -24px;
    margin-bottom: 32px;
}

.advantage-highlight {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--text-primary) !important;
}

/* Binary Section */
.binary-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,11,0.30), rgba(10,10,11,0.40)), url('img/low/mercado-dinamico.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.binary-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,11,0.75);
    z-index: 0;
}

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

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

.binary-title {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0,0,0,0.95), 0 2px 12px rgba(0,0,0,1);
}

.binary-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.binary-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #e4e4e7;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(0,0,0,0.9), 0 1px 6px rgba(0,0,0,1);
}

.binary-compared {
    font-size: 18px !important;
    color: #ffffff !important;
    background: rgba(139, 92, 246, 0.15);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    text-shadow: 0 0 15px rgba(0,0,0,0.9), 0 1px 6px rgba(0,0,0,1);
}

/* Global Section */
.global-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.global-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,11,0.65), rgba(10,10,11,0.8));
    z-index: 0;
}

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

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

.global-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.global-section .asset-item {
    background: rgba(24,24,27,0.85);
    border: 1px solid rgba(139,92,246,0.4);
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.global-note {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #e4e4e7;
    margin-bottom: 40px;
}

.volume-chart {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto 16px;
    height: 200px;
}

.volume-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100px;
    border-radius: 8px 8px 0 0;
    padding: 16px;
    background: rgba(24,24,27,0.8);
}

.volume-bar .volume-label,
.volume-bar .volume-value,
.volume-compare {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.volume-bar.forex {
    height: 180px;
    background: linear-gradient(180deg, var(--accent), #5b4cdb);
}

.volume-bar.nyse {
    height: 30px;
    background: rgba(139,92,246,0.35);
    border: 1px solid rgba(139,92,246,0.3);
}

.volume-label {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.volume-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.volume-compare {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

/* VIP Section */
.vip-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.vip-header {
    text-align: center;
    margin-bottom: 48px;
}

.vip-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vip-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

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

.vip-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.vip-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-card.vip-wide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vip-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

div.vip-card.vip-gold-card {
    position: relative;
    overflow: hidden;
    border-color: #f59e0b !important;
    text-align: left !important;
}

div.vip-card.vip-gold-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 11, 0.25);
    pointer-events: none;
    z-index: 1;
}

video.vip-gold-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 125%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

div.vip-gold-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 10, 11, 0.50), rgba(10, 10, 11, 0.65));
    z-index: 1;
    pointer-events: none;
}

div.vip-card.vip-gold-card .vip-level-img,
div.vip-card.vip-gold-card .vip-level-badge {
    margin-left: 0 !important;
    position: relative;
    z-index: 3;
}

div.vip-card.vip-gold-card .vip-level-name,
div.vip-card.vip-gold-card .vip-content {
    position: relative;
    z-index: 3;
    text-align: left !important;
}

div.vip-card.vip-gold-card .vip-content {
    align-items: flex-start !important;
}

div.vip-card.vip-diamond-card {
    border-color: #c0c0c0 !important;
    text-align: left !important;
}

.vip-card:not(.vip-gold-card) {
    text-align: left !important;
}

.vip-card:not(.vip-gold-card) .vip-level-img,
.vip-card:not(.vip-gold-card) .vip-level-badge {
    margin-left: 0 !important;
}

.vip-card:not(.vip-gold-card) .vip-level-name,
.vip-card:not(.vip-gold-card) .vip-content {
    text-align: left !important;
}

.vip-card:not(.vip-gold-card) .vip-content {
    align-items: flex-start !important;
}

.vip-level-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    object-fit: contain;
    display: block;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.vip-level-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.vip-card.vip-highlight .vip-level-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a1a;
}

.vip-level-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.vip-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vip-requirement {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vip-requirement .vip-label {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-requirement .vip-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.vip-reward {
    width: 100%;
    background: linear-gradient(135deg, rgba(139, 130, 246, 0.15), rgba(245, 158, 11, 0.08));
    border: 1px solid;
    border-image: linear-gradient(135deg, var(--accent), #f59e0b) 1;
    border-radius: 12px;
    padding: 20px 16px;
    margin-top: 12px;
}

.vip-reward .vip-label {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vip-gift {
    display: block;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0;
}

.vip-note {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Transparency Section */
.transparency-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,11,0.50), rgba(10,10,11,0.65)), url('img/low/transparencia-completa.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.transparency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,11,0.50);
    z-index: 0;
}

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

.transparency-header {
    text-align: center;
    margin-bottom: 64px;
}

.transparency-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 16px;
}

.transparency-subtitle {
    font-size: 22px;
    color: rgba(229,229,234,0.9);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.transparency-card {
    position: relative;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 36px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.transparency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transparency-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-4px);
}

.transparency-card:hover::before {
    opacity: 1;
}

.transparency-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--accent);
}

.transparency-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.transparency-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .transparency-grid { grid-template-columns: 1fr; }
    .transparency-section { padding: 80px 0; }
    .transparency-card { padding: 32px 24px; }
}

/* VIP Master Special Card */
section.vip-section .vip-master-card {
    position: relative;
    background: linear-gradient(rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0.70));
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: left;
    overflow: hidden;
    margin-top: 32px;
}

section.vip-section .vip-master-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 11, 0.45);
    border-radius: 20px;
    pointer-events: none;
}

.vip-master-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    transform: scale(1.15);
    transform-origin: center center;
}

.vip-master-inner {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: rgba(10, 10, 11, 0.75);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.vip-master-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 11, 0.45);
    pointer-events: none;
    z-index: 0;
}

.vip-master-card #vipMasterCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vip-master-img {
    width: 120px;
    height: 120px;
    margin: 0 0 20px 0;
    object-fit: contain;
    display: block;
}

.vip-master-card .vip-level-name {
    font-size: 32px;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Earn Section */
.earn-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10,10,11,0.85), rgba(10,10,11,0.92)), url('img/low/2-formas-ganhar.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.earn-header {
    text-align: center;
    margin-bottom: 48px;
}

.earn-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.earn-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.earn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.earn-card {
    background: rgba(20,20,25,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    text-align: left;
}

.earn-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.earn-card.earn-highlight {
    background: linear-gradient(135deg, rgba(139, 130, 246, 0.15), rgba(139, 130, 246, 0.08));
    border-color: rgba(139, 130, 246, 0.5);
}

.earn-icon {
    color: var(--accent);
    margin-bottom: 24px;
}

.earn-card.earn-highlight .earn-icon {
    color: #f59e0b;
}

.earn-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.earn-card-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin-bottom: 32px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.earn-levels {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.earn-level-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.earn-level-num {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.earn-level-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.earn-level-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.earn-note {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-style: italic;
}

.vip-header {
    text-align: center;
    margin-bottom: 48px;
}

.vip-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vip-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

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

.vip-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.vip-card.vip-highlight {
    background: linear-gradient(135deg, rgba(139, 130, 246, 0.15), rgba(139, 130, 246, 0.05));
    border-color: var(--accent);
    grid-column: span 2;
}

.vip-level-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    object-fit: contain;
    display: block;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.vip-level-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.vip-card.vip-highlight .vip-level-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a1a;
}

.vip-level-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.vip-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vip-requirement {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vip-requirement .vip-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-requirement .vip-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

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

    .earn-card {
        padding: 28px 20px;
    }

    .earn-card-title {
        font-size: 22px;
    }

    .earn-level-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}



@media (max-width: 768px) {
    .analytical-title { font-size: 28px; }
    .analytical-subtitle { font-size: 18px; letter-spacing: 2px; }

    .chart-marker { padding: 12px 16px; font-size: 18px; }

    .binary-title { font-size: 24px; }

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

    .vip-card.vip-highlight {
        grid-column: span 1;
    }

    .vip-card.vip-gold-card {
        grid-column: 1 / -1;
    }

    .transparency-grid { grid-template-columns: 1fr; }
    .global-title { font-size: 22px; }
    .assets-grid { gap: 12px; }
    .asset-item { padding: 12px 20px; font-size: 18px; }

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

    .vip-row {
        grid-template-columns: 1fr;
    }

    .vip-master-card {
        padding: 32px 24px;
    }
}