/* QuantumTrade - Main Stylesheet */

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

:root {
    --primary-blue: #003d7a;
    --secondary-blue: #0066b3;
    --light-blue: #e8f4fc;
    --accent-orange: #e67e22;
    --accent-cyan: #00bcd4;
    --text-dark: #1a1a2e;
    --text-gray: #666;
    --white: #ffffff;
    --bg-light: #f5f8fa;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-orange:hover {
    background: #d35400;
}

.btn-blue {
    background: var(--secondary-blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-outline:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
    padding: 15px 40px;
    font-weight: 600;
}

.btn-white:hover {
    background: var(--light-blue);
}

.btn-orange-solid {
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 35px;
    font-size: 16px;
}

.btn-orange-solid:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
    padding: 12px 30px;
}

.btn-outline-blue:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

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

.header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--secondary-blue);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 12px 0;
    border-bottom: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    margin-right: 25px;
    color: var(--text-dark);
    font-size: 14px;
}

.top-bar-left a:hover {
    color: var(--secondary-blue);
}

.top-bar-left a.active-link {
    color: var(--secondary-blue);
    border-bottom: 2px solid var(--secondary-blue);
    padding-bottom: 2px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
}

.icon-link:hover {
    background: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    margin-top: 5px;
}

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

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
}

.dropdown-menu a.dropdown-info {
    color: var(--accent-cyan);
    font-size: 13px;
}

.dropdown-menu a.dropdown-info:hover {
    color: var(--white);
}

/* Mega Menu */
.mega-dropdown {
    position: static;
}

.mega-trigger {
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.mega-trigger::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-blue);
    transition: width 0.3s ease;
}

.mega-dropdown:hover .mega-trigger::after {
    width: 100%;
}

.mega-dropdown:hover .mega-trigger {
    color: var(--secondary-blue);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--secondary-blue);
}

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

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
}

.mega-header {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mega-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mega-column a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mega-column a:hover {
    color: var(--secondary-blue);
    padding-left: 10px;
}

.mega-column a .dot {
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.mega-column a.has-submenu {
    justify-content: flex-start;
}

.mega-column a.has-submenu i {
    margin-left: auto;
    font-size: 12px;
    color: var(--primary-blue);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right .btn-orange {
    background: var(--accent-orange);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 25px;
}

.header-right .btn-orange:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-blue);
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--secondary-blue);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-right>a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.header-right>a:hover {
    color: var(--secondary-blue);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
}

.search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 80px;
    color: var(--text-gray);
}

