:root {
    --primary: #00d09c;
    /* bright teal/green from logo */
    --primary-hover: #00b084;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #333333;
    --border-color: #333;
    --surface-light: #f8f9fa;
    --font-main: "Inter", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: #0a0a0a;
    /* Base backdrop */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, #00f5b8 100%);
    border-radius: 10px;
    border: 2px solid #0a0a0a;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(0, 208, 156, 0.4);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: #0a0a0a;
    /* Page Backdrop */
    line-height: 1.6;
}

section,
.assets-section,
.trust-section,
.payments-section,
.faq-section,
.awards-section {
    background: #fff;
    /* Targeted white backgrounds - REMOVED .platform-section from here */
}

.hero,
.market-knowledge-section,
.main-footer {
    background: #0a0a0a;
    /* These should stay dark */
}

.container {
    max-width: 1800px;
    width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

a,
button,
.btn,
.as-btn-primary,
.menu-toggle,
.as-accordion-header,
.as-acc-card,
.as-feature-glass-card,
.as-step-card-premium,
.nav-item-dropdown > a,
.dropdown-menu a,
.cta-btn,
.dot,
.social-icons a {
    cursor: pointer;
}

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

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer !important;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    border-radius: 4px;
}

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

.btn-dark {
    background-color: #222;
    color: #fff;
    border-radius: 4px;
    padding: 10px 25px;
}

.btn-dark:hover {
    background-color: #000;
}

.btn-outline-sm {
    border: 1px solid #555;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2px;
}

.btn-primary-sm {
    background: var(--primary);
    color: #000;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 2px;
    margin-left: 10px;
}

.text-primary {
    color: var(--primary);
}

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

/* Top Header */
.top-header {
    background-color: #0b0b0b;
    /* Very dark background */
    color: #888;
    padding: 8px 0;
    font-size: 0.75rem;
    border-bottom: 1px solid #222;
    font-weight: 600;
}

.top-header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 20px;
}

.top-left a {
    color: #888;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.top-left a:hover {
    color: #fff;
}

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

.top-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    text-transform: uppercase;
    cursor: pointer;
}

.top-right a:hover {
    color: #fff;
}

.mailing-list i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Main Header */
.main-header {
    background-color: var(--bg-darker);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Space between logo and nav */
}

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

.logo img {
    height: 45px;
    /* Adjust height for visibility */
    width: auto;
    display: block;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.desktop-nav a {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    /* Bold links */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    /* Space for arrow */
    letter-spacing: 0.5px;
    cursor: pointer;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.nav-arrow {
    width: 14px;
    height: 14px;
    color: var(--primary);
    /* Gold arrow */
    transition: transform 0.3s ease;
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    min-width: 240px;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(46, 168, 142, 0.2);
    border-radius: 16px;
    padding: 1.25rem 0;
    margin-top: 1rem;
    /* Gap to avoid hover loss, handled by invisible bridge or padding? */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(46, 168, 142, 0.05);
    z-index: 1001;
}

/* Bridge to prevent closing when moving mouse from link to menu */
.nav-item-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    /* height to cover the gap */
    background: transparent;
    display: none;
}

.nav-item-dropdown:hover::after {
    display: block;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(46, 168, 142, 0.15);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    color: #a0a0a0;
    /* text-secondary from reference */
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-transform: none;
    /* Reset uppercase from parent if inherited */
    letter-spacing: normal;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(46, 168, 142, 0.08);
    color: var(--primary);
    /* accent-color */
    padding-left: 2.2rem;
    border-left-color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    /* Push actions to the right */
}

.btn-login {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 700;
}

.btn-login:hover {
    background: #fff;
    color: #000;
}

.btn-register {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 800;
    /* Bolder text for CTA */
}

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

.header-actions-mobile {
    display: none;
}

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

.as-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.as-hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background: var(--primary);
}
.as-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.as-hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background: var(--primary);
}

/* --- Side-Sliding Mobile Menu Overlay --- */
.as-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
}

.as-mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.as-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.as-mobile-menu.active .as-menu-backdrop {
    opacity: 1;
}

.as-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: #080808;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.as-mobile-menu.active .as-menu-container {
    transform: translateX(0);
}

.as-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.as-menu-logo {
    height: 35px;
    width: auto;
}
.as-menu-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Staggered Nav Links --- */
.as-mobile-nav {
    flex-grow: 1;
    overflow-y: auto;
}

.as-nav-item,
.as-nav-item-group {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
    transition-delay: calc(var(--i) * 0.1s);
}

.as-mobile-menu.active .as-nav-item,
.as-mobile-menu.active .as-nav-item-group {
    opacity: 1;
    transform: translateX(0);
}

.as-nav-item a {
    font-size: 1rem !important;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.as-nav-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.as-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.as-nav-links a {
    font-size: 0.95rem;
    color: #eeeeee !important; /* Pure light silver-white */
    font-weight: 600;
    opacity: 0.9;
}
.as-nav-links a:hover {
    color: #fff;
}

.as-menu-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.as-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
    transition-delay: calc(var(--i) * 0.1s);
}

.as-mobile-menu.active .as-menu-actions {
    opacity: 1;
    transform: translateX(0);
}

.as-menu-btn {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.as-menu-btn.login {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.as-menu-btn.register {
    background: var(--primary);
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 208, 156, 0.2);
}

.as-menu-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
    transition-delay: calc(var(--i) * 0.1s);
}

.as-mobile-menu.active .as-menu-social {
    opacity: 1;
    transform: translateX(0);
}

.as-menu-social a {
    color: #555;
    transition: color 0.3s ease;
}
.as-menu-social a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background-color: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 750px;
    /* Fixed height for absolute children */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex !important;
    /* Always flex but hidden by clip-path */
    align-items: center;
    justify-content: center;
    visibility: hidden;
    clip-path: circle(0% at 50% 50%);
    transition:
        clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1),
        visibility 1.2s;
    z-index: 1;
}

.hero-slide.active {
    visibility: visible;
    clip-path: circle(150% at 50% 50%);
    z-index: 2;
}

/* Background Scale Transition */
.hero-video,
.hero-man-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
    filter: blur(10px);
    transition:
        transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1.5s ease-out;
}

.hero-slide.active .hero-video,
.hero-slide.active .hero-man-img {
    transform: scale(1);
    filter: blur(0);
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 1) 30%,
        rgba(10, 10, 10, 0.4) 100%
    );
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
    pointer-events: none;
    /* Let clicks pass to nav if needed, but buttons inside will have auto */
}

