:root {
    --primary-light: #f8fafc;
    --secondary-light: #f1f5f9;
    --purple-light: #f3e8ff;
    --blue-light: #dbeafe;
    --amber-light: #fffbeb;
    --purple: #9333ea;
    --blue: #2563eb;
    --amber: #d97706;
    --red: #dc2626;
    --green: #10b981;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #ffffff;
    --border-light: #e2e8f0;
    --card-bg: #ffffff;
    --gradient-start: #f3e8ff;
    --gradient-end: #dbeafe;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.05);
}

.container {
    margin: 0 auto;
}

/* Hero Section */
.trading-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f3e8ff, #dbeafe, #fff4e6);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.trading-hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.trading-gradient-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(100px);
}

.trading-blob-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(147, 51, 234, 0.2);
    animation: trading-pulse 4s infinite;
}

.trading-blob-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(37, 99, 235, 0.2);
    animation: trading-pulse 4s infinite 1s;
}

.trading-blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16rem;
    height: 16rem;
    background-color: rgba(217, 119, 6, 0.15);
    opacity: 0.4;
}

.trading-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trading-hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trading-gradient-text {
    background: linear-gradient(to right, var(--purple), var(--blue), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trading-hero-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trading-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.trading-badge span {
    font-size: 0.875rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trading-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-weight: bold;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.trading-btn-primary {
    background: linear-gradient(45deg, var(--purple), var(--blue));
    color: white;
}

.trading-btn-primary:hover {
    background: linear-gradient(45deg, #7e22ce, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}

.trading-text {
    text-decoration: none;
    color: white;
}

/* Stats Section */
.trading-stats-section {
    padding: 5rem 2rem;
    background-color: white;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trading-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.trading-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.trading-stat-card:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.trading-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
}

.trading-stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trading-stat-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.why-choose-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-choose-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-choose-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.why-choose-card:hover {
    border-color: var(--amber);
    transform: translateY(-4px);
    box-shadow: 0 20px 30px rgba(217, 119, 6, 0.1);
}

.why-choose-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    margin-bottom: 1.5rem;
}

.why-choose-icon i {
    color: var(--amber);
    font-size: 1.5rem;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-choose-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.trading-contact-main {
    padding-top: 30px !important;
}

.trading-main-contact {
    display: flex;
    gap: 10px;
    justify-content: space-around;
    align-items: center;
}

/* Form Section */
.trading-form-section {
    padding: 6rem 2rem;
    background-color: white;
}

.trading-form-container {
    max-width: 48rem;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.trading-form-header {
    background: linear-gradient(to right, #f3e8ff, #dbeafe);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.trading-form-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--text-dark);
}

.trading-form-subtitle {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 0;
}

.trading-form-body {
    padding: 2rem;
}

.trading-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.trading-form-group {
    display: flex;
    flex-direction: column;
}

.trading-form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trading-form-input {
    padding: 0.75rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
    font-size: 1rem;
}

.trading-form-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.trading-form-input::placeholder {
    color: #a0aec0;
}

.trading-form-fullwidth {
    grid-column: span 2;
}

.trading-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.trading-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.trading-checkbox-input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--purple);
}

.trading-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.trading-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.trading-radio-input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--purple);
}

.trading-form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--purple), var(--blue));
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.trading-form-submit:hover {
    background: linear-gradient(45deg, #7e22ce, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}

/* Contact Section */
.trading-contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.trading-contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
}

.trading-contact-info {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.trading-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trading-contact-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}

.trading-contact-icon-purple {
    background: var(--purple-light);
    color: var(--purple);
}

.trading-contact-icon-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.trading-contact-icon-amber {
    background: var(--amber-light);
    color: var(--amber);
}

.trading-contact-item h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trading-contact-item p {
    color: var(--text-gray);
}

/* Disclaimer Section */
.trading-disclaimer-section {
    padding: 4rem 2rem;
    background: white;
}

.trading-disclaimer-box {
    background: linear-gradient(135deg, #fffbeb, #fff4e6);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.trading-disclaimer-content {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.trading-disclaimer-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.trading-disclaimer-icon i {
    color: var(--amber);
}

.trading-disclaimer-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--amber);
}

.trading-disclaimer-text p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Animations */
@keyframes trading-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

@keyframes trading-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.trading-floating {
    animation: trading-float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trading-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trading-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .trading-hero-text h1 {
        font-size: 2.5rem;
    }

    .trading-stats-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .trading-form-grid {
        grid-template-columns: 1fr;
    }

    .trading-form-fullwidth {
        grid-column: span 1;
    }

    .why-choose-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .trading-hero {
        padding: 2rem 1rem;
    }

    .trading-hero-text h1 {
        font-size: 2rem;
    }

    .trading-form-body {
        padding: 1.5rem;
    }

    .trading-main-contact {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .trading-disclaimer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}