:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #3B82F6;
    --secondary-color: #1E293B;
    --accent-color: #10B981;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --background: #FFFFFF;
    --background-alt: #F8FAFC;
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%232563EB" stop-opacity="0.1"/><stop offset="100%" stop-color="%232563EB" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: #3B82F6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #3B82F6;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #E2E8F0;
    font-weight: 500;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #94A3B8;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trading-dashboard {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-title {
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-status {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-status.online {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.profit-display {
    margin-bottom: 1.5rem;
}

.profit-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.profit-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.profit-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.profit-change.positive {
    color: var(--success-color);
}

.chart-container {
    height: 150px;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary.large,
.btn-outline.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary.xl,
.btn-outline.xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--background-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-highlight {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: white;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.step-connector {
    width: 2px;
    height: 100px;
    background: var(--border-color);
    margin-top: 1rem;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    padding-top: 0.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--background-alt);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23FFFFFF" stop-opacity="0.1"/><stop offset="100%" stop-color="%23FFFFFF" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="200" fill="url(%23b)"/><circle cx="900" cy="900" r="300" fill="url(%23b)"/></svg>');
    opacity: 0.5;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-guarantee i {
    color: var(--success-color);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 4rem 2rem;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step p {
    color: #4a5568;
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem !important;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-brand.logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 16px rgba(0, 180, 255, 0.25)) drop-shadow(0 0px 4px #0ea5e9);
    background: transparent;
    border-radius: 12px;
    transition: filter 0.3s;
}

.logo-img:hover {
    filter: drop-shadow(0 4px 24px rgba(0, 180, 255, 0.45)) drop-shadow(0 0px 8px #38bdf8);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 12px rgba(0, 180, 255, 0.18)) drop-shadow(0 0px 2px #0ea5e9);
    background: transparent;
    border-radius: 10px;
    transition: filter 0.3s;
}

.footer-logo:hover {
    filter: drop-shadow(0 4px 24px rgba(0, 180, 255, 0.35)) drop-shadow(0 0px 8px #38bdf8);
}

.footer-description {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    justify-content: center;
}

.footer-quote {
    width: 100%;
    text-align: center;
    padding: 2.5rem 0 1.5rem 0;
}

.footer-quote q {
    color: #38bdf8;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(30, 58, 138, 0.13);
}


.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--primary-light);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.footer-brand {
    flex: 1 1 320px;
    min-width: 260px;
}

.footer-quote {
    flex: 2 1 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin-left: 2rem;
    min-height: 90px;
}

.footer-quote q {
    color: #38bdf8;
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(30, 58, 138, 0.12);
    margin: 0;
    padding: 0 0 0 0.5rem;
    border-left: 3px solid #38bdf8;
    background: transparent;
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-quote {
        margin-left: 0;
        justify-content: center;
        min-height: unset;
        padding: 1.5rem 0 0 0;
    }
    .footer-quote q {
        font-size: 1.1rem;
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
}


.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

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

.disclaimer-text {
    color: #94A3B8;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--warning-color);
}

.copyright-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-text {
    color: #64748B;
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: justify;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.challenge-rules {
    padding: 4rem 0 3rem 0;
    background: linear-gradient(120deg, #1e293b 60%, #0f172a 100%);
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.rule-card.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    padding: 4rem 0 3rem 0;
    background: linear-gradient(120deg, #1e293b 60%, #0f172a 100%);
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.challenge-rules .section-header {
    margin-bottom: 2.5rem;
}

.challenge-rules .section-title {
    color: #f1f5f9;
    text-shadow: 0 2px 12px rgba(30, 58, 138, 0.16);
}

.challenge-rules .section-subtitle {
    color: #cbd5e1;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(30,58,138,0.10);
}

.rules-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.rule-card {
    background: rgba(30, 58, 138, 0.12);
    border: 1.5px solid #334155;
    border-radius: 1.1rem;
    padding: 1.4rem 2.2rem;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 24px 0 rgba(0,180,255,0.05);
    transition: border 0.2s, box-shadow 0.2s;
}

.rule-card:hover {
    border: 1.5px solid #0ea5e9;
    box-shadow: 0 4px 32px 0 rgba(14,165,233,0.12);
}

.rule-title {
    color: #e0e7ef;
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-align: center;
}

.rule-value {
    color: #38bdf8;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
}

@media (max-width: 700px) {
    .rules-list {
        flex-direction: column;
        gap: 1.1rem;
        align-items: center;
    }
    .rule-card {
        min-width: 0;
        width: 95%;
        padding: 1rem 1.2rem;
    }
}

.tradelocker-section {
    padding: 4rem 0 3rem 0;
    background: linear-gradient(120deg, #1e293b 60%, #0f172a 100%);
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.tradelocker-section .section-header {
    margin-bottom: 2.5rem;
}

.tradelocker-section .section-title {
    color: #f1f5f9;
    text-shadow: 0 2px 12px rgba(30, 58, 138, 0.16);
}

.tradelocker-section .section-subtitle {
    color: #cbd5e1;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(30,58,138,0.10);
}

.tradelocker-benefits ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 0 0 2.5rem 0;
    padding: 0;
    list-style: none;
}

.tradelocker-benefits li {
    background: rgba(30, 58, 138, 0.12);
    border: 1.5px solid #334155;
    border-radius: 1.1rem;
    padding: 1.2rem 2rem;
    min-width: 220px;
    max-width: 320px;
    color: #e0e7ef;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 24px 0 rgba(0,180,255,0.05);
    transition: border 0.2s, box-shadow 0.2s;
    text-align: center;
}

.tradelocker-benefits li:hover {
    border: 1.5px solid #0ea5e9;
    box-shadow: 0 4px 32px 0 rgba(14,165,233,0.12);
}

.tradelocker-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.7rem;
    background: #1e293b;
    color: #38bdf8;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1.5px solid #334155;
    border-radius: 1.1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 24px 0 rgba(0,180,255,0.05);
}

.download-btn:hover {
    background: #0ea5e9;
    color: #fff;
    border: 1.5px solid #38bdf8;
    box-shadow: 0 4px 32px 0 rgba(14,165,233,0.13);
}

.download-btn i {
    font-size: 1.4rem;
}

@media (max-width: 700px) {
    .tradelocker-benefits ul {
        flex-direction: column;
        gap: 1.1rem;
        align-items: center;
    }
    .tradelocker-benefits li {
        min-width: 0;
        width: 95%;
        padding: 1rem 1.2rem;
    }
    .tradelocker-downloads {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .btn-primary.xl,
    .btn-outline.xl {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

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

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

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

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