.hero-content {
    pointer-events: auto;
    padding-left: 50px;
    /* Added slight space from the left edge */
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 900px;
    opacity: 0;
    filter: blur(20px);
    transform: translateX(-100px) skewX(-10deg);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.hero-slide.active h1 {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) skewX(0);
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 35px;
    max-width: 800px;
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

.hero-slide.active p {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s;
}

.hero-slide.active .btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Add a premium shine sweep to the button on active */
.hero-slide.active .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: button-shine 1.5s ease-in-out infinite;
}

@keyframes button-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 550px;
    height: 550px;
    border: 45px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
    animation: pulse-border 4s ease-in-out infinite alternate;
}

.hero-slide.active .circle-bg {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
}

@keyframes pulse-border {
    0% {
        border-width: 30px;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    100% {
        border-width: 60px;
        transform: translate(-50%, -50%) scale(1.05) rotate(15deg);
    }
}

.img-frame {
    position: relative;
    width: 420px;
    height: 520px;
    border-radius: 30px;
    padding: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: 2;
    margin: 0 auto;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 208, 156, 0.3);
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.hero-slide.active .img-frame {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* The Tracing "Snake" Border Shine */
.img-frame::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 15%,
        var(--primary) 20%,
        #fff 22.5%,
        var(--primary) 25%,
        transparent 30%,
        transparent 65%,
        var(--primary) 70%,
        #fff 72.5%,
        var(--primary) 75%,
        transparent 80%,
        transparent 100%
    );
    animation: rotate-snake 3s linear infinite;
    z-index: 0;
}

/* Diagonal Glossy Shine Sweep */
.img-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg);
    animation: glossy-sweep 3s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

/* Inner Overlay - Creates the "Border" look */
.img-frame-overlay {
    position: absolute;
    inset: 4px;
    background: #0a0a0a;
    border-radius: 26px;
    z-index: 1;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.9);
}

@keyframes rotate-snake {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes glossy-sweep {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.hero-man-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    position: relative;
    z-index: 2;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero-slide.active .hero-man-img {
    transform: scale(1);
}

.hero-dots {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
}

/* Stats Bar */
.stats-bar {
    background: #333;
    /* Gradient overlay to match image roughly */
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    padding: 40px 0;
    color: #fff;
    /* Overlap slightly with hero */
    margin-top: -60px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    align-items: flex-start;
}

.stat-item {
    padding: 0 40px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 208, 156, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.stat-detail {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    line-height: 1.4;
}

.stat-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 0;
    }

    .stat-item {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .stats-bar {
        margin-top: -30px;
        padding: 40px 0;
    }

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

    .stat-num {
        font-size: 1.8rem;
    }
}

/* Platform Section Redesign */
.platform-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #050505 0%, #0c1a18 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.platform-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(
        circle,
        rgba(46, 168, 142, 0.1) 0%,
        transparent 70%
    );
    filter: blur(80px);
    z-index: 0;
}

.platform-tabs-container {
    display: flex;
    background: #fff;
    border-radius: 12px;
    /* Smoother edges as requested */
    overflow: hidden;
    max-width: 1300px;
    margin: 60px auto;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.04),
        0 20px 80px rgba(0, 0, 0, 0.02);
    /* Very soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-sidebar {
    width: 280px;
    background: #fcfcfc;
    border-right: 1px solid #f0f0f0;
    padding: 40px 0;
    flex-shrink: 0;
}

.tab-btn {
    padding: 22px 40px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-left: 4px solid transparent;
    font-size: 1rem;
    border-bottom: none;
}

.tab-btn:hover {
    color: var(--primary);
    background: #f9f9f9;
}

.tab-btn.active {
    background: #fff;
    color: #000;
    border-left-color: var(--primary);
}

.platform-content {
    flex: 1;
    padding: 0;
    position: relative;
    min-height: 750px;
    /* Increased to ensure button visibility */
    background: #fff;
    /* overflow removed to allow animations/content to breathe */
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.tab-split {
    display: flex;
    height: 100%;
    align-items: center;
}

.tab-info {
    flex: 1.2;
    padding: 60px 50px 60px 80px;
}

.tab-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
    opacity: 0;
    transform: scale(0.9) translateX(50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.tab-content.active .tab-image {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* Removal of any harsh borders from image itself if any */
}

/* Staggered text animations */
.tab-content.active .tab-info h3 {
    animation: fadeSlideUp 0.8s both 0.1s;
}

.tab-content.active .tab-info .subtitle {
    animation: fadeSlideUp 0.8s both 0.2s;
}

.tab-content.active .tab-info p {
    animation: fadeSlideUp 0.8s both 0.3s;
}

.tab-content.active .tab-info .features-grid {
    animation: fadeSlideUp 0.8s both 0.4s;
}

.tab-content.active .tab-info .btn-dark {
    animation: fadeSlideUp 0.8s both 0.5s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #111;
}

.tab-content .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
}

.tab-info p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 35px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.platform-content .btn-dark {
    background: #111;
    color: #fff;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    background: #fdfdfd;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 208, 156, 0.1);
}

.feature i {
    font-size: 1.2rem;
}

.platform-content .btn-dark {
    background: #1b1b1b;
    color: var(--primary);
    /* Changed from yellow to theme primary */
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.platform-content .btn-dark:hover {
    background: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .as-hamburger {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

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

    .desktop-nav .header-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 30px;
    }

    .header-actions-mobile .btn {
        width: 100%;
    }

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

    .hero-content {
        margin-bottom: 50px;
        padding-left: 0;
    }

    .circle-bg {
        width: 300px;
        height: 300px;
        border-width: 20px;
    }

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

    .stat-item {
        border-right: none;
    }

    .platform-tabs-container {
        flex-direction: column;
    }

    .platform-sidebar {
        width: 100%;
        display: flex;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
    }

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

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

@media (max-width: 768px) {
    .top-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px;
        z-index: 100;
        border-top: 1px solid #333;
    }

    .top-bar.active .top-links {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    /* Top header adjustments for mobile */
    .top-header .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-right {
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .mailing-list {
        display: none;
    }

    /* Hide on very small screens if needed */
}

/* Market Insights */
.insights-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff 50%, #1a1a1a 50%);
    /* Split background like the image */
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.insight-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 220px;
    overflow: hidden;
    background: #000;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insight-card:hover .card-image img {
    transform: scale(1.1);
}

.card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.insight-card:hover .tag {
    border-color: var(--primary);
    color: var(--primary);
}

.insight-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    line-height: 1.5;
    margin-bottom: 30px;
    flex: 1;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: gap 0.3s ease;
}

.read-more::after {
    content: "→";
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.insight-card:hover .read-more {
    gap: 15px;
}

.insight-card:hover .read-more::after {
    transform: translateX(5px);
}

/* Live Trading Section */
.live-trading-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.live-header {
    margin-bottom: 80px;
}

.live-trading-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.live-content .display-title {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 300;
    color: #111;
}

.live-content .display-title span {
    font-weight: 700;
}

.live-content .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
}

.live-content .detail-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.live-features {
    list-style: none;
    margin-bottom: 50px;
    padding: 0;
}

.live-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}