/* Ticker Bar */
.ticker-bar {
    background: #0a0a0a;
    border-bottom: 1px solid #222;
    overflow: hidden;
    padding: 12px 0;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.ticker-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.ticker-value {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.ticker-change {
    font-size: 12px;
    font-weight: 500;
}

.ticker-change.positive {
    color: #27ae60;
}

.ticker-change.negative {
    color: #e74c3c;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    padding: 60px 0 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left h1 {
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-left h2 {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-line {
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
    margin-bottom: 30px;
}

.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.info-box {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    padding: 20px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
}

.info-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.hero-right {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: left;
}

.brand-name {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-orange);
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-sub {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: var(--secondary-blue);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-blue);
    width: 30px;
    border-radius: 5px;
}

/* Easy Investment Section */
.easy-investment {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.easy-investment h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.8;
}

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

.step {
    text-align: center;
}

.step-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-icon i {
    font-size: 45px;
    color: var(--accent-cyan);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid var(--white);
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Products Section */
.products-section {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.products-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.products-section .section-desc {
    color: var(--text-gray);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.product-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.tab-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-section .section-desc {
    text-align: center;
    color: var(--secondary-blue);
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-question span {
    font-size: 15px;
}

.faq-question i {
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    margin-bottom: 30px;
}

.footer-logo .logo-icon {
    background: var(--secondary-blue);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    z-index: 999;
}

.fixed-btn {
    position: fixed;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.live-support {
    bottom: 30px;
    left: 30px;
    background: var(--secondary-blue);
    color: var(--white);
}

.live-support:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
}

.quick-actions {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: var(--secondary-blue);
    color: var(--white);
    border-radius: 0 0 15px 15px;
}

.quick-actions:hover {
    background: var(--primary-blue);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left h2 {
        font-size: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .mega-menu {
        position: fixed;
        width: 100vw;
        left: 0;
    }

    .mega-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 12px 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border-bottom: none;
    }

    .top-bar .container {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: auto;
    }

    .top-bar-right .icon-link {
        display: flex;
        width: 40px;
        height: 40px;
        background: var(--light-blue);
        border: none;
        flex-shrink: 0;
    }

    .top-bar-right .icon-link.phone-icon {
        background: var(--secondary-blue);
        color: #fff;
    }

    .top-bar-right .icon-link.wp-icon {
        background: #25D366;
        color: #fff;
    }

    .top-bar-right .dropdown {
        flex-shrink: 0;
    }

    .top-bar-right .dropdown .btn {
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .top-bar-right>.btn-blue {
        display: none;
    }

    .top-bar-right>.btn-outline {
        display: none;
    }

    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
    }

    .header-left {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: auto;
        flex: 1;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        margin-left: 10px;
    }

    .logo {
        justify-content: flex-start;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .logo-text {
        font-size: 16px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 25px 30px;
        gap: 0;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav a,
    .main-nav .mega-trigger {
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        display: block;
        width: 100%;
    }

    .main-nav .mega-dropdown {
        width: 100%;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mega-dropdown.active .mega-menu {
        max-height: 500px;
    }

    .mega-menu-inner {
        padding: 15px 0;
    }

    .mega-header {
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .mega-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mega-column a {
        padding: 10px 0;
        font-size: 14px;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    .header-right {
        display: flex;
    }

    .header-right .btn-orange {
        padding: 8px 16px;
        font-size: 12px;
    }

    .ticker-bar {
        padding: 10px 0;
        background: #0a0a0a;
    }

    .ticker-item {
        gap: 8px;
    }

    .ticker-label {
        font-size: 11px;
        color: #666;
    }

    .ticker-value {
        font-size: 12px;
        color: #fff;
    }

    .ticker-change {
        font-size: 11px;
    }

    .hero-section {
        padding: 30px 0 20px;
    }

    .hero-left h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-left h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .hero-line {
        margin: 0 auto 20px;
        width: 60px;
    }

    .info-boxes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .info-box {
        padding: 15px;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 18px;
    }

    .hero-image {
        border-radius: 12px;
    }

    .hero-image img {
        height: 250px;
    }

    .brand-name {
        font-size: 32px;
    }

    .brand-sub {
        font-size: 22px;
    }

    .hero-nav {
        margin-top: 25px;
        gap: 20px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .easy-investment {
        padding: 50px 0;
    }

    .easy-investment h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .steps {
        margin-top: 40px;
        padding: 0 10px;
    }

    .step-icon {
        width: 90px;
        height: 90px;
    }

    .step-icon i {
        font-size: 35px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 13px;
    }

    .products-section {
        padding: 50px 0;
    }

    .products-section h2 {
        font-size: 26px;
    }

    .product-tabs {
        gap: 8px;
        margin: 25px 0 20px;
    }

    .tab-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .product-content {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .tab-content h3 {
        font-size: 20px;
    }

    .tab-content p {
        font-size: 14px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-section h2 {
        font-size: 26px;
    }

    .faq-list {
        padding: 0 10px;
    }

    .faq-question {
        padding: 15px 18px;
    }

    .faq-question span {
        font-size: 14px;
        padding-right: 10px;
    }

    .faq-answer p {
        padding: 0 18px 15px;
        font-size: 13px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-col a {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-col a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .fixed-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .live-support {
        bottom: 15px;
        left: 15px;
    }

    .quick-actions {
        display: none;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-white {
        padding: 12px 25px;
    }

    .btn-orange-solid {
        padding: 12px 25px;
        font-size: 14px;
    }

    .dropdown-menu {
        min-width: 220px;
    }

    .dropdown-menu a {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .top-bar-left a {
        font-size: 11px;
    }

    .icon-link {
        width: 35px;
        height: 35px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .logo-text {
        font-size: 14px;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .hero-left h1 {
        font-size: 20px;
    }

    .hero-left h2 {
        font-size: 14px;
    }

    .hero-image img {
        height: 200px;
    }

    .brand-name {
        font-size: 26px;
    }

    .brand-sub {
        font-size: 18px;
    }

    .easy-investment h2 {
        font-size: 22px;
    }

    .products-section h2 {
        font-size: 22px;
    }

    .faq-section h2 {
        font-size: 22px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-icon i {
        font-size: 30px;
    }

    .live-support {
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 11px;
    }
}