/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #0b0c15;
    /* Deeper navy-black for corporate feel */
    --bg-secondary: #13151f;
    --text-color: #f0f0f0;
    --text-secondary: #9fabba;
    --accent-color: #d4af37;
    /* Keeping Gold for prestige */
    --accent-secondary: #64ffda;
    /* Teal for Investment/Tech vibe */
    --accent-tertiary: #ff6b6b;
    /* Soft red for contrasts */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f9e076 50%, #d4af37 100%);
    --gradient-blue: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
    /* More modern/corporate sans-serif */
    --radius-md: 6px;
    --radius-lg: 12px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(11, 12, 21, 0.95);
    /* Less transparent for corporate look */
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo-dot {
    color: var(--accent-color);
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #fff;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.lang-link {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.lang-link:hover,
.lang-link.active {
    color: var(--accent-color);
}

.lang-switcher .sep {
    color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Abstract global network background */
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2672&auto=format&fit=crop') no-repeat center center/cover;
    filter: brightness(0.6) hue-rotate(220deg) saturate(1.2);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 12, 21, 0.7) 0%, rgba(11, 12, 21, 1) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* Hero Split Actions */
.hero-split-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-action {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius-lg);
    width: 300px;
    text-align: left;
    position: relative;
    transition: transform 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
}

.card-action:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.card-action .img-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.card-action.invest .img-icon {
    color: var(--accent-secondary);
}

.action-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.action-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-action .arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    transition: background 0.3s, border-color 0.3s;
}