.live-features i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 2px;
}

.btn-theme-primary {
    color: var(--primary) !important;
    background: #1b1b1b !important;
    border-radius: 4px !important;
    padding: 18px 40px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

/* Pricing Card Styling */
.pricing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header {
    background: #1b1b1b;
    color: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-body {
    padding: 10px 0;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 30px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: #333;
}

.pricing-row:last-child {
    border-bottom: none;
}

.header-row {
    color: #999;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.text-down {
    color: #ff4d4d;
}

.text-up {
    color: var(--primary);
}

.pricing-disclaimer {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 25px;
    line-height: 1.5;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .live-trading-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Assets Section Slider */
.assets-section {
    padding: 80px 0;
    background: #fff;
    /* White to alternate */
    overflow: hidden;
}

.assets-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    /* Vertical only */
}

.assets-slider-track {
    display: flex;
    gap: 30px;
    /* Increased back for better spacing at full width */
    flex-wrap: nowrap;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.asset-card {
    flex: 0 0 calc(25% - 22.5px);
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    cursor: pointer;
}

@media (max-width: 576px) {
    .asset-card {
        min-height: auto;
        padding: 35px 20px;
    }
}

.asset-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.asset-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.asset-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.asset-link {
    font-size: 0.8rem;
    font-weight: 800;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.asset-link::after {
    content: "→";
    font-size: 1.1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.asset-card:hover .asset-link::after {
    transform: translateX(8px);
}

/* Dots */
.assets-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .asset-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .asset-card {
        flex: 0 0 100%;
        padding: 40px 25px;
    }
}

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

.asset-dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

@media (max-width: 992px) {
    .assets-slider-container {
        max-width: 90%;
    }
}

/* Footer Trust */
/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #f8f9fa;
    /* Gray to alternate */
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.trust-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accent-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
}

.phone-mockup {
    position: relative;
    width: 70%;
    z-index: 2;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    margin-right: 40px;
    /* Shift phone slightly left */
}

.feature-overlay {
    position: absolute;
    bottom: -40px;
    /* Move down */
    right: -60px;
    /* Move right */
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    width: 320px;
    /* Slightly narrower to reveal more phone */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-item span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: #1b1b1b;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Content */
.trust-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: #111;
    margin-bottom: 15px;
}

.trust-title span {
    font-weight: 800;
}

.trust-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #444;
    margin-bottom: 50px;
}

.trust-features {
    list-style: none;
    padding: 0;
    margin-bottom: 60px;
}

.trust-features li {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.trust-features .check-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    margin-top: 5px;
    flex-shrink: 0;
}

.trust-features strong {
    display: block;
    font-size: 1.15rem;
    color: #111;
    margin-bottom: 10px;
}

.trust-features p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.trust-actions {
    display: flex;
    gap: 25px;
}

.btn-outline {
    border: 1.5px solid #111;
    color: #111;
    background: transparent;
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 1200px) {
    .feature-overlay {
        width: 280px;
        padding: 25px;
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 120px;
    }

    .trust-visual {
        order: 2;
    }
}

@media (max-width: 576px) {
    .trust-grid {
        gap: 60px;
    }

    .feature-overlay {
        position: relative;
        right: 0;
        top: 0;
        width: 90%;
        margin: -40px auto 0;
        padding: 25px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .trust-title {
        font-size: 2.5rem;
    }
}

/* Payments Section */
.payments-section {
    padding: 80px 0;
    background: #fff;
    /* White to alternate */
}

.payment-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.payment-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 15px;
}

.payment-content h2 span {
    font-weight: 800;
}

.payment-content .lead-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

.payment-content .small-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-top: 40px;
    line-height: 1.5;
}

.payment-content .small-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.payment-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-logos {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.4s ease;
}

.payment-card:hover .payment-logos {
    filter: grayscale(0) opacity(1);
}

@media (max-width: 992px) {
    .payment-card {
        padding: 40px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .payment-logos {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .payment-content h2 {
        font-size: 2rem;
    }
}

/* Market Knowledge Section (Dark) */
.market-knowledge-section {
    background: #111;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 100px;
}

.knowledge-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
}

.knowledge-title span {
    font-weight: 700;
}

.knowledge-lead {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 60px;
}

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

.cat-box {
    cursor: pointer;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    transition: border-color 0.3s ease;
}

.cat-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.cat-box p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.cat-box:hover .cat-header {
    border-color: var(--primary);
}

.cat-box:hover h3 {
    color: var(--primary);
}

.cat-box:hover p {
    color: #ddd;
}

/* Popular List */
.side-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    color: #888;
}

.side-title span {
    color: #fff;
    font-weight: 700;
}

.popular-links {
    list-style: none;
    padding: 0;
}

.popular-links li {
    margin-bottom: 25px;
}

.popular-links a {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.popular-links a i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary);
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.popular-links a:hover {
    color: #fff;
}

.popular-links a:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .market-knowledge-section {
        padding: 80px 0;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .knowledge-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .knowledge-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: #f8f9fa;
    /* Gray to alternate */
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.steps-content {
    flex: 1;
}

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

/* Connecting Line */
.steps-grid::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    cursor: pointer;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    padding: 0 10px;
}

.steps-cta {
    width: 400px;
}

.steps-cta h2 {
    font-size: 2.2rem;
    color: #111;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
}

.steps-cta h2 span {
    font-weight: 800;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
    /* White to alternate */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.star-filled {
    width: 14px;
    height: 14px;
    fill: var(--primary);
    color: var(--primary);
}

.testimonial-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-footer {
    font-size: 0.75rem;
    color: #999;
}

.trustpilot-rating {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.trustpilot-rating p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.tp-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #111;
}

.tp-star {
    fill: var(--primary);
    color: var(--primary);
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .steps-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .steps-cta {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.faq-section .section-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 70px;
    color: #111;
    text-align: center;
}

.faq-section .section-title span {
    font-weight: 800;
    color: var(--primary);
}

.faq-accordion {
    max-width: 1200px;
    margin: 0 auto 50px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: #fafafa;
}

.faq-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 30px;
}

.faq-question {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 400;
    color: #111;
}

.faq-icon {
    width: 22px;
    height: 22px;
    color: #999;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
    padding: 0 40px 35px 95px;
}

.faq-answer p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.faq-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 80px;
    /* Increased gap after buttons */
}

@media (max-width: 768px) {
    .faq-header {
        padding: 25px;
        gap: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 30px 65px;
    }

    .faq-question {
        font-size: 1rem;
    }
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: #fff;
    /* White to alternate */
}

.awards-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 50px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.award-item {
    text-align: center;
}

.award-item img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.award-item p {
    font-size: 0.65rem;
    color: #444;
    line-height: 1.4;
}

.award-item p strong {
    font-weight: 800;
    color: #000;
}

@media (max-width: 576px) {
    .award-item img {
        width: 45px;
    }

    .award-item p {
        font-size: 0.55rem;
    }
}

.awards-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
}

