:root {
    --bg-black: #0a0a0a;
    --bg-darker: #050505;
    --gold-primary: #D4AF37;
    --gold-secondary: #C5A028;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --text-primary: #ffffff;
    --text-gold: #D4AF37;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);
    --font-main: 'Outfit', 'Inter', sans-serif;
}

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

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

body {
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-logo-container {
    text-align: center;
    animation: scaleIn 1.5s ease-out;
}

.splash-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--gold-glow));
}

.logo-text {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem auto 0;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    position: absolute;
    width: 0%;
    height: 100%;
    background: var(--gold-primary);
    animation: progress 2.5s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--gold-primary);
    height: 2px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.gold-text {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-gold);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--gold-primary);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-dropdown button:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.nav-cta {
    background: var(--gold-gradient);
    color: var(--bg-black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pulsate {
    animation: pulsate 2s infinite ease-in-out;
}

@keyframes pulsate {
    0% {
        filter: drop-shadow(0 0 5px var(--gold-glow));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--gold-glow));
    }

    100% {
        filter: drop-shadow(0 0 5px var(--gold-glow));
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-black);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover,
.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--gold-glow);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    width: 100%;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

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

/* About Section */
.about-ea {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Bento Grid System */
.bento-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1.5rem;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

/* Relocated Site Background Visuals */
.site-background-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    right: -200px;
    opacity: 0.5;
    animation: floatingGlow 15s infinite alternate ease-in-out;
}

@keyframes floatingGlow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, 100px);
    }
}

/* Floating Background Logos */
.floating-platform-logo {
    position: absolute;
    width: 120px;
    height: auto;
    opacity: 0.15;
    filter: grayscale(1) brightness(2);
    pointer-events: none;
    z-index: -1;
    animation: floatLogo 20s infinite ease-in-out;
}

.mt4-bg {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.mt5-bg {
    top: 45%;
    right: 8%;
    animation-delay: -5s;
    width: 140px;
}

.tv-bg {
    bottom: 15%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(5deg);
    }

    66% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Hero Platform Showcase */
.platform-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.platform-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.platform-logo-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.platform-logo-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.platform-logo-item:hover {
    transform: translateY(-10px);
}

.platform-logo-item:hover img {
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
}

@media (max-width: 768px) {
    .platform-showcase {
        gap: 20px;
    }

    .platform-logo-item img {
        width: 70px;
        height: 70px;
    }

    .platform-logo-item span {
        font-size: 0.8rem;
    }

    .floating-platform-logo {
        width: 80px;
        opacity: 0.1;
    }
}

.bg-candles {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    opacity: 0.08;
}

.bg-candles .candle {
    width: 10px;
    background: #2ed573;
    border-radius: 2px;
    animation: candleGrow 4s infinite ease-in-out;
}

.bg-candles .candle.red {
    background: #ff4757;
}

.bg-growth-svg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    opacity: 0.05;
}

.bg-line-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 8s infinite forwards linear;
}

@keyframes candleGrow {

    0%,
    100% {
        height: 40px;
    }

    50% {
        height: 100px;
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.card-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    width: 100%;
}

.bento-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 100%), var(--glass-bg);
}

.card-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-gold);
}

.bento-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.card-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem !important;
    opacity: 0.03 !important;
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Results Bento Section */
.results-bento {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.results-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.result-bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.result-bento-card:hover {
    border-color: var(--gold-primary);
    transform: scale(1.02);
}

.result-bento-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.result-bento-info {
    padding: 2rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.tag.live {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
}

.result-bento-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
}

.result-bento-info p {
    color: var(--text-secondary);
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-primary);
}

.about-card i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Instructions Section */
.instructions {
    padding: 6rem 0;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-primary);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.step-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-link:hover {
    text-decoration: underline;
}

/* Installation CTA */
.installation-cta {
    padding: 4rem 0 8rem;
}

.cta-box {
    background: var(--gold-gradient);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: var(--bg-black);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-box .btn-gold {
    background: var(--bg-black);
    color: var(--gold-primary);
    box-shadow: none;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: -2rem auto 3rem;
    line-height: 1.6;
}

.comparison-container {
    overflow-x: auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-table th i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.comparison-table td {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.comparison-table td i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.gold-column {
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold-primary);
    font-weight: 600;
}

.text-red {
    color: #ff4757;
}

.comparison-cta {
    text-align: center;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.comparison-cta:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.comparison-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.comparison-cta .btn-gold {
    display: inline-block;
    margin-top: 1rem;
}

/* Results Section */
.results {
    padding: 6rem 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.result-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.result-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.result-card:hover .result-img {
    transform: scale(1.1);
}

.result-card:hover .result-overlay {
    transform: translateY(0);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--glass-bg);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    background: rgba(255, 255, 255, 0.01);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

/* Footer Improvements */
.footer {
    background: var(--bg-darker);
    padding: 5rem 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-socials a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--gold-primary);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 2rem;
    }

    .nav-toggle:checked~.nav-links {
        right: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(45deg);
        bottom: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .nav-actions {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

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

    .step-number {
        margin: 0 auto;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .card-large,
    .card-medium,
    .card-small {
        grid-column: span 1;
        min-height: 250px;
    }

    .results-bento-grid {
        grid-template-columns: 1fr;
    }

    .result-bento-card img {
        height: 220px;
    }

    .comparison-table {
        font-size: 0.85rem;
        min-width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }

    .comparison-table th i,
    .comparison-table td i {
        margin-right: 0.4rem;
        font-size: 0.9rem;
    }

    /* Hide less critical rows on mobile to reduce information density */
    /* Keep only: Working time, Psychological pressure, Error rate, Speed, Rest opportunity */
    /* Hide: Multi-market monitoring, Required skills, Risk management */
    .comparison-table tbody tr:nth-child(5),
    /* Multi-market monitoring */
    .comparison-table tbody tr:nth-child(7),
    /* Required skills */
    .comparison-table tbody tr:nth-child(8) {
        /* Risk management */
        display: none;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .comparison-cta {
        padding: 2rem 1.5rem;
    }

    .comparison-cta h3 {
        font-size: 1.5rem;
    }

    .comparison-cta p {
        font-size: 1rem;
    }

    /* Make all images and media responsive */
    img,
    video {
        max-width: 100%;
        height: auto;
    }

    .result-img,
    .result-bento-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .platform-logo-item img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .comparison-table th i,
    .comparison-table td i {
        display: none;
        /* Hide icons on very small screens for space */
    }

    .comparison-cta h3 {
        font-size: 1.3rem;
    }

    .comparison-cta p {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Ensure all media is fully responsive */
    img,
    video,
    iframe {
        max-width: 100% !important;
        height: auto !important;
    }

    .platform-logo-item img {
        width: 50px;
        height: 50px;
    }

    .result-bento-card img {
        height: 180px;
    }
}