/* ==========================================================================
   VFX Premium Forex Landing Page Stylesheet
   Design Language: Dark Cyber-Financial Obsidian, Glassmorphism & Neon Glows
   ========================================================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;550;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --bg-primary: #06050b;
    --bg-secondary: #0c0a14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glow: rgba(255, 255, 255, 0.07);

    --color-text-primary: #ffffff;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;

    --color-cyan: #00f2fe;
    --color-blue: #3b82f6;
    --color-purple: #8b5cf6;
    --color-magenta: #d946ef;
    --color-emerald: #00e676;
    --color-red: #ff1744;

    --gradient-hero: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #00f2fe 0%, #8b5cf6 100%);
    --gradient-emerald: linear-gradient(135deg, #00e676 0%, #00b0ff 100%);
    --gradient-red: linear-gradient(135deg, #ff1744 0%, #f50057 100%);
    --gradient-dark: linear-gradient(180deg, #0c0a14 0%, #06050b 100%);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-neon: 0 0 20px rgba(0, 242, 254, 0.15);
    --shadow-neon-purple: 0 0 20px rgba(139, 92, 246, 0.15);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-smooth);
}

/* Background animated gradient blobs */
.mesh-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(135deg, #06050b 0%, #0b0914 50%, #030810 100%);
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: float-around 25s infinite alternate ease-in-out;
}

.mesh-blob-1 {
    top: -10%;
    left: 20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--color-cyan) 0%, rgba(0, 0, 0, 0) 70%);
    animation-duration: 20s;
}

.mesh-blob-2 {
    bottom: -10%;
    right: 15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-purple) 0%, rgba(0, 0, 0, 0) 70%);
    animation-duration: 28s;
    animation-delay: -5s;
}

.mesh-blob-3 {
    top: 40%;
    left: -10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--color-magenta) 0%, rgba(0, 0, 0, 0) 70%);
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(8%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-5%, -5%) scale(0.95);
    }
}

/* Glassmorphism Styles */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.glass-panel-hover:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

/* Reveal scroll base styles */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

/* Header & Sticky Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(6, 5, 11, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-accent);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

.logo-icon svg {
    fill: #ffffff;
    width: 18px;
    height: 18px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 550;
    font-size: 16px;
    color: #fff;
}

.nav-links a:hover {
    color: var(--color-text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    font-weight: 550;
    color: var(--color-text-secondary);
}

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

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-neon);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
}

.btn-secondary {
    border: 1px solid var(--border-glow);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-primary);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px 0;
    overflow: hidden;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.15);
    color: var(--color-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-tag-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-cyan);
    animation: pulse 1.5s infinite;
}

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

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.9);
        opacity: 1;
    }
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-ctas .btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
}

.hero-ctas .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
}

.hero-trust {
    display: flex;
    gap: 40px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Floating Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-glowing-container {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
}

.card-glowing-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-hero);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(24px);
}

.hero-premium-card {
    padding: 24px;
    width: 100%;
    overflow: hidden;
}

.card-header-fx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-title-fx {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-status {
    font-size: 0.75rem;
    background: rgba(0, 230, 118, 0.1);
    color: var(--color-emerald);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.card-balance-section {
    margin-bottom: 24px;
}

.balance-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.balance-currency {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/* Mini trade ledger */
.trade-ledger {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ledger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.ledger-pair {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ledger-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: bold;
}

.ledger-names {
    display: flex;
    flex-direction: column;
}

.ledger-symbol {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

.ledger-type {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.ledger-values {
    text-align: right;
}

.ledger-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.ledger-profit {
    font-size: 0.75rem;
    font-weight: 600;
}

.ledger-profit.up {
    color: var(--color-emerald);
}

.ledger-profit.down {
    color: var(--color-red);
}

/* Live Ticker Bar */
.ticker-section {
    position: relative;
    z-index: 10;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(6, 5, 11, 0.4);
    backdrop-filter: blur(4px);
}

.ticker-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

/* Hide scrollbar, but allow swiping */
.ticker-wrapper::-webkit-scrollbar {
    height: 4px;
}

.ticker-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.ticker-card {
    flex: 1;
    min-width: 190px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticker-card-info {
    display: flex;
    flex-direction: column;
}

.ticker-pair-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.ticker-price {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    transition: color 0.15s ease;
}

.ticker-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-align: right;
}

.ticker-change.positive {
    color: var(--color-emerald);
    background: rgba(0, 230, 118, 0.08);
}

.ticker-change.negative {
    color: var(--color-red);
    background: rgba(255, 23, 68, 0.08);
}

/* Price Flash Animations */
.flash-up {
    color: var(--color-emerald) !important;
}

.flash-down {
    color: var(--color-red) !important;
}

/* Market Platform / Interactive Chart Section */
.market-sec {
    padding: 100px 0;
}

.sec-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-subtitle {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-cyan);
    font-weight: 600;
    margin-bottom: 12px;
}

.sec-title {
    font-size: 2.5rem;
    max-width: 600px;
    line-height: 1.2;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.chart-module {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.chart-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 8px;
}

.chart-tab-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 550;
    color: var(--color-text-secondary);
}

.chart-tab-btn:hover {
    color: var(--color-text-primary);
}

.chart-tab-btn.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-meta-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.meta-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-emerald);
}