.card-action:hover .arrow {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.card-action.invest:hover .arrow {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

/* Global Network Section */
.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.network-item {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius-md);
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
}

.network-item:hover {
    border-color: var(--accent-color);
}

.n-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.network-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.network-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.stats-banner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--gradient-blue);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.stat-box {
    text-align: center;
    color: #fff;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-lbl {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Financing / Investing Sections */
.financing-section {
    background: var(--bg-secondary);
}

.investing-section {
    background: var(--bg-color);
}

.row {
    display: flex;
    gap: 60px;
}

.align-center {
    align-items: center;
}

.col-text,
.col-image {
    flex: 1;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-secondary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.financing-section .section-tag {
    color: var(--accent-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.service-lead {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 30px;
    font-weight: 500;
}

.benefit-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-list li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.benefit-list li strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
}

.benefit-list li span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Feature Cards (Visuals) */
.feature-card-container {
    display: flex;
    justify-content: center;
}

.feature-card {
    background: #1a1c29;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: var(--shadow-card);
}

.feature-card.invest-theme {
    border-color: rgba(100, 255, 218, 0.2);
}

.fc-header {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.fc-sub {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.fc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.fc-row span:last-child {
    color: #fff;
    font-weight: 600;
}

.fc-row .highlight {
    color: var(--accent-color);
}

.fc-row .highlight-green {
    color: var(--accent-secondary);
}

.fc-footer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Simple Chart */
.fc-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    margin-bottom: 30px;
    padding: 0 20px;
    gap: 10px;
}

.chart-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
}

.chart-bar.active {
    background: var(--accent-secondary);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
}

.chart-val {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-secondary);
}

.invest-types {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.it-item {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid transparent;
}

.it-item.active {
    border-color: var(--accent-secondary);
    background: rgba(100, 255, 218, 0.05);
}

.it-item h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #fff;
    font-family: var(--font-body);
}

.it-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: var(--bg-secondary);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1rem;
}

.author {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 0;
}

/* Special layout */
.contact-container {
    display: flex;
    min-height: 600px;
}

.contact-text {
    flex: 1;
    background: #000;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2670&auto=format&fit=crop') center/cover;
    position: relative;
}

.contact-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.contact-text * {
    position: relative;
    z-index: 2;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    color: #ccc;
    margin-bottom: 40px;
}

.contact-info li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info li i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--bg-secondary);
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-form {
    width: 100%;
    max-width: 500px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Radio Group Custom */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-box {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
}

.radio-box input {
    position: absolute;
    opacity: 0;
}

.radio-box span {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

.radio-box:has(input:checked) {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
}

.radio-box:has(input:checked) span {
    color: var(--accent-color);
}

.footer {
    padding: 40px 0;
    background: #08090f;
    color: #555;
}

.footer-copy {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.footer-disclaimer {
    font-size: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.7;
}

/* New detailed Footer Styles */
.footer-legal-block {
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal-block h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.footer-legal-block p {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.6;
}

.warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 15px;
    margin: 20px 0;
    border-radius: var(--radius-md);
}

.warning-box p {
    color: var(--accent-tertiary) !important;
    font-weight: 600;
    margin: 0;
}

.footer-bottom-links {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.footer-bottom-links a {
    color: #888;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-links .sep {
    margin: 0 10px;
    color: #444;
}

/* Responsive */
@media (max-width: 900px) {
    .row {
        flex-direction: column;
    }

    .row.reverse-mobile {
        flex-direction: column-reverse;
    }

    .contact-container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Results / Presentation Section */
.results-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.result-card {
    background: linear-gradient(145deg, #161822, #1a1c29);
    padding: 30px;
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.rc-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.result-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.result-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

/* Timeline / Steps */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.process-timeline .timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 60px;
}

.process-timeline .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-timeline .timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.process-timeline .timeline-item:nth-child(odd) .tl-content {
    margin-right: 20px;
}

.process-timeline .timeline-item:nth-child(even) .tl-content {
    margin-left: 20px;
}

.tl-number {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-color);
    z-index: 10;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.process-timeline .timeline-item:nth-child(odd) .tl-number {
    right: -25px;
}

.process-timeline .timeline-item:nth-child(even) .tl-number {
    left: -25px;
}

.tl-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tl-content p {
    color: #999;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }

    .process-timeline .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
        left: 0 !important;
    }

    .process-timeline .timeline-item:nth-child(odd) .tl-number,
    .process-timeline .timeline-item:nth-child(even) .tl-number {
        left: -5px;
        right: auto;
    }

    .process-timeline .timeline-item:nth-child(odd) .tl-content {
        margin-right: 0;
    }

    .process-timeline .timeline-item:nth-child(even) .tl-content {
        margin-left: 0;
    }
}

/* Accordion / FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-header i {
    transition: transform 0.3s;
    color: var(--accent-color);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    padding: 20px 0;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Trust Bar / Partners */
.trust-bar {
    padding: 30px 0;
    text-align: center;
    background: #0b0c15;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.7;
}

.partner-logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    background: radial-gradient(circle at center, #1b1e2d 0%, #0b0c15 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item {
    position: relative;
    padding: 10px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: var(--accent-color);
    margin-bottom: 5px;
    background: -webkit-linear-gradient(#f3df96, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

@media(max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .partners-logos {
        gap: 20px;
    }
}

@media(max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none;
    }

    .partners-logos {
        flex-direction: row;
        gap: 20px;
    }
}

.partner-logo-img {
    height: 40px;
    /* Standardize height */
    width: auto;
    filter: brightness(0) invert(1);
    /* Forces logo to be pure white */
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 10px 15px;
}

.partner-logo-img:hover {
    filter: none;
    /* Restore original colors on hover */
    opacity: 1;
    transform: scale(1.1);
}

@media(max-width: 480px) {
    .partner-logo-img {
        height: 25px;
        /* Smaller on mobile */
    }
}

/* Carousel Animation */
.partners-logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    white-space: nowrap;
    /* Gradient mask for smooth fade in/out */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners-logos-track {
    display: inline-flex;
    align-items: center;
    /* Infinite scroll animation */
    animation: scroll 40s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.partners-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move half the width (first set of logos) */
        transform: translateX(-50%);
    }
}

/* Specific styling for logos inside the carousel */
.partners-logos-track .partner-logo-img {
    height: 40px;
    width: auto;
    margin: 0 40px;
    /* Consistent spacing */
    flex-shrink: 0;
    /* Starting state: pure white and semi-transparent */
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partners-logos-track .partner-logo-img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: none;
    /* Restore color on hover */
}

/* Mobile responsiveness for carousel */
@media(max-width: 768px) {
    .partners-logos-track .partner-logo-img {
        height: 30px;
        margin: 0 20px;
    }
}

/* =========================================
   RESPONSIVE & MOBILE APP OPTIMIZATION
   ========================================= */

/* Tablet & Mobile Adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .row {
        flex-direction: column;
        gap: 40px;
    }

    .row.reverse-mobile {
        flex-direction: column-reverse;
    }

    .col-image {
        order: -1;
    }

    .feature-card {
        margin: 0 auto;
        max-width: 100%;
    }
}

/* Mobile App View (Phones) */
@media (max-width: 768px) {

    /* Header & Nav */
    .header {
        padding: 15px 0;
        background: rgba(11, 12, 21, 0.98);
        border-bottom: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .nav {
        display: none;
        /* Hide Desktop Nav */
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-split-actions {
        flex-direction: column;
        gap: 15px;
    }

    .card-action {
        width: 100%;
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .card-action .img-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .card-action .arrow {
        position: static;
        margin-left: auto;
    }

    .action-desc {
        display: none;
        /* Simplify for mobile */
    }

    .action-title {
        font-size: 1rem;
        margin-bottom: 0;
    }

    /* Stats Bar */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Sections General */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Features / Cards */
    .feature-card {
        padding: 25px;
    }

    .fc-row {
        font-size: 0.85rem;
    }

    /* Network Grid */
    .network-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .network-item {
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .n-icon {
        margin-bottom: 0;
        font-size: 1.5rem;
    }

    .network-item h3 {
        margin-bottom: 0;
        font-size: 1rem;
    }

    .network-item p {
        display: none;
        /* Hide details on list view */
    }

    /* Timeline */
    .process-timeline::before {
        left: 20px;
    }

    .process-timeline .timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left;
    }

    .tl-number {
        left: 0 !important;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links .sep {
        display: none;
    }

    /* Mobile Bottom Navigation Bar */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #1a1c29;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        z-index: 9999;
        justify-content: space-around;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }

    .mb-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #9fabba;
        font-size: 0.7rem;
        gap: 5px;
    }

    .mb-item.active {
        color: var(--accent-color);
    }

    .mb-item i {
        font-size: 1.2rem;
    }

    /* Adjust body padding for bottom nav */
    body {
        padding-bottom: 60px;
    }
}

/* Hide Mobile Bottom Nav on Desktop */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* ============================
   LANGUAGE DROPDOWN
   ============================ */
.lang-dropdown {
    position: relative;
    margin-left: 10px;
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: var(--font-body);
    min-width: 80px;
    justify-content: space-between;
}

.lang-toggle:hover {
    border-color: var(--accent-color);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1c29;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 5px 0;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 10000;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: background 0.2s;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.lang-item:last-child {
    border-bottom: none;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.lang-item.active {
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
}