.awards-disclaimer p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Main Footer */
.main-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 55px;
    /* Increased size */
    margin-bottom: 25px;
}

.footer-tagline {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.footer-tagline span {
    color: #fff;
    font-weight: 700;
    display: block;
    /* Force to wrap nicely */
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 1;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

.footer-col ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #111;
    color: var(--primary);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.social-icons a i {
    width: 18px;
    height: 18px;
}

.footer-disclaimer {
    border-top: 1px solid #222;
    padding-top: 40px;
    margin-bottom: 50px;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-disclaimer strong {
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #555;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    color: #555;
}

.footer-legal-links a:hover {
    color: #aaa;
}

@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-top {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Floating Prop Trading Toggle */
.floating-toggle-wrap {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-container {
    width: 70px;
    height: 38px;
    background: rgba(10, 10, 10, 0.4);
    /* Glass transparency */
    backdrop-filter: blur(15px);
    /* Premium blur */
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle definition */
    cursor: pointer;
}

.toggle-knob {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Active State - Interactive Glass */
.floating-toggle-wrap.active .toggle-container {
    background: rgba(0, 208, 156, 0.2);
    /* Tinted glass */
    border-color: rgba(0, 208, 156, 0.4);
    box-shadow: 0 0 30px rgba(0, 208, 156, 0.15);
}

.floating-toggle-wrap.active .toggle-knob {
    transform: translateX(32px);
    background: var(--primary);
    box-shadow: 0 0 20px rgba(0, 208, 156, 0.6);
}

.switch-tooltip {
    position: absolute;
    right: 90px;
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-toggle-wrap:hover .switch-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.switch-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #111;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    .floating-toggle-wrap {
        bottom: 25px;
        right: 25px;
    }

    .toggle-container {
        width: 60px;
        height: 32px;
    }

    .toggle-knob {
        width: 24px;
        height: 24px;
    }

    .floating-toggle-wrap.active .toggle-knob {
        transform: translateX(26px);
    }

    .switch-tooltip {
        display: none;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE OVERRIDES
   ========================================================================== */

/* Large Tablets / Small Laptops (1200px) */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }

    .hero-slider {
        height: auto;
        min-height: 650px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Tablets (992px) */
@media (max-width: 992px) {
    .top-header {
        display: none;
        /* Simplify mobile view */
    }

    .main-header {
        padding: 10px 0;
    }

    .hero-slider {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .hero-content p {
        margin: 0 auto 35px;
        font-size: 1.1rem;
        max-width: 600px;
    }

    .hero-btns {
        justify-content: center;
    }

    .img-frame {
        margin: 0 auto;
        max-width: 380px;
        height: 480px;
    }

    .circle-bg {
        width: 400px;
        height: 400px;
    }

    /* Adjust pulse for mobile */
    @keyframes pulse-border-mobile {
        0% {
            border-width: 15px;
            transform: translate(-50%, -50%) scale(1);
        }

        100% {
            border-width: 30px;
            transform: translate(-50%, -50%) scale(1.05);
        }
    }

    .circle-bg {
        animation: pulse-border-mobile 4s ease-in-out infinite alternate;
    }

    .platform-tabs-container {
        flex-direction: column;
    }

    .platform-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 0;
        gap: 0;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .tab-btn {
        flex: 1;
        min-width: 150px;
        padding: 15px 20px;
        text-align: center;
        border: none;
        border-bottom: 3px solid transparent;
        font-size: 0.9rem;
    }

    .tab-btn.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
    }

    .platform-content {
        min-height: auto;
    }

    .tab-content {
        position: relative;
        transform: none;
        height: auto;
        display: none;
    }

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

    .tab-info {
        padding: 40px 25px;
    }

    .tab-info h3 {
        font-size: 1.8rem;
    }

    .tab-image {
        display: none;
        /* Hide illustrative images on mobile to focus on features */
    }

    .tab-split {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .insights-section {
        background: #fff;
        /* Single solid background for stacking items */
    }

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

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

/* Medium Mobile (768px) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem !important;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

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

    .live-trading-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .steps-grid::before {
        display: none;
    }

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

    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}

/* Small Mobile (576px) */
@media (max-width: 576px) {
    .container {
        width: 92%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
    }

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

    .stats-bar {
        margin-top: -30px;
    }

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

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

    .feature {
        padding: 12px 15px;
        justify-content: center;
    }

    .tab-info h3 {
        font-size: 1.5rem;
    }

    .tab-content .subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .tab-info p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .img-frame {
        max-width: 320px;
        height: 400px;
    }

    .circle-bg {
        width: 320px;
        height: 320px;
    }
}

/* Remove extra bottom space */
html,
body {
    background-color: #0a0a0a !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 100vh !important;
    overflow-x: hidden;
}

.main-footer {
    margin-bottom: 0 !important;
    padding-bottom: 50px !important;
    /* Bottom cushion inside darkened area */
    position: relative;
    z-index: 10;
    background: #0a0a0a !important;
}

/* Fix for potential AOS phantom space */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Final cleanup for any ghost elements */
body > *:last-child {
    margin-bottom: 0 !important;
}

/* --- Account Types Section --- */
.account-types-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Explicit Header Styles for Visibility */
.account-types-section .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 5px 15px;
    background: rgba(0, 208, 156, 0.1);
    border-radius: 20px;
}

.section-title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    color: #888888 !important;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.account-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 50px 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    height: 100%;
    z-index: 1;
}

.account-card:hover {
    transform: translateY(-15px);
    border-color: rgba(46, 168, 142, 0.3);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(46, 168, 142, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.account-card.featured {
    border: 1px solid rgba(46, 168, 142, 0.5);
    background: linear-gradient(
        145deg,
        rgba(46, 168, 142, 0.1),
        rgba(0, 0, 0, 0.9)
    );
    transform: scale(1.05);
    z-index: 5;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(46, 168, 142, 0.1);
}

.account-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 15px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(46, 168, 142, 0.4);
}

.account-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    background: linear-gradient(
        145deg,
        rgba(46, 168, 142, 0.15),
        rgba(0, 0, 0, 0.95)
    );
    border-color: var(--primary);
}

.account-types-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.account-types-grid > .account-card {
    flex: 1 1 320px;
    max-width: 400px;
}

.account-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.account-card:hover .account-icon {
    background: var(--primary);
    color: #000;
    transform: rotateY(180deg);
    box-shadow: 0 0 15px var(--primary);
}

.account-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.5px;
}

.account-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 15px 0 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.account-price span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.account-card .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 0.95rem;
    margin-top: auto;
}

.account-card .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(46, 168, 142, 0.4);
}

.account-card .btn-primary {
    width: 100% !important;
    justify-content: center;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 0.95rem;
    margin-top: auto;
    box-shadow: 0 10px 20px rgba(46, 168, 142, 0.2);
}

.account-features {
    list-style: none;
    margin: 25px 0 35px;
    width: 100%;
    text-align: left;
    padding: 0;
}

.account-features li {
    display: flex;
    align-items: center;
    color: #ddd;
    margin-bottom: 12px;
    font-size: 0.95rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.account-features li:last-child {
    border-bottom: none;
}

.account-features li i,
.account-features li svg {
    color: #00d09c !important;
    margin-right: 20px !important;
    width: 20px !important;
    height: 20px !important;
    filter: drop-shadow(0 0 8px rgba(0, 208, 156, 0.5));
    flex-shrink: 0;
}

/* --- Why Choose Section --- */
.why-choose-section {
    padding: 120px 0;
    background-color: #0a0a0a;
    position: relative;
    perspective: 1000px;
}

.why-choose-section .section-header h2 {
    color: var(--primary) !important;
    text-shadow: 0 0 30px rgba(0, 208, 156, 0.2);
    font-weight: 800;
}

.why-choose-section .section-header p {
    color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* --- Steps Section --- */
.steps-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #0a0a0a, #0f0f0f);
    position: relative;
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: rgba(46, 168, 142, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    z-index: 0;
    font-family: inherit;
}

.step-card:hover .step-number {
    color: rgba(46, 168, 142, 0.15);
}

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

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 168, 142, 0.1);
    border-radius: 16px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(46, 168, 142, 0.1);
}

.step-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.7;
}

.steps-cta {
    text-align: center;
    background: linear-gradient(
        90deg,
        rgba(46, 168, 142, 0.15),
        rgba(0, 0, 0, 0)
    );
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(46, 168, 142, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.steps-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.steps-cta span {
    color: var(--primary);
    font-style: italic;
}

/* --- Prop Trading & Innovation Section --- */
.prop-trading-section,
.innovation-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #050505 0%, #0c1a18 100%);
    position: relative;
    overflow: hidden;
}

/* --- Updated Premium Platform Section --- */
.platform-section {
    padding: 120px 0;
    background: radial-gradient(
        circle at 10% 20%,
        rgba(46, 168, 142, 0.05) 0%,
        rgba(10, 10, 10, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(46, 168, 142, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.premium-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.premium-feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premium-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(46, 168, 142, 0.1) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(46, 168, 142, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(46, 168, 142, 0.1);
}

.premium-feature-card:hover::before {
    opacity: 1;
}

.premium-feature-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(46, 168, 142, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.premium-feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(46, 168, 142, 0.4);
}

.premium-feature-card h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.premium-feature-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Visual Wrapper for MT5 Showcase */
.showcase-wrapper {
    position: relative;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 1px solid rgba(46, 168, 142, 0.1);
    border-radius: 40px;
    animation: pulse-ring 4s ease-in-out infinite alternate;
}

.glow-ring::after {
    content: "";
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(46, 168, 142, 0.05);
    border-radius: 50px;
    animation: pulse-ring 4s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

.mt5-main-visual {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
}

.mt5-main-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mt5-main-visual:hover img {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary);
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 0.9rem;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(46, 168, 142, 0.4);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .premium-platform-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .premium-feature-grid {
        grid-template-columns: 1fr;
    }

    .showcase-wrapper {
        padding: 20px;
    }

    .mt5-main-visual {
        padding: 30px;
        border-radius: 24px;
    }

    .glow-ring {
        width: 100%;
        height: 100%;
        border-radius: 24px;
    }

    .floating-badge {
        top: -10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* --- IB Section --- */
.ib-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #050505 0%, #0f1f1d 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
}

.trust-title span {
    color: var(--primary);
}

.trust-subtitle {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
}

.trust-features {
    list-style: none;
    margin: 30px 0 40px;
    padding: 0;
}

.trust-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ddd;
}

.check-icon {
    color: var(--primary);
    margin-right: 15px;
    width: 24px;
    height: 24px;
}

/* Enhancing existing Feature Card for Why Choose */
.feature-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    transform-style: preserve-3d;
    position: relative;
}

.feature-card:hover {
    transform: rotateY(15deg) rotateX(5deg) translateY(-10px);
    box-shadow:
        20px 20px 60px rgba(0, 0, 0, 0.5),
        -5px -5px 20px rgba(46, 168, 142, 0.1);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(46, 168, 142, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(46, 168, 142, 0.1);
    color: var(--primary);
    font-size: 24px;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: translateZ(30px) scale(1.1);
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    transition: transform 0.5s ease;
}

.feature-card:hover h3 {
    transform: translateZ(20px);
}

.feature-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: transform 0.5s ease;
}

.feature-card:hover p {
    transform: translateZ(10px);
}

/* Add cursor pointer to account cards too */
.account-card {
    cursor: pointer;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Global Markets & Ticker --- */
.global-markets-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(46, 168, 142, 0.05) 0%,
        transparent 70%
    );
}

.market-header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.market-header-left {
    text-align: right;
}

.market-header-right {
    text-align: left;
}

.market-header-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(46, 168, 142, 0.1);
    border: 1px solid rgba(46, 168, 142, 0.3);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.globe-container {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(46, 168, 142, 0.4));
}

.globe-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(46, 168, 142, 0.15) 0%,
        transparent 70%
    );
    z-index: 1;
    animation: pulseGlobe 4s ease-in-out infinite;
}

@keyframes pulseGlobe {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.ticker-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 240px;
    transition: all 0.3s ease;
}

.price-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(46, 168, 142, 0.3);
    transform: translateY(-5px);
}

.price-indicator {
    font-size: 1.2rem;
    font-weight: 700;
}

.price-indicator.up {
    color: #2ec990;
}

.price-indicator.down {
    color: #ff4d4d;
}

.price-info {
    flex: 1;
}

.price-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.price-values {
    font-size: 0.75rem;
    color: #aaa;
    font-family: monospace;
}

.price-btn {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(46, 168, 142, 0.4);
}

@media (max-width: 992px) {
    .market-header-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .market-header-left,
    .market-header-right {
        text-align: center;
    }

    .globe-container {
        margin: 0 auto;
    }
}

/* --- CFD Products Grid --- */
.cfd-products-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.cfd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cfd-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cfd-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(46, 168, 142, 0.1) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cfd-card:hover {
    border-color: rgba(46, 168, 142, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cfd-card:hover::before {
    opacity: 1;
}

.cfd-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(46, 168, 142, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.cfd-card:hover .cfd-icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: #000;
}

.cfd-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.cfd-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cfd-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Contact Ecosystem --- */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1a18 100%);
    position: relative;
}

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

.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(46, 168, 142, 0.05);
    box-shadow: 0 0 15px rgba(46, 168, 142, 0.1);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background: rgba(46, 168, 142, 0.03);
    border: 1px solid rgba(46, 168, 142, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(46, 168, 142, 0.06);
    border-color: rgba(46, 168, 142, 0.3);
    transform: translateX(10px);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(46, 168, 142, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

/* --- Global Markets V8: The Orbital Hub --- */
.orbital-hub {
    padding: 160px 0;
    background: #020202;
    position: relative;
    overflow: hidden;
}

.orbital-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Glass Command Deck */
.orbital-deck {
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 60px;
    padding: 100px 60px;
    /* Increased side padding */
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

/* The Animated Roller Chamber */
.roller-chamber {
    width: 100%;
    max-width: 900px;
    /* Increased from 700px */
    height: 500px;
    position: relative;
    margin-top: 60px;
    overflow: hidden;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}

/* The Marquee Wrapper */
.roller-track {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: rollVertical 30s linear infinite;
}

@keyframes rollVertical {
    0% {
        transform: translateY(0);
    }

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

/* Premium Roller Cards */
.roller-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

/* Central Focus Lens (The "Roller" Zoom Effect) */
/* We simulate the zoom via CSS selectors or just rely on the pure beauty of the flow */
.orbital-lens-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 950px;
    /* Increased to match chamber */
    height: 120px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    pointer-events: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Content Aesthetics */
.orbital-badge {
    color: #00d09c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.orbital-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 30px;
}

.orbital-title strong {
    color: #00d09c;
    text-shadow: 0 0 30px rgba(0, 208, 156, 0.3);
}

.orbital-desc {
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    text-align: center;
    margin-bottom: 0;
}

/* Card Inner Styling */
.card-symbol {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.card-price {
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
    font-size: 0.9rem;
    margin-left: 15px;
}

.card-change {
    font-weight: 900;
    font-size: 1rem;
}

.card-change.up {
    color: #00d09c;
}

.card-change.down {
    color: #fe5555;
}

/* Globe Aesthetic Refresh */
.orbital-globe {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    /* Ensures circular shape */
    opacity: 1;
    background: transparent;
}

.orbital-globe img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    /* Removes black backgrounds from GIFs */
}

@media (max-width: 768px) {
    .orbital-title {
        font-size: 2.5rem;
    }

    .orbital-deck {
        padding: 60px 20px;
        border-radius: 30px;
    }
}

/* --- CFD Products V2: Premium Glassmorphic Design --- */
.cfd-products-v2 {
    padding: 140px 0;
    background: linear-gradient(180deg, #020202 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Particles */
.cfd-products-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(0, 208, 156, 0.03) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(0, 208, 156, 0.04) 0%,
            transparent 50%
        );
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.cfd-header-v2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.cfd-super-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        rgba(0, 208, 156, 0.1),
        rgba(0, 208, 156, 0.05)
    );
    border: 1px solid rgba(0, 208, 156, 0.3);
    border-radius: 30px;
    color: #00d09c;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 208, 156, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 208, 156, 0.4);
    }
}

.cfd-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cfd-main-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

/* Premium Flex Grid (Centered) */
.cfd-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Ultimate Glassmorphic Card */
.cfd-card-v2 {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: pointer;
    flex: 0 1 400px;
    /* Controlled width for flex-centering */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cfd-card-v2::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 208, 156, 0.4), transparent);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.cfd-card-v2:hover::before {
    opacity: 1;
}

.cfd-card-v2:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 208, 156, 0.3);
    box-shadow: 0 25px 60px rgba(0, 208, 156, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* Floating Icon Container */
.cfd-icon-float {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(0, 208, 156, 0.1),
        rgba(0, 208, 156, 0.05)
    );
    border: 2px solid rgba(0, 208, 156, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.5s ease;
}

.cfd-icon-float::after {
    content: "";
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(0, 208, 156, 0.1);
    border-radius: 50%;
    animation: iconRipple 2.5s ease-out infinite;
}

@keyframes iconRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.cfd-card-v2:hover .cfd-icon-float {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(
        135deg,
        rgba(0, 208, 156, 0.2),
        rgba(0, 208, 156, 0.1)
    );
    box-shadow: 0 10px 30px rgba(0, 208, 156, 0.3);
}

.cfd-icon-float i,
.cfd-icon-float svg {
    width: 32px !important;
    height: 32px !important;
    color: #ffffff !important;
    stroke: #ffffff !important;
    /* Force SVG stroke to white */
    filter: drop-shadow(0 0 20px rgba(0, 208, 156, 0.8));
}

/* Dynamic Badge */
.cfd-tag-v2 {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 6px 14px;
    background: rgba(0, 208, 156, 0.1);
    border: 1px solid rgba(0, 208, 156, 0.3);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #00d09c;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cfd-card-v2:hover .cfd-tag-v2 {
    transform: scale(1.1);
    background: rgba(0, 208, 156, 0.2);
    box-shadow: 0 5px 15px rgba(0, 208, 156, 0.3);
}

/* Card Image Visual */
.cfd-card-img-wrap {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    margin-top: 25px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.cfd-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.8;
}

.cfd-card-v2:hover .cfd-card-img-wrap img {
    transform: scale(1.1);
    opacity: 1;
}

/* Card Content */
.cfd-card-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
    text-align: center;
    transition: color 0.3s ease;
}

.cfd-card-v2:hover .cfd-card-title {
    color: #00d09c;
}

.cfd-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    text-align: center;
    transition: color 0.3s ease;
}

.cfd-card-v2:hover .cfd-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

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

    .cfd-grid-v2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cfd-card-v2 {
        padding: 40px 25px;
    }
}