.meta-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-emerald);
    box-shadow: 0 0 6px var(--color-emerald);
    animation: pulse 1.5s infinite;
}

.canvas-container {
    position: relative;
    width: 100%;
    height: 380px;
}

#market-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Calculator Widget styling */
.calculator-module {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.calc-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.calc-title {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.calc-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.calc-row {
    margin-bottom: 20px;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 550;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.calc-label span.value-bold {
    color: var(--color-text-primary);
    font-weight: 700;
}

/* Range input styling */
.range-slider {
    position: relative;
}

.range-slider input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
    transition: var(--transition-smooth);
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Select option styling */
.calc-select-wrapper {
    position: relative;
}

.calc-select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    appearance: none;
    outline: none;
    cursor: pointer;
}

.calc-select:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.calc-select-wrapper::after {
    content: '▼';
    font-size: 0.65rem;
    color: var(--color-text-muted);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Leverage Selector Grid */
.leverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.lev-btn {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
}

.lev-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
}

.lev-btn.active {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-neon);
}

/* Calculator Output display list */
.calc-outputs {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.output-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.out-label {
    color: var(--color-text-muted);
}

.out-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.out-val.highlight {
    color: var(--color-cyan);
    font-size: 1.05rem;
}

.calc-cta {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    justify-content: center;
}

/* Features Grid Section */
.features-sec {
    padding: 100px 0;
    position: relative;
}

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

.feature-card {
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-cyan);
    font-size: 1.25rem;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-neon);
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Pricing Grid Section */
.pricing-sec {
    padding: 100px 0;
}

/* Pricing Switcher Toggle */
.billing-switcher {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.switch-label {
    font-weight: 600;
    font-size: 0.9rem;
}

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

.switch-container {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: .4s;
    border-radius: 34px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-text-primary);
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

input:checked+.switch-slider {
    background: var(--gradient-accent);
    border-color: transparent;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.25);
}

input:checked+.switch-slider:before {
    transform: translateX(24px);
    background-color: #ffffff;
}

.save-badge {
    background: rgba(0, 230, 118, 0.1);
    color: var(--color-emerald);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 30px;
}

/* Pricing plan cards layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card.popular {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box, var(--gradient-accent) border-box;
}

.plan-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-neon);
}

.plan-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.plan-pricing-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.plan-currency {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
}

.plan-rate {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
}

.plan-term {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-feature-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-feature-item svg {
    color: var(--color-emerald);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.plan-feature-item.unsupported {
    color: var(--color-text-muted);
}

.plan-feature-item.unsupported svg {
    color: var(--color-text-muted);
    opacity: 0.4;
}

.plan-cta {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    justify-content: center;
}

@keyframes price-pop-anim {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.price-pop {
    animation: price-pop-anim 0.4s ease;
}

/* Call to Action Section */
.cta-sec {
    padding: 100px 0;
}

.cta-banner {
    position: relative;
    padding: 60px 48px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(0, 242, 254, 0.12), transparent 60%);
    z-index: -1;
}



.cta-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-buttons .btn-primary {
    padding: 14px 28px;
}

.cta-buttons .btn-secondary {
    padding: 14px 28px;
}

