/* Hero */
.hero {
    background: linear-gradient(120deg, rgba(26,34,54,0.92) 0%, rgba(35,39,43,0.85) 100%), url('https://images.unsplash.com/photo-1621961454420-6c9b3b1e1b6b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    color: #fff;
    padding: 120px 0 90px 0;
    position: relative;
    text-align: center;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero::after {
        display: none;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 22px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 1px 0 #23272b;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 38px;
    font-weight: 400;
    color: #e9ecef;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.hero .cta-btn {
    background: linear-gradient(90deg, var(--main-orange) 60%, var(--main-accent) 100%);
    color: #fff;
    border: none;
    padding: 18px 48px;
    border-radius: 32px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 6px 32px rgba(255,184,77,0.18), 0 2px 8px rgba(0,0,0,0.10);
    margin-bottom: 38px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

    .hero .cta-btn:hover {
        background: linear-gradient(90deg, #e69500 60%, #ffb84d 100%);
        box-shadow: 0 8px 36px rgba(255,184,77,0.28), 0 2px 8px rgba(0,0,0,0.13);
        transform: translateY(-2px) scale(1.04);
    }

.hero .phone-img {
    margin-top: 40px;
    max-width: 240px;
    border-radius: 22px;
    box-shadow: 0 12px 48px rgba(255,184,77,0.18), 0 8px 32px rgba(0,0,0,0.18);
    border: 7px solid #fff;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 0 24px #ffb84d88);
}


/* --- 12% TRADING FEES SECTION UPGRADE --- */
.fees-section {
    background: #f8f9fa;
    text-align: center;
    padding: 10px 10px 10px 10px;
}

.fees-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(26,34,54,0.10), 0 2px 8px rgba(0,0,0,0.04);
    margin:auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 30px 30px 30px;
}

.fees-card-content {
    flex: 1 1 260px;
    min-width: 260px;
    text-align: left;
}

.fees-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--main-orange);
    margin-bottom: 18px;
}

.fees-card-desc {
    font-size: 1.13rem;
    color: #23272b;
    margin-bottom: 22px;
}

.fees-card .cta-btn {
    margin-bottom: 0;
    margin-top: 10px;
}

.fees-card-chart {
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fees-card-chart-img {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(255,184,77,0.13), 0 4px 18px rgba(0,0,0,0.10);
    border: 6px solid #fff;
}

@media (max-width: 900px) {
    .fees-card {
        flex-direction: column;
        gap: 24px;
        padding: 24px 10px 18px 10px;
    }

    .fees-card-content {
        text-align: center;
    }
}

/* Buttons */
.cta-btn {
    background: #e69500;
    color: #fff;
    border: none;
    padding: 14px 38px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-bottom: 30px;
    margin-top: 10px;
}

    .cta-btn:hover {
        background: #e69500;
    }