/* --- FINAL WHITE-OUT ENFORCEMENT --- */
.cfd-products-v2 i[data-lucide],
.cfd-products-v2 svg,
.cfd-icon-float i,
.cfd-icon-float svg {
    color: var(--primary);
}

/* --- Institutional Foundations V2: Security Hub --- */
.trust-foundation-v2 {
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 208, 156, 0.05),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(0, 208, 156, 0.03),
            transparent 30%
        ),
        #0a0f0e;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.trust-foundation-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    opacity: 0.05;
    pointer-events: none;
}

.foundation-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Left: Cinematic Visual Hub */
.foundation-visual {
    position: relative;
    padding: 40px;
}

.shield-orbit {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.main-shield-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 208, 156, 0.2);
    border-radius: 40px;
    padding: 30px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(0, 208, 156, 0.05);
    position: relative;
    z-index: 2;
}

.phone-mockup-wrapper {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s ease;
}

.phone-mockup-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Floating Metrics */
.trust-metric-tag {
    position: absolute;
    background: rgba(10, 15, 14, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 208, 156, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.tag-verified {
    top: 10%;
    right: -5%;
    animation: floatY 4s ease-in-out infinite;
}
.tag-secure {
    bottom: 15%;
    left: -10%;
    animation: floatY 5s ease-in-out infinite reverse;
}

.trust-metric-tag i {
    color: #00d09c;
    font-size: 1.2rem;
}

.trust-metric-tag span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Right: Content & Pillar Grid */
.foundation-content {
    color: #fff;
}

.foundation-badge {
    background: rgba(0, 208, 156, 0.1);
    color: #00d09c;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 208, 156, 0.2);
}

.foundation-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.foundation-title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

.foundation-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 45px;
    line-height: 1.7;
}

/* Pillars Grid */
.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 208, 156, 0.3);
    transform: translateX(10px);
}

