/* MTrading.com Clean Style */

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

:root {
    --primary: #FF6B35;
    --primary-dark: #e55a2b;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background: #fff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 24px;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.link-login {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

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

.btn-signup {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

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

/* Hero */
.hero {
    padding: 100px 0 60px;
    background: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-text {
    padding-top: 40px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1f2e;
}

.hero-subtitle {
    color: var(--primary);
}

.hero-desc {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-image-mobile {
    max-width: 350px;
    margin: 30px 0;
}

.hero-image-mobile img {
    width: 100%;
}

.hero-cta {
    margin-top: 30px;
}

.btn-start {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 48px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
}

.btn-start:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Login Card */
.login-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.login-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1f2937;
    font-weight: 700;
}

.login-card input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 16px;
    transition: border 0.3s;
}

.login-card input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-login {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.login-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.login-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Trust Badges */
.trust-badges {
    background: #f9fafb;
    padding: 50px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.trust-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.trust-item p {
    font-size: 14px;
    color: #6b7280;
}

/* Bonus Features */
.bonus-features {
    background: white;
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1f2e;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.bonus-item {
    text-align: center;
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.bonus-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bonus-image img {
    max-width: 100%;
    max-height: 100%;
}

.bonus-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: 16px;
}

.bonus-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.bonus-cta {
    text-align: center;
    margin-top: 40px;
}

/* Features */
.features {
    background: #f9fafb;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1f2e;
}

.feature-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Awards */
.awards {
    background: white;
    padding: 80px 0;
}

.section-title-dark {
    font-size: 36px;
    font-weight: 800;
    color: #1a1f2e;
    text-align: center;
    margin-bottom: 48px;
}

.awards-image {
    max-width: 900px;
    margin: 0 auto;
}

.awards-image img {
    width: 100%;
}

/* Stats */
.stats {
    background: #f9fafb;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

/* Payments */
.payments {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.payments h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1f2e;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 45px;
    opacity: 0.6;
    transition: all 0.3s;
}

.payment-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 18px 56px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #1a1f2e;
    color: white;
    padding: 60px 0 32px;
}

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

.footer-logo {
    height: 28px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.risk-warning {
    font-size: 12px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 38px;
    }

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

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
