/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    background-color: #020203;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* --- MAIN CONTENT WRAPPER --- */
.main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-content.slide-active {
    transform: translateX(280px);
}

/* --- FROSTED GLASS CARD BASE --- */
.fx-card {
    background: rgba(8, 8, 20, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-card:hover {
    background: rgba(12, 12, 28, 0.8);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 
        0 35px 55px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

/* --- SIDEBAR OVERLAY --- */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- SLIDING SIDEBAR --- */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: rgba(6, 6, 16, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 30px 25px 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.sidebar-logo-img {
    width: 100px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    opacity: 0.85;
    filter: brightness(0.8) contrast(1.2);
}

.sidebar-brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.sidebar-nav {
    list-style: none;
    padding: 20px 0;
    flex: 1;
}

.sidebar-nav li {
    margin: 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-nav a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
}

.sidebar-nav a:hover {
    background: rgba(212, 175, 55, 0.05);
    color: #d4af37;
    border-left-color: #d4af37;
}

.sidebar-nav a:hover::before {
    background: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.sidebar-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    text-align: center;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 8, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.slide-active {
    transform: translateX(280px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1002;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    padding: 7px 16px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.btn-signup {
    padding: 7px 16px;
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
}

.btn-signup:hover {
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 10px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: #d4af37;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: rgba(212, 175, 55, 0.05);
}

.hero h1 {
    font-size: clamp(30px, 8vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 50%, #b8942e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.hero-subtitle {
    font-size: clamp(13px, 2.5vw, 16px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 28px;
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

/* --- PERFORMANCE SECTION --- */
.performance-section {
    padding: 5px 20px 5px;
    text-align: center;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto 12px;
    padding: 0 10px;
}

.perf-card {
    padding: 14px 12px;
    text-align: center;
}

.perf-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(212, 175, 55, 0.7);
    margin-bottom: 6px;
}

.perf-value {
    font-size: 24px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.perf-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

.perf-change-positive {
    color: #26a69a;
    font-size: 10px;
    font-weight: 600;
}

.perf-change-negative {
    color: #ef5350;
    font-size: 10px;
    font-weight: 600;
}

.perf-change-neutral {
    color: #d4af37;
    font-size: 10px;
    font-weight: 600;
}

/* --- FOREX TICKER CARD --- */
.forex-ticker-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.forex-ticker-card {
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
}

.ticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ticker-pair {
    font-size: 20px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticker-pair.animating {
    transform: translateX(30px);
    opacity: 0;
}

.ticker-price {
    font-size: 26px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticker-price.animating {
    transform: translateX(30px);
    opacity: 0;
}

.ticker-change {
    font-size: 13px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    padding: 3px 8px;
    border-radius: 3px;
}

.ticker-change.up {
    color: #26a69a;
    background: rgba(38, 166, 154, 0.1);
}

.ticker-change.down {
    color: #ef5350;
    background: rgba(239, 83, 80, 0.1);
}

.ticker-chart-container {
    width: 100%;
    height: 90px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.ticker-chart-container svg {
    width: 100%;
    height: 100%;
}

.ticker-chart-container svg path {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticker-chart-container.animating svg path {
    transform: translateX(30px);
    opacity: 0;
}

.ticker-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.ticker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.ticker-dot.active {
    background: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

.ticker-dot:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* --- PAYMENT METHODS --- */
.payment-methods-section {
    padding: 10px 20px 10px;
    text-align: center;
}

.payment-methods-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.payment-methods-card {
    padding: 18px 16px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.payment-method-item {
    padding: 12px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.3s ease;
}

.payment-method-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
}

.payment-method-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.payment-method-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.payment-method-network {
    font-size: 9px;
    color: rgba(212, 175, 55, 0.6);
    letter-spacing: 1px;
}

/* --- PLANS SECTION --- */
.plans-section {
    padding: 10px 20px 40px;
    text-align: center;
}

.section-title {
    font-size: clamp(26px, 6vw, 38px);
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-size: clamp(12px, 2vw, 14px);
    padding: 0 15px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 10px;
}

.plan-card {
    padding: 25px 18px;
    text-align: center;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #d4af37;
    text-transform: uppercase;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.plan-range {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.plan-duration {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    font-size: 10px;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.plan-return {
    font-size: 26px;
    font-weight: 800;
    color: #26a69a;
    font-family: 'JetBrains Mono', monospace;
    margin: 6px 0;
}

.plan-price {
    font-size: 32px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0 2px;
}

.plan-period {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    margin-bottom: 14px;
}

.plan-features {
    list-style: none;
    margin: 14px 0;
    text-align: left;
}

.plan-features li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.plan-features li::before {
    content: '\2713';
    color: #26a69a;
    margin-right: 8px;
    font-weight: bold;
}

.plan-features li .feature-highlight {
    color: #d4af37;
    font-weight: 600;
}

.plan-btn {
    width: 100%;
    padding: 11px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
}

.plan-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.plan-btn.featured {
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #000;
    border: none;
}

.plan-btn.featured:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.view-more-plans {
    margin-top: 20px;
}

.view-more-link {
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 8px 22px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    display: inline-block;
}

.view-more-link:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 10px 20px 40px;
    text-align: center;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: left;
}

.faq-item {
    padding: 0;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 16px 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #d4af37;
}

.faq-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    color: rgba(212, 175, 55, 0.6);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: #d4af37;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 18px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 18px 16px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.6;
}

/* --- FOOTER --- */
.footer {
    padding: 40px 25px 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(2, 2, 3, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-size: 12px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.social-link:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.footer-col h4 {
    color: #d4af37;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.contact-info {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 10px;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 12px;
    }

    .nav-buttons .btn-login,
    .nav-buttons .btn-signup {
        padding: 6px 12px;
        font-size: 10px;
    }

    .hero {
        padding: 60px 15px 8px;
        min-height: auto;
    }

    .hero h1 { font-size: 26px; }
    .hero-subtitle { font-size: 12px; padding: 0 8px; }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 11px 22px;
        font-size: 12px;
    }

    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .perf-value { font-size: 18px; }
    .ticker-pair { font-size: 16px; }
    .ticker-price { font-size: 20px; }
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .plans-section { padding: 8px 15px 30px; }
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
        gap: 14px;
    }

    .plan-card { padding: 22px 16px; }
    .plan-price { font-size: 28px; }
    .plan-return { font-size: 22px; }
    .footer { padding: 30px 15px 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .footer-bottom-links { justify-content: center; }
    .section-title { font-size: 22px; }
    .section-subtitle { font-size: 11px; margin-bottom: 16px; }
    .faq-question { font-size: 12px; padding: 14px 16px; }
    .faq-answer p { font-size: 11px; }

    .sidebar { width: 260px; left: -260px; }
    .main-content.slide-active { transform: translateX(260px); }
    .navbar.slide-active { transform: translateX(260px); }
}

@media (max-width: 480px) {
    .navbar { padding: 6px 10px; }
    .btn-login, .btn-signup { padding: 5px 10px; font-size: 10px; }
    .hero { padding: 55px 10px 6px; }
    .hero h1 { font-size: 22px; }
    .hero-badge { font-size: 8px; padding: 4px 10px; letter-spacing: 2px; }
    .performance-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .perf-card { padding: 10px 8px; }
    .perf-value { font-size: 16px; }
    .ticker-pair { font-size: 14px; }
    .ticker-price { font-size: 18px; }
    .payment-methods-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .payment-method-item { padding: 10px 8px; }
    .payment-method-icon { font-size: 20px; }
    .payment-method-name { font-size: 10px; }
    .plan-card { padding: 18px 12px; }
    .plan-features li { font-size: 10px; padding: 5px 0; }
    .faq-section { padding: 8px 10px 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-col h4 { margin-bottom: 8px; }
    .social-links { justify-content: center; }
    .sidebar { width: 250px; left: -250px; }
    .main-content.slide-active { transform: translateX(250px); }
    .navbar.slide-active { transform: translateX(250px); }
}

@media (min-width: 769px) {
    .hero { padding: 60px 20px 5px; min-height: 55vh; }
    .performance-section { padding: 3px 20px 3px; }
    .payment-methods-section { padding: 5px 20px 5px; }
    .plans-section { padding: 5px 20px 35px; }
    .faq-section { padding: 5px 20px 35px; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(8, 8, 20, 0.5);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) rgba(8, 8, 20, 0.5);
}