.pillar-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(0, 208, 156, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00d09c;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon-wrap {
    background: #00d09c;
    color: #0a0f0e;
    box-shadow: 0 0 20px rgba(0, 208, 156, 0.4);
}

.pillar-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.pillar-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Animations */
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Foundations */
@media (max-width: 1100px) {
    .foundation-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .foundation-badge {
        margin: 0 auto 25px;
    }

    .pillar-card {
        text-align: left;
    }

    .foundation-visual {
        order: -1;
    }
}

@media (max-width: 500px) {
    .trust-metric-tag {
        display: none; /* Simplify for very small screens */
    }

    .foundation-title {
        font-size: 2rem;
    }
}
/* --- Trading Journey V2: Cinematic Onboarding --- */
.trading-steps-v2 {
    padding: 120px 0;
    background: #080c0b;
    position: relative;
    overflow: hidden;
}

.trading-steps-v2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(0, 208, 156, 0.05),
        transparent 70%
    );
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.steps-v2-header {
    text-align: center;
    margin-bottom: 80px;
}

.steps-v2-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.steps-v2-header h2 span {
    color: #00d09c;
}

.journey-path {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Connecting Pulse Line */
.journey-path::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 208, 156, 0.2),
        transparent
    );
    z-index: 1;
}

.step-card-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 32px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.step-card-v2:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 208, 156, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.step-icon-v2 {
    width: 80px;
    height: 80px;
    background: rgba(0, 208, 156, 0.1);
    border: 1px solid rgba(0, 208, 156, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #00d09c;
    font-size: 2rem;
    transition: all 0.5s ease;
}

.step-card-v2:hover .step-icon-v2 {
    background: #00d09c;
    color: #080c0b;
    box-shadow: 0 0 30px rgba(0, 208, 156, 0.4);
    transform: rotateY(360deg);
}

.step-badge-v2 {
    position: absolute;
    top: -20px;
    left: 40px;
    background: #00d09c;
    color: #080c0b;
    font-size: 1.5rem;
    font-weight: 900;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 208, 156, 0.3);
}