/* Footer Section */
footer {
    background: rgba(6, 5, 11, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
}

.social-btn:hover {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer-menu a:hover {
    color: var(--color-text-primary);
    padding-left: 4px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-newsletter-p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--color-cyan);
}

.newsletter-submit-btn {
    background: var(--gradient-accent);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
}

.newsletter-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

/* Regulatory warnings (Required for forex trading sites) */
.footer-regulatory-warning {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-bottom: 30px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--color-text-secondary);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo img {
        height: 45px;
    }

    /* .header-ctas .btn-login,
    .header-ctas .btn-primary {
        display: none !important;
    } */

    /* Mobile Navigation Drawer */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }



    /* Hamburger to X cross */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

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

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

    .about-panel {
        padding: 24px;
    }

    .pm-card {
        padding: 20px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .forex-intro-title,
    .bot-title {
        font-size: 2rem;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

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

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

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ==========================================================================
   VFX Trade New Additions (Logo, Purpose/Mission, Forex Intro, Bot Console)
   ========================================================================== */

/* Logo image scaling */
.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Purpose & Mission Section */
.purpose-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pm-card {
    padding: 36px;
    position: relative;
    border-radius: 16px;
}

.pm-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 242, 254, 0.08);
    color: var(--color-cyan);
}

.pm-card:nth-child(2) .pm-icon {
    background: rgba(139, 92, 246, 0.08);
    color: var(--color-purple);
}

.pm-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* What is Forex Trading Section */
.forex-intro-sec {
    padding: 100px 0;
    position: relative;
}

.forex-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.forex-intro-text {
    display: flex;
    flex-direction: column;
}

.forex-intro-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.forex-intro-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.forex-intro-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.forex-intro-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.forex-intro-image-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-accent);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.forex-intro-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

/* AI Bot Section */
.bot-sec {
    padding: 100px 0;
    position: relative;
}

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

.bot-left {
    display: flex;
    flex-direction: column;
}

.bot-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bot-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto 10px auto;
}

.bot-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: var(--gradient-hero);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(28px);
}

.bot-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.bot-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bot-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bot-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.btn-bot-toggle {
    align-self: flex-start;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
}

.btn-bot-toggle.active {
    background: var(--gradient-red);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.35);
}

/* Console Styling */
.bot-console-wrapper {
    border-radius: 16px;
    padding: 20px;
    background: #020104;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: var(--shadow-card);
}

.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.console-title-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.console-dots {
    display: flex;
    gap: 6px;
}

.console-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f56;
}

.console-dots span:nth-child(2) {
    background: #ffbd2e;
}

.console-dots span:nth-child(3) {
    background: #27c93f;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-badge.active {
    background: rgba(0, 230, 118, 0.08);
    color: var(--color-emerald);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.1);
}

.status-badge.active::before {
    background-color: var(--color-emerald);
    box-shadow: 0 0 6px var(--color-emerald);
    animation: pulse 1.5s infinite;
}

.status-badge.inactive {
    background: rgba(255, 23, 68, 0.08);
    color: var(--color-red);
}

.status-badge.inactive::before {
    background-color: var(--color-red);
}

.bot-console {
    height: 250px;
    overflow-y: auto;
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 8px;
}

.bot-console::-webkit-scrollbar {
    width: 4px;
}

.bot-console::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.console-line {
    display: flex;
    gap: 8px;
    word-break: break-all;
}

.console-line .timestamp {
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.console-line.system .message {
    color: var(--color-purple);
}

.console-line.success .message {
    color: var(--color-emerald);
}

.console-line.warning .message {
    color: #f59e0b;
}

.console-line.danger .message {
    color: var(--color-red);
}

.console-line.info .message {
    color: var(--color-text-secondary);
}

/* Additional responsive rules */
@media (max-width: 1024px) {
    .purpose-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .forex-intro-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .btn-bot-toggle {
        align-self: center;
    }
}

/* Hero composition visual layers */
.hero-composition {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0.75;
}

.hero-composition .floating-card {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 82%;
    z-index: 2;
    animation: float-card 6s ease-in-out infinite alternate;
}

@keyframes float-card {
    0% {
        transform: translateY(0px) rotate(-0.5deg);
        box-shadow: var(--shadow-card);
    }

    100% {
        transform: translateY(-14px) rotate(0.5deg);
        box-shadow: 0 20px 45px 0 rgba(0, 0, 0, 0.55), 0 0 15px rgba(0, 242, 254, 0.1);
    }
}

/* Responsive adjustment for composition */
@media (max-width: 1024px) {
    .hero-composition {
        max-width: 480px;
        margin: 0 auto;
        height: 440px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .hero-composition {
        height: 340px;
    }

    .hero-composition .floating-card {
        width: calc(100% - 10px);
        bottom: -10px;
        right: -5px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* About Section 2-Column Grid Adjustments */
.about-panel {
    padding: 48px;
    border-radius: 24px;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
    z-index: 2;
    position: relative;
}

.about-bg-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* Responsive configurations for About Grid */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-content .purpose-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}