/* Stock Indices Page Styles */
:root {
    --primary-red: #FF444F;
    --dark-bg: #0E0E0E;
    --darker-bg: #414652;
    --light-bg: #F4F4F6;
    --text-dark: #333333;
    --text-light: #999999;
    --text-white: #FFFFFF;
    --border-color: #E6E9E9;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
}

/* Fix Login Button for Deposits Page - Light Theme */
[data-theme="light"] .header-1 .btn-login {
    color: #333333 !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

[data-theme="light"] .header-1 .btn-login:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    color: #000000 !important;
}

/* Dark theme - keep white text */
[data-theme="dark"] .header-1 .btn-login {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="light"] {
    --light-bg: #F4F4F6;
    --text-dark: #333333;
    --border-color: #E6E9E9;
    --bg-dark: #ffffff;
    --bg-darker: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
}

[data-theme="dark"] {
    --light-bg: #0a0a0a;
    --text-dark: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    border-radius: 0;
}

/* Override for deposits hero */
.deposits-hero.hero-section {
    height: auto;
    min-height: auto;
    overflow: visible;
}

/* Deposits Hero Section - Light Background with Grid */
.deposits-hero {
    background: #f7f8fb;
    min-height: auto;
    height: auto;
    padding: 100px 2rem 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .deposits-hero {
    background: #0a0a0a;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 68, 79, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 68, 79, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    z-index: 0;
}

[data-theme="dark"] .hero-grid-pattern {
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    opacity: 0.3;
}

.deposits-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.deposits-hero-center {
    text-align: center;
    z-index: 2;
}

.deposits-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

[data-theme="light"] .deposits-hero-title {
    color: #0f172a !important;
}

[data-theme="dark"] .deposits-hero-title {
    color: #ffffff !important;
}

.deposits-hero-subtitle {
    font-size: 1.25rem;
    color: #333333 !important;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

[data-theme="light"] .deposits-hero-subtitle {
    color: #333333 !important;
}

[data-theme="dark"] .deposits-hero-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Currency Symbols */
.currency-symbol {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.currency-symbol:hover {
    transform: scale(1.05);
    opacity: 1;
}

.currency-symbol svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.currency-symbol-left {
    justify-content: flex-end;
    padding-right: 1rem;
}

.currency-symbol-right {
    justify-content: flex-start;
    padding-left: 1rem;
}

.deposits-hero-left,
.deposits-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scrolled state - add rounded corners and padding */
.hero-section.hero-scrolled {
    margin: 0 20px;
    border-radius: 24px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section.hero-scrolled {
        margin: 0 40px;
        border-radius: 32px;
    }
}

@media (min-width: 1024px) {
    .hero-section.hero-scrolled {
        margin: 0 60px;
        border-radius: 40px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.9) blur(1.5px);
    background-image: url('../assets/images/stocks.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    will-change: transform, opacity;
    transition: opacity 0.1s ease-out;
    margin-top: 4rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Override for deposits hero in light theme */
.hero-title.deposits-hero-title {
    color: #0f172a !important;
}

[data-theme="light"] .hero-title.deposits-hero-title {
    color: #0f172a !important;
}

[data-theme="dark"] .hero-title.deposits-hero-title {
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Override for deposits hero in light theme */
.hero-subtitle.deposits-hero-subtitle {
    color: #333333 !important;
}

[data-theme="light"] .hero-subtitle.deposits-hero-subtitle {
    color: #333333 !important;
}

[data-theme="dark"] .hero-subtitle.deposits-hero-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.75rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 0px;
}

.hero-btn-primary {
    background: #FF444F;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 68, 79, 0.35);
}

.hero-btn-primary:hover {
    background: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 68, 79, 0.45);
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-device {
    margin-top: 0rem;
    display: flex;
    justify-content: center;
    /* margin-bottom: -10px; */
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.device-mockup {
    width: 400px;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: -35px;
}

.device-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Why Trade Section */
.why-trade-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .why-trade-section {
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    border-radius: 12px;
    padding: 2.5rem 2.5rem 0rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-dark {
    background: #0E0E0E;
    color: #ffffff;
}

.feature-dark .feature-title,
.feature-dark .feature-desc {
    color: #ffffff;
}

[data-theme="light"] .feature-dark {
    background: #0E0E0E;
    color: #ffffff;
}

.feature-light {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-light {
    background: #ffffff;
    color: #333333;
    border: 1px solid #E6E9E9;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .feature-light {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-red {
    background: #FF444F;
    color: #ffffff;
}

.feature-red .feature-title,
.feature-red .feature-desc {
    color: #ffffff;
}

[data-theme="light"] .feature-red {
    background: #FF444F;
    color: #ffffff;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.feature-image {
    display: flex;
    justify-content: flex-end;
}

.feature-img {
    max-width: 250px;
    object-fit: contain;
}

.feature-light img{
    max-width: 150%;
    width: 100%;
}

/* What We Offer Section */
.what-offer-section {
    padding: 5rem 2rem;
    background: #F4F4F6;
    position: relative;
    z-index: 1;
}

.section-stocks-steps {
    padding-bottom: 2vh;
}

[data-theme="dark"] .what-offer-section {
    background: var(--bg-darker);
}

.offer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.offer-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

[data-theme="dark"] .offer-section-title {
    color: #ffffff;
}

/* Stocks Cards Sticky Animation */
.stocks-cards {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stocks-step-trigger {
    position: absolute;
    inset: 0;
    z-index: -1;
    height: 100%;
}

.stocks-card-wrapper {
    position: sticky;
    top: 0%;
}

.stocks-card-wrapper.stocks-wrapper-1 {
    top: 15%;
    z-index: 1;
}

.stocks-card-wrapper.stocks-wrapper-2 {
    top: 18%;
    z-index: 2;
}

.stocks-card-wrapper.stocks-wrapper-3 {
    top: 21%;
    z-index: 3;
}

.stocks-card-wrapper.stocks-wrapper-4 {
    top: 24%;
    z-index: 4;
}

.stocks-card-wrapper.stocks-wrapper-5 {
    top: 27%;
    z-index: 5;
}

.stocks-card-wrapper.stocks-wrapper-6 {
    top: 30%;
    z-index: 6;
}

.stocks-card {
    position: static;
    border-radius: 24px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    margin-bottom: 15vh;
    transition: all 0.4s ease;
}

.stocks-card-wrapper.stocks-wrapper-3 .stocks-card {
    margin-bottom: 15vh;
}

.stocks-card-wrapper.stocks-wrapper-6 .stocks-card {
    margin-bottom: 5vh;
}

.mt5-start-trading {
    padding: 5rem 2rem;
    background: #ffffff;
}

[data-theme="dark"] .mt5-start-trading {
    background: #0d0f1a;
}

.mt5-start-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.mt5-start-kicker {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

[data-theme="dark"] .mt5-start-kicker {
    color: #e2e8f0;
}

.mt5-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7ef;
}

[data-theme="dark"] .mt5-step {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mt5-step:last-child {
    border-bottom: none;
}

.mt5-step-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #ff444f;
    color: #ffffff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.mt5-step h3 {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    color: #0f172a;
}

[data-theme="dark"] .mt5-step h3 {
    color: #ffffff;
}

.mt5-step p {
    margin: 0;
    color: #5a6072;
    line-height: 1.6;
}

[data-theme="dark"] .mt5-step p {
    color: rgba(255,255,255,0.8);
}

.mt5-start-right {
    position: relative;
    display: grid;
    gap: 1rem;
    justify-items: end;
}

.mt5-start-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    object-fit: cover;
}

.mt5-start-tags {
    display: grid;
    gap: 0.5rem;
    width: min(320px, 100%);
}

.mt5-start-tag {
    background: #ffffff;
    border: 1px solid #e5e7ef;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

[data-theme="dark"] .mt5-start-tag {
    background: #111628;
    border-color: rgba(255,255,255,0.1);
    color: #e2e8f0;
}

/* UAE Regulated Broker Section */
.mt5-regulated-section {
    padding: 6rem 2rem;
    background: #F4F4F6;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .mt5-regulated-section {
    background: var(--bg-darker);
}

.mt5-regulated-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mt5-regulated-image-wrapper {
    position: relative;
}

.mt5-regulated-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mt5-regulated-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mt5-shield-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.mt5-regulated-content {
    padding-left: 2rem;
}

.mt5-regulated-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.mt5-regulated-title .mt5-regulated-accent {
    color: #1a1a1a;
    font-weight: 800;
}

[data-theme="dark"] .mt5-regulated-title {
    color: #ffffff;
}

[data-theme="dark"] .mt5-regulated-title .mt5-regulated-accent {
    color: #ffffff;
}

.mt5-regulated-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5a6072;
    margin-bottom: 2.5rem;
}

[data-theme="dark"] .mt5-regulated-text {
    color: rgba(255, 255, 255, 0.8);
}

.mt5-regulated-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid #000000;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.mt5-regulated-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .mt5-regulated-btn {
    border-color: #ffffff;
    color: #ffffff;
}

[data-theme="dark"] .mt5-regulated-btn:hover {
    background: #ffffff;
    color: #000000;
}

.stocks-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stocks-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.stocks-card-bg-red {
    background: linear-gradient(135deg, #FF444F 0%, #FF6B73 50%, #FF444F 100%);
    background-image: url('minor_pairs_bg.jpg');
    background-size: cover;
    background-position: center;
}

.stocks-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stocks-card-overlay-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stocks-card-dark {
    background: #1a1a2e;
}

.stocks-card-red {
    background: #FF444F;
}

.stocks-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3rem 4rem;
    gap: 2rem;
}

.stocks-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    min-width: 180px;
}

.stocks-card-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
    text-align: left;
}

/* Responsive Stocks Cards */
@media (max-width: 768px) {
    .section-stocks-steps {
        padding-bottom: 2rem;
    }
    
    .stocks-card-wrapper {
        position: static !important;
        z-index: auto !important;
    }
    
    .stocks-card {
        margin-bottom: 1.5rem !important;
        position: static !important;
        top: auto !important;
    }
    
    .stocks-card-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
    }
    
    .stocks-card-title {
        font-size: 1.5rem;
    }
    
    .stocks-card-desc {
        font-size: 0.95rem;
    }
    
    .offer-section-title {
        font-size: 2rem;
    }
}

/* Stocks Table Section */
.stocks-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .stocks-section {
    background: var(--bg-dark);
}

.table-container {
    max-width: 1400px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .table-container {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid #E6E9E9;
}

[data-theme="dark"] .table-container {
    background: var(--bg-card);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Trading Specifications Table */
.ts-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ts-search-wrapper {
    margin-bottom: 1.5rem;
}

.ts-search-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ts-search-input {
    padding: 0.75rem 1rem;
    border: 1px solid #E6E9E9;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 280px;
    background: #ffffff;
    color: #333;
    transition: border-color 0.2s ease;
}

.ts-search-input:focus {
    outline: none;
    border-color: #FF444F;
}

[data-theme="dark"] .ts-search-input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.ts-search-results {
    font-size: 0.9rem;
    color: #666;
}

[data-theme="dark"] .ts-search-results {
    color: rgba(255, 255, 255, 0.6);
}

.ts-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #E6E9E9;
}

[data-theme="dark"] .ts-table-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.ts-table-scroll {
    overflow-x: auto;
}

.ts-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
}

.ts-th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    background: #F4F4F6;
    white-space: nowrap;
    position: relative;
}

[data-theme="dark"] .ts-th {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.ts-th-main {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 140px;
}

.ts-th-wide {
    min-width: 220px;
}

.ts-th-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.ts-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: #1a1a2e;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    width: 200px;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ts-th-content:hover .ts-tooltip {
    display: block;
}

.ts-row {
    border-bottom: 1px solid #E6E9E9;
    transition: background 0.2s ease;
}

[data-theme="dark"] .ts-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ts-row:hover {
    background: #F8F9FA;
}

[data-theme="dark"] .ts-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ts-td {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
}

[data-theme="dark"] .ts-td {
    color: rgba(255, 255, 255, 0.9);
}

.ts-td-main {
    position: sticky;
    left: 0;
    background: #ffffff;
    z-index: 1;
    font-weight: 600;
}

[data-theme="dark"] .ts-td-main {
    background: #0a0a0a;
}

.ts-row:hover .ts-td-main {
    background: #F8F9FA;
}

[data-theme="dark"] .ts-row:hover .ts-td-main {
    background: rgba(255, 255, 255, 0.03);
}

.ts-td-wide {
    min-width: 220px;
    white-space: normal;
    word-break: break-word;
}

.ts-instrument {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ts-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Pagination */
.ts-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.ts-page-buttons {
    display: flex;
    gap: 0.25rem;
}

.ts-page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ts-page-btn:hover {
    background: #F4F4F6;
}

.ts-page-btn.active {
    background: #1a1a2e;
    color: #ffffff;
}

[data-theme="dark"] .ts-page-btn {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .ts-page-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .ts-page-btn.active {
    background: #FF444F;
    color: #ffffff;
}

.ts-page-next {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ts-page-next:hover {
    background: #F4F4F6;
}

[data-theme="dark"] .ts-page-next {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .ts-page-next:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Disclaimer */
.ts-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: #F8F9FA;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

[data-theme="dark"] .ts-disclaimer {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
}

.ts-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
}

[data-theme="dark"] .ts-info-icon {
    filter: invert(1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .faq-section {
    background: var(--bg-darker);
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
    line-height: 1.2;
}

[data-theme="dark"] .faq-title {
    color: var(--text-primary);
}

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

.faq-item {
    border-bottom: 1px solid #d6dadb;
}

[data-theme="dark"] .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid #d6dadb;
}

[data-theme="dark"] .faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
    gap: 20px;
}

[data-theme="light"] .faq-question {
    color: #333333;
}

[data-theme="dark"] .faq-question {
    color: var(--text-primary);
}

.faq-question span {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
}

.faq-question:hover {
    color: #FF444F;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--text-light);
    stroke-width: 2;
    width: 24px;
    height: 24px;
}

[data-theme="light"] .faq-icon {
    stroke: #999999;
}

[data-theme="dark"] .faq-icon {
    stroke: var(--text-secondary);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #414652;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

[data-theme="light"] .faq-answer p {
    color: #414652;
}

[data-theme="dark"] .faq-answer p {
    color: var(--text-secondary);
}

.mt5-downloads {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mt5-downloads::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 99, 71, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 122, 89, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

[data-theme="dark"] .mt5-downloads {
    background: linear-gradient(135deg, #0a0c16 0%, #0f1419 100%);
}

[data-theme="dark"] .mt5-downloads::before {
    background: radial-gradient(circle at 20% 50%, rgba(255, 99, 71, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 122, 89, 0.08) 0%, transparent 50%);
}

.mt5-downloads__card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    border: 2px solid #FF6347;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(255, 99, 71, 0.15), 0 0 0 1px rgba(255, 99, 71, 0.1);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .mt5-downloads__card {
    background: #0d0f1a;
    border-color: #FF6347;
    box-shadow: 0 20px 60px rgba(255, 99, 71, 0.25), 0 0 0 1px rgba(255, 99, 71, 0.2);
}

.mt5-downloads__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6347, #FF7A59);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 99, 71, 0.4);
    z-index: 2;
}

.mt5-downloads__header {
    margin-bottom: 2rem;
    text-align: center;
}

.mt5-downloads__title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.5px;
}

[data-theme="dark"] .mt5-downloads__title {
    color: #ffffff;
}

.mt5-downloads__subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

[data-theme="dark"] .mt5-downloads__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.mt5-downloads__buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.mt5-download-btn {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.mt5-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 99, 71, 0.1), transparent);
    transition: left 0.5s ease;
}

.mt5-download-btn:hover::before {
    left: 100%;
}

.mt5-download-btn svg {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    transition: transform 0.25s ease;
}

.mt5-download-btn span {
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.mt5-download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 99, 71, 0.2);
    border-color: #FF6347;
    background: #fff5f3;
}

.mt5-download-btn:hover svg {
    transform: scale(1.1);
}

[data-theme="dark"] .mt5-download-btn {
    background: #111628;
    border-color: rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
}

[data-theme="dark"] .mt5-download-btn:hover {
    background: #1a2332;
    border-color: #FF6347;
    box-shadow: 0 12px 30px rgba(255, 99, 71, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: #FF444F;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #0E0E0E;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Footer Breaker CTA Section */
.footer-breaker-section {
    position: relative;
    overflow: hidden;
    background: #ff6347;
    padding: 0;
    margin: 0;
}

.footer-breaker-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-breaker-grid {
    z-index: 9999999999;
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
}

.fb-box {
    background: transparent;
    border: 1px solid rgba(200, 40, 20, 0.2);
    position: relative;
}

.fb-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 2;
    opacity: 0.7;
    filter: blur(6px);
    transition: opacity 0.3s ease, filter 0.3s ease;
    will-change: transform, filter, opacity;
}

.fb-icon.scroll-visible {
    filter: blur(0px);
    opacity: 1;
}

.fb-icon-1 {
    top: 5%;
    left: 20%;
}

.fb-icon-2 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.fb-icon-3 {
    top: 5%;
    right: 20%;
}

.fb-icon-4 {
    top: 35%;
    left: 8%;
    transform: translateY(-50%);
}

.fb-icon-5 {
    top: 35%;
    right: 8%;
    transform: translateY(-50%);
}

.fb-icon-6 {
    bottom: 5%;
    left: 20%;
}

.fb-icon-7 {
    bottom: 5%;
    right: 20%;
}

.fb-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 99, 71, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.footer-breaker-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 20px;
}

.fb-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.fb-button {
    display: inline-block;
    padding: 18px 48px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.fb-button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .table-container {
        overflow-x: auto;
    }

    .stocks-card-wrapper {
        position: relative !important;
        top: auto !important;
    }

    .stocks-card {
        margin-bottom: 2rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .ts-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ts-pagination {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .ts-page-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ts-page-btn {
        min-width: 40px;
    }

    .fb-heading {
        font-size: 2rem;
    }
    
    .fb-button {
        padding: 14px 36px;
        font-size: 1rem;
    }
    .mt5-downloads {
        padding: 60px 16px;
    }

    .mt5-downloads__card {
        padding: 32px 20px 24px;
        border-radius: 20px;
    }

    .mt5-downloads__badge {
        font-size: 0.75rem;
        padding: 5px 16px;
        top: -10px;
    }

    .mt5-downloads__header {
        margin-bottom: 1.5rem;
    }

    .mt5-downloads__title {
        font-size: 1.5rem;
    }

    .mt5-downloads__subtitle {
        font-size: 0.9rem;
    }

    .mt5-downloads__buttons {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .mt5-download-btn {
        padding: 1rem 1.25rem;
    }

    .mt5-download-btn svg {
        width: 22px;
        height: 22px;
    }

    .mt5-download-btn span {
        font-size: 0.95rem;
    }

    .mt5-regulated-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mt5-regulated-content {
        padding-left: 0;
        text-align: center;
    }

    .mt5-regulated-title {
        font-size: 2rem;
    }

    .mt5-regulated-text {
        font-size: 1rem;
    }

    .mt5-shield-overlay {
        width: 80px;
        height: 93px;
    }

    .mt5-shield-overlay svg {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1024px) {
    .mt5-start-container {
        grid-template-columns: 1fr;
    }
    .mt5-start-right {
        justify-items: start;
    }
    .footer-breaker-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    
    .fb-icon {
        width: 100px;
        height: 100px;
    }
    
    .fb-heading {
        font-size: 2.5rem;
    }

    .mt5-regulated-container {
        gap: 3rem;
    }

    .mt5-regulated-title {
        font-size: 2.5rem;
    }

    .mt5-regulated-content {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-breaker-container {
        min-height: 400px;
    }
    
    .footer-breaker-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .fb-icon {
        width: 60px;
        height: 60px;
    }
    
    .fb-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .footer-breaker-content {
        padding: 60px 20px;
    }
}

/* Payment Methods Section */
/* Payment Methods Section */
.section_pay-methods {
    padding: 6rem 2rem;
    background: #fafafa;
}

[data-theme="dark"] .section_pay-methods {
    background: var(--bg-dark);
}

.padding-vertical-md {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pay-methods_content {
    width: 100%;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

[data-theme="dark"] .section-title-wrapper h2 {
    color: #ffffff;
}

.pay-methods_wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pay-methods_header {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pay-methods_logo-block {
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .pay-methods_logo-block {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pay-methods_logo-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pay-methods_logo-block img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.pay-methods_table {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    /* max-width: 1200px; */
    margin: 0 auto;
    width: 70%;
}

[data-theme="dark"] .pay-methods_table {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pay-methods_block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pay-methods_block:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #d0d0d0;
}

[data-theme="dark"] .pay-methods_block:not(:last-child) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pay-methods_table_name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .pay-methods_table_name {
    color: #ffffff;
}

.pay-methods_table_row {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.pay-methods_table_row > div:first-child {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

[data-theme="dark"] .pay-methods_table_row > div:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.pay-methods_table_text {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
    text-align: right;
}

[data-theme="dark"] .pay-methods_table_text {
    color: #ffffff;
}

.pay-methods_table_bold-text {
    font-weight: 700;
}

/* Fund Your Account in 3 Steps Section */
.section_deposit_steps {
    padding: 6rem 2rem;
    /* background: #fafafa; */
}

[data-theme="dark"] .section_deposit_steps {
    background: var(--bg-dark);
}

.feature-list_component {
    width: 100%;
}

.w-layout-grid.feature-three-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-content-card {
    position: relative;
}

.feature_item-card-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 10px 0px #e1e1e1;
}

.feature_item-card-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .feature_item-card-container:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.feature_item-card-container.is-dark {
    background: #1a1a1a;
}

[data-theme="dark"] .feature_item-card-container.is-dark {
    background: #1a1a1a;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.feature_item-card-container.is-white {
    background: #ffffff;
}

.feature_item-card-container.is-coral {
    background: #FF444F;
}

[data-theme="dark"] .feature_item-card-container.is-white {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .feature_item-card-container.is-white .heading-style-h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .feature_item-card-container.is-white .feature_item-content p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.feature_item-content {
    z-index: 2;
    position: relative;
}

.feature_item-content p {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #64748b;
}

[data-theme="dark"] .feature_item-content p {
    color: rgba(255, 255, 255, 0.7);
}

.feature_item-content .text-color-white {
    color: #ffffff !important;
}

.heading-style-h5 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #0f172a;
}

.text-color-white {
    color: #ffffff;
}

[data-theme="dark"] .heading-style-h5 {
    color: var(--text-primary);
}

[data-theme="dark"] .feature_item-card-container.is-dark .heading-style-h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .feature_item-card-container.is-dark .feature_item-content p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.feature-card-image {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    object-fit: contain;
    max-height: 200px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.how-it-works-step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Info Section */
.info-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

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

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.info-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.info-card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Cards Styles */
.contact-card-livechat {
    background: #0E0E0E;
    position: relative;
    overflow: hidden;
}

.contact-card-helpcentre {
    background: #ffffff;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .contact-card-helpcentre {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-card-office {
    background: #FF444F;
    position: relative;
    overflow: hidden;
}

.office-addresses {
    margin-top: 1rem;
}

.office-address {
    margin-bottom: 2rem;
}

.office-address:last-child {
    margin-bottom: 0;
}

.office-type {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.office-location {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.feature-red  p {
    font-size: 0.95rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-card-livechat .contact-link,
.contact-card-office .contact-link {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card-livechat .contact-link:hover,
.contact-card-office .contact-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.contact-card-helpcentre .contact-link {
    color: #FF444F;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card-helpcentre .contact-link:hover {
    color: #e63946;
    transform: translateX(5px);
}

[data-theme="dark"] .contact-card-helpcentre .contact-link {
    color: #FF444F;
}

/* Contact Form Styles */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .form-group label {
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF444F;
    box-shadow: 0 0 0 3px rgba(255, 68, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #FF444F;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 68, 79, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-link {
    display: inline-block;
    color: #FF444F;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e63946;
}

.feature-dark .contact-link,
.feature-red .contact-link {
    color: #ffffff;
}

.feature-dark .contact-link:hover,
.feature-red .contact-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .deposits-hero {
        padding: 80px 2rem 60px;
    }

    .deposits-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deposits-hero-left,
    .deposits-hero-right {
        justify-content: center;
    }

    .currency-symbol-left {
        padding-right: 0;
    }

    .currency-symbol-right {
        padding-left: 0;
    }

    .currency-symbol svg {
        max-width: 250px;
    }

    .deposits-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .deposits-hero {
        padding: 60px 1.5rem 40px;
    }

    .deposits-hero-content {
        gap: 1.5rem;
    }

    .deposits-hero-title {
        font-size: 2.25rem;
    }

    .deposits-hero-subtitle {
        font-size: 1.125rem;
    }

    .currency-symbol svg {
        max-width: 180px;
    }

    .section_pay-methods,
    .section_deposit_steps {
        padding: 4rem 1.5rem;
    }

    .section-title-wrapper h2 {
        font-size: 2rem;
    }

    .w-layout-grid.feature-three-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature_item-card-container {
        min-height: 350px;
    }

    .pay-methods_header {
        gap: 1rem;
    }

    .pay-methods_logo-block {
        min-width: 140px;
        padding: 1.25rem 1.5rem;
    }

    .pay-methods_logo-block img {
        height: 40px;
    }

    .pay-methods_table {
        padding: 2rem 1.5rem;
    }

    .pay-methods_table_row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .pay-methods_table_text {
        text-align: left;
    }

    .section-title {
        font-size: 2rem;
    }

    .how-it-works-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-it-works-section,
    .info-section {
        padding: 4rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .office-addresses {
        margin-top: 1rem;
    }

    .office-address {
        margin-bottom: 1.5rem;
    }

    .office-type {
        font-size: 1rem;
    }

    .office-location {
        font-size: 0.95rem;
    }
}

/* ============================================
   Additional Responsive Styles for Contact Page
   ============================================ */

@media (max-width: 768px) {
    .deposits-hero-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .deposits-hero-title {
        font-size: 2.5rem;
    }
    
    .deposits-hero-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card-livechat,
    .contact-card-helpcentre,
    .contact-card-office {
        padding: 1.5rem;
    }
    
    .office-addresses {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-breaker-section {
        padding: 3rem 1rem;
    }
    
    .fb-heading {
        font-size: 2rem;
    }
    
    .fb-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .deposits-hero-title {
        font-size: 2rem;
    }
    
    .deposits-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-card-livechat,
    .contact-card-helpcentre,
    .contact-card-office {
        padding: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
    
    .fb-heading {
        font-size: 1.75rem;
    }
}