.step-card-v2 h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.step-card-v2 p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Footer inside steps */
.journey-cta {
    margin-top: 80px;
    text-align: center;
}

.journey-cta h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1000px) {
    .journey-path {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .journey-path::before {
        display: none;
    }
    .step-card-v2 {
        text-align: center;
    }
    .step-icon-v2 {
        margin-left: auto;
        margin-right: auto;
    }
    .step-badge-v2 {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* --- Partnership Ecosystem V2: IB Hub --- */
.ib-foundation-v2 {
    background: #060a09;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.ib-foundation-v2::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(0, 208, 156, 0.05),
        transparent 70%
    );
    pointer-events: none;
}

.ib-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Content & Benefits */
.ib-content-v2 {
    color: #fff;
}

.ib-badge {
    background: rgba(0, 208, 156, 0.1);
    color: #00d09c;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 208, 156, 0.2);
}

.ib-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.ib-title span {
    display: block;
    color: #00d09c;
    filter: drop-shadow(0 0 10px rgba(0, 208, 156, 0.3));
}

.ib-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 45px;
    line-height: 1.7;
}

.ib-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.benefit-item-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.benefit-item-v2:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 208, 156, 0.3);
    transform: translateX(10px);
}

.benefit-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(0, 208, 156, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d09c;
    flex-shrink: 0;
}

.benefit-item-v2 span {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Right: Visual Network */
.ib-visual-v2 {
    position: relative;
}

.network-hub {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 208, 156, 0.2);
    border-radius: 40px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.network-hub::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0, 208, 156, 0.1),
        transparent 70%
    );
}

.ib-mascot-visual {
    width: 80%;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: pulseMascot 4s ease-in-out infinite;
}

@keyframes pulseMascot {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.partner-tag {
    position: absolute;
    background: rgba(10, 15, 14, 0.9);
    border: 1px solid rgba(0, 208, 156, 0.4);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.pt-1 {
    top: 15%;
    right: 10%;
    animation: floatY 5s ease-in-out infinite;
}
.pt-2 {
    bottom: 20%;
    left: 5%;
    animation: floatY 6s ease-in-out infinite reverse;
}

/* Responsive */
@media (max-width: 1000px) {
    .ib-grid-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .ib-badge {
        margin: 0 auto 25px;
    }
    .benefit-item-v2 {
        text-align: left;
    }
    .ib-visual-v2 {
        order: -1;
    }
}
/* --- Institutional Action Card V2: Cinematic CTA --- */
.institutional-cta-wrapper {
    padding: 100px 0;
    background: #060a09;
    position: relative;
    overflow: hidden;
}

.cta-card-v2 {
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 208, 156, 0.15),
            transparent 50%
        ),
        rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 208, 156, 0.3);
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.cta-card-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    opacity: 0.1;
    pointer-events: none;
}

.cta-icon-float {
    position: absolute;
    color: rgba(0, 208, 156, 0.2);
    font-size: 8rem;
    pointer-events: none;
    z-index: 0;
}

.icon-top-left {
    top: -20px;
    left: -20px;
    transform: rotate(-15deg);
}
.icon-bottom-right {
    bottom: -20px;
    right: -20px;
    transform: rotate(15deg);
}

.cta-card-v2 h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

.cta-card-v2 h2 span {
    color: #00d09c;
    display: block;
    font-weight: 500;
    font-size: 0.5em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cta-card-v2 p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions-v2 {
    display: flex;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.btn-premium-v2 {
    padding: 20px 45px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-premium-v2.primary {
    background: #00d09c;
    color: #060a09;
    box-shadow: 0 15px 30px rgba(0, 208, 156, 0.3);
}

.btn-premium-v2.primary:hover {
    transform: translateY(-8px) scale(1.05);
    background: #00ffbf;
    box-shadow: 0 20px 40px rgba(0, 208, 156, 0.5);
}

.btn-premium-v2.outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-premium-v2.outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-card-v2 {
        padding: 60px 30px;
    }
    .cta-actions-v2 {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-premium-v2 {
        justify-content: center;
    }
    .cta-icon-float {
        display: none;
    }
}
/* --- Cinematic Footer V2: Institutional Hub --- */
.main-footer {
    background: #080c0b;
    color: #fff;
    padding: 100px 0 0;
    position: relative;
    border-top: 1px solid rgba(0, 208, 156, 0.1);
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(0, 208, 156, 0.2));
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
}

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

/* Contact List Special Styling */
.contact-list li {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-list li i {
    color: #00d09c;
    flex-shrink: 0;
    width: 18px !important;
}

/* Social Icon Grid */
.social-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d09c;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: #00d09c;
    color: #080c0b;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 208, 156, 0.3);
}

/* Disclaimer & Regulatory Bottom */
.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

.footer-disclaimer p {
    margin-bottom: 20px;
}

.footer-disclaimer strong {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    background: #040605;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        text-align: left;
    }
    .footer-brand {
        grid-column: span 2;
        margin-bottom: 20px;
    }
    .social-icons {
        justify-content: start;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Why Choose AngelSky Section Styles */
.as-why-choose {
    background-color: #0d0d0d;
    padding: 60px 0;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.as-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.as-why-header {
    text-align: center;
    margin-bottom: 50px;
}

.as-why-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
}

.as-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.as-highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.as-benefit-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.as-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e0e0e0;
    transition: all 0.3s ease;
    cursor: default;
}

.as-tag:hover {
    background: rgba(0, 208, 156, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 208, 156, 0.1);
}

.as-why-banner {
    background: linear-gradient(
        135deg,
        rgba(0, 208, 156, 0.2) 0%,
        rgba(13, 13, 13, 1) 100%
    );
    border: 1px solid rgba(0, 208, 156, 0.3);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.as-why-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(0, 208, 156, 0.1) 0%,
        transparent 70%
    );
    z-index: 0;
}

.as-banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.as-banner-headline {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.as-banner-text {
    font-size: 1.1rem;
    color: #bbbbbb;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.as-banner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.as-btn-solid {
    background-color: #ffffff;
    color: var(--bg-dark);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.as-btn-solid:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 208, 156, 0.2);
}

.as-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.as-btn-outline:hover {
    background-color: #ffffff;
    color: var(--bg-dark);
    transform: scale(1.05);
}

.as-banner-visual {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.as-banner-img {
    width: 110%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    animation: as-float 6s ease-in-out infinite;
}

@keyframes as-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Styles for Why Choose Section */
@media (max-width: 991px) {
    .as-why-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .as-banner-text {
        margin: 0 auto 40px;
    }

    .as-banner-actions {
        justify-content: center;
    }

    .as-banner-visual {
        justify-content: center;
        margin-top: 50px;
        flex: 1;
    }

    .as-banner-img {
        width: 100%;
        max-width: 400px;
    }

    .as-why-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .as-why-title {
        font-size: 1.75rem;
    }

    .as-banner-headline {
        font-size: 1.5rem;
    }

    .as-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .as-banner-actions {
        flex-direction: column;
    }

    .as-btn-solid,
    .as-btn-outline {
        width: 100%;
    }
}

/* --- All Products Page Styles --- */

.as-market-section {
    padding: 100px 0;
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.as-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.as-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.as-title-divider {
    height: 4px;
    width: 100px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );
    margin: 0 auto;
    border-radius: 2px;
}

.as-market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.as-market-card {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.as-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 208, 156, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.as-market-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 208, 156, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.as-market-card:hover .as-card-bg {
    opacity: 1;
}

.as-card-content {
    position: relative;
    z-index: 10;
}

.as-market-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.as-market-card:hover .as-market-icon-wrapper {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 208, 156, 0.15);
}

.as-market-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.as-market-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.as-market-desc {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 3.2em;
}

.as-market-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.as-arrow-icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.as-market-link:hover {
    color: #fff;
}

.as-market-link:hover .as-arrow-icon {
    transform: translateX(5px);
}

/* --- CFD Definition Section --- */
.as-cfd-section {
    padding: 120px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.as-cfd-blob-1,
.as-cfd-blob-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

.as-cfd-blob-1 {
    top: -20%;
    right: -10%;
    background: var(--primary);
}

.as-cfd-blob-2 {
    bottom: -20%;
    left: -10%;
    background: #004d40;
}

.as-cfd-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.as-cfd-text-col,
.as-cfd-visual-col {
    flex: 1;
}

.as-cfd-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.1;
}

.as-cfd-description {
    font-size: 1.25rem;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.as-cfd-description-sub {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
}

.as-cfd-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    backdrop-filter: blur(20px);
}

.as-cfd-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.as-cfd-list {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    list-style: none;
}

.as-cfd-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
}

.as-cfd-item:last-child {
    margin-bottom: 0;
}

.as-cfd-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 208, 156, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.as-cfd-item:hover .as-cfd-icon-box {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.as-cfd-icon {
    width: 24px;
    height: 24px;
}

.as-cfd-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.as-cfd-item-desc {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .as-cfd-grid {
        flex-direction: column;
        gap: 50px;
    }

    .as-section-title,
    .as-cfd-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .as-market-grid {
        grid-template-columns: 1fr;
    }

    .as-cfd-card {
        padding: 30px;
    }

    .as-cfd-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .as-cfd-icon-box {
        margin: 0 auto;
    }
}
