/* ===================================
   FX MAKO - PREMIUM DARK GLASSMORPHISM 2026
   Global Stylesheet
   =================================== */

:root {
    /* Core Dark Theme */
    --bg-void: #050508;
    --bg-deep: #0a0d14;
    --bg-dark: #0f1319;
    --bg-card: #141820;
    --bg-elevated: #1a1f2e;
    --bg-hover: #1f2537;

    /* Primary Accent - Teal/Cyan */
    --accent-primary: #00D4AA;
    --accent-secondary: #00B894;
    --accent-glow: rgba(0, 212, 170, 0.5);
    --accent-soft: rgba(0, 212, 170, 0.15);

    /* Secondary Accents - Teal/Cyan only */
    --cyan-bright: #00E5FF;
    --teal-deep: #008B7A;
    --teal-light: #40E0D0;

    /* Status Colors */
    --green-profit: #10B981;
    --red-loss: #EF4444;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-glow: 0 0 60px rgba(0, 212, 170, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ambient Background Orbs */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal-deep) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cyan-bright) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

/* Live Market Ticker */
.market-ticker {
    background: rgba(5, 5, 8, 0.95);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.ticker-wrap {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    white-space: nowrap;
    font-size: 0.85rem;
}

.ticker-symbol {
    color: var(--text-primary);
    font-weight: 600;
}

.ticker-price {
    color: var(--text-secondary);
}

.ticker-change {
    font-weight: 600;
    font-size: 0.8rem;
}

.ticker-change.up { color: var(--green-profit); }
.ticker-change.down { color: var(--red-loss); }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   HEADER - Glassmorphic Design
   =================================== */

.header {
    position: fixed;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1400px;
    z-index: 1000;
    background: rgba(20, 24, 32, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background: rgba(10, 13, 20, 0.85);
    border-color: rgba(0, 212, 170, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 60px rgba(0, 212, 170, 0.1);
}

.nav {
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand .logo,
.logo {
    height: 36px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #fff;
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.2);
}

.nav-link .arrow {
    font-size: 0.55rem;
    opacity: 0.6;
    transition: transform 0.3s, opacity 0.3s;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 200px;
    background: rgba(20, 24, 32, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-ghost,
.btn-text {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover,
.btn-text:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--teal-deep) 100%);
    color: #fff;
    border: 1px solid rgba(0, 212, 170, 0.3);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.5);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: rgba(0, 212, 170, 0.1);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.2);
}

.btn-lg,
.btn-large {
    padding: 14px 32px;
    font-size: 0.95rem;
    border-radius: 10px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ===================================
   LAYOUT
   =================================== */

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

.section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

.section-dark,
.bg-light {
    background: var(--bg-deep);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-soft);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   PAGE HERO (Inner Pages)
   =================================== */

.page-hero,
.hero {
    padding: 160px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero .container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* Hero Visual Placeholder (when no image) */
.hero-visual {
    flex: 1;
    max-width: 500px;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 139, 122, 0.1) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(40px);
}

.hero-visual-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   CARDS
   =================================== */

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Product/Feature Cards - Premium Glassmorphic */
.product-card,
.feature-card,
.instrument-card {
    background: linear-gradient(165deg, rgba(16, 24, 32, 0.95) 0%, rgba(10, 16, 22, 0.98) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Feature card - top glow line on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card:hover,
.feature-card:hover,
.instrument-card:hover {
    border-color: rgba(0, 212, 170, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 170, 0.15);
}

.product-icon,
.feature-icon,
.instrument-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.05) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.15), inset 0 0 10px rgba(0, 212, 170, 0.1);
}

.product-icon svg,
.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.4));
}

.product-title,
.product-card h3,
.feature-card h3,
.instrument-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-description,
.product-card p,
.feature-card p,
.instrument-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link,
.instrument-link {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.product-link:hover,
.instrument-link:hover {
    gap: 12px;
}

/* ===================================
   GRIDS
   =================================== */

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

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-bar {
    position: relative;
    z-index: 1;
    background: var(--bg-deep);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 60px 24px;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-value,
.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

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

/* ===================================
   ACCOUNT CARDS
   =================================== */

.account-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}

.account-card:hover {
    border-color: rgba(0, 212, 170, 0.5);
    transform: translateY(-4px);
}

.account-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, transparent 100%);
}

.account-badge,
.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--bg-void);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.account-header {
    text-align: center;
    margin-bottom: 24px;
}

.account-header h3,
.account-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.account-tagline,
.account-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.account-feature-main,
.account-highlight {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 24px;
}

.account-value,
.account-highlight .value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.account-label,
.account-highlight .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.account-features {
    list-style: none;
    margin-bottom: 32px;
}

.account-features li {
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
}

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

.account-features li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: bold;
}

/* ===================================
   PLATFORM TABS
   =================================== */

.platform-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-button:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(0, 212, 170, 0.05);
}

.tab-button.active {
    background: var(--accent-soft);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

.platform-details h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.platform-details p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.platform-image img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   FORMS
   =================================== */

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* ===================================
   TABLES
   =================================== */

.table-container {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

th, td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

th {
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    color: var(--text-secondary);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(0, 212, 170, 0.03);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    position: relative;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-card) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2,
.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-content p,
.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-buttons,
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--bg-void);
    border-top: 1px solid var(--glass-border);
    padding: 80px 24px 40px;
    position: relative;
    z-index: 1;
}

.footer-content,
.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.3));
}

.footer-description,
.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-links a,
.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover,
.social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-void);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-legal p {
    margin-bottom: 16px;
}

.footer-legal strong {
    color: var(--text-secondary);
}

.footer-legal a {
    color: var(--accent-primary);
}

.footer-copyright {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
    .section-title { font-size: 2.25rem; }
    .page-hero h1 { font-size: 2.5rem; }
    .header { width: calc(100% - 32px); }
    .products-grid,
    .features-grid,
    .instruments-grid { grid-template-columns: repeat(2, 1fr); }
    .accounts-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content,
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (max-width: 968px) {
    .header {
        width: calc(100% - 24px);
        border-radius: 12px;
    }
    .nav { padding: 0 20px; }
    .nav-menu, .nav-actions { display: none; }
    .nav-toggle { display: flex; }

    .page-hero,
    .hero { padding: 140px 24px 60px; }
    .page-hero h1,
    .hero-title { font-size: 2.25rem; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

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

    .hero-visual,
    .hero-image {
        max-width: 100%;
        order: -1;
    }

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

    .platform-info { grid-template-columns: 1fr; padding: 32px; }
    .platform-image { order: -1; }

    .footer-content,
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .header { top: 44px; }
    .section { padding: 60px 16px; }
    .page-hero,
    .hero { padding: 130px 16px 50px; }
    .page-hero h1,
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.85rem; }
    .hero-visual { height: 250px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-value, .stat-number { font-size: 2rem; }

    .cta-content h2, .cta-title { font-size: 2rem; }
    .cta-buttons, .cta-actions { flex-direction: column; }

    .footer-content,
    .footer-grid { grid-template-columns: 1fr; }

    .platform-tabs { gap: 8px; }
    .tab-button { padding: 12px 20px; font-size: 0.85rem; }
}

/* ========================================
   GLOBAL PREMIUM THEME - Glassmorphic Design
   ======================================== */

/* Transparent Ticker */
.market-ticker {
    background: transparent !important;
    border-bottom: none !important;
    overflow: hidden;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

/* Unified blur backdrop - covers both ticker and header seamlessly */
.header-blur-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg,
        rgba(6, 10, 16, 0.95) 0%,
        rgba(6, 10, 16, 0.9) 25%,
        rgba(6, 10, 16, 0.75) 50%,
        rgba(6, 10, 16, 0.4) 75%,
        transparent 100%);
    -webkit-backdrop-filter: saturate(200%) blur(24px);
    backdrop-filter: saturate(200%) blur(24px);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 40%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.4) 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 40%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.4) 80%, transparent 100%);
}

/* Show backdrop when scrolled */
body.scrolled .header-blur-backdrop {
    opacity: 1;
}

/* Ticker styling */
.ticker-item {
    position: relative;
    padding: 0 24px;
}

.ticker-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 170, 0.3) 50%, transparent 100%);
}

.ticker-symbol {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ticker-price {
    color: rgba(148, 163, 184, 0.85);
}

.ticker-change.up {
    color: #00D4AA;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.6);
}

.ticker-change.down {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* ========================================
   GLASSMORPHIC NAVIGATION
   ======================================== */

/* Main header - transparent */
.header {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: all 0.4s ease;
}

/* Nav wrapper */
.header .nav {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Menu items */
.nav-menu {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Subtle separators between menu items */
.nav-item {
    position: relative;
}

.nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 170, 0.2) 50%, transparent 100%);
}

body.scrolled .nav-menu {
    background: transparent !important;
}

/* Bigger logo */
.nav-brand {
    margin: -12px 0;
}

.nav-brand .logo {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.4));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-brand:hover .logo {
    filter: drop-shadow(0 0 16px rgba(0, 212, 170, 0.6));
    transform: scale(1.03);
}

/* Nav actions */
.nav-actions {
    background: transparent !important;
}

/* Nav links */
.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.nav-link:hover {
    color: #fff;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.6), 0 0 16px rgba(0, 212, 170, 0.4), 0 0 24px rgba(0, 212, 170, 0.2);
}

/* Nav link underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

/* Keep underline visible when dropdown is open */
.nav-item.dropdown:hover .nav-link::after {
    width: 80%;
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

/* Keep menu text glowing when dropdown is open */
.nav-item.dropdown:hover .nav-link {
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.5), 0 0 16px rgba(0, 212, 170, 0.3);
}

/* ========================================
   DROPDOWN MENU - Premium Glassmorphic
   ======================================== */

.dropdown-menu {
    background: linear-gradient(165deg, rgba(16, 24, 34, 0.95) 0%, rgba(10, 16, 24, 0.98) 100%) !important;
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    backdrop-filter: saturate(180%) blur(24px);
    border: 1px solid rgba(0, 212, 170, 0.15) !important;
    border-top: 2px solid var(--accent-primary) !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 212, 170, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    z-index: 9999 !important;
    position: absolute !important;
    padding: 8px 0 !important;
    min-width: 220px !important;
    margin-top: 4px !important;
    overflow: visible;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Small vertical connector from underline to dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--accent-primary);
    box-shadow: 0 0 6px rgba(0, 212, 170, 0.6);
    border-radius: 1px;
    pointer-events: none;
}

/* Bottom corner accent */
.dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
    border-right: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 0 0 6px 0;
    pointer-events: none;
}

.nav-item.dropdown {
    position: relative;
    z-index: 9999;
}

/* Dropdown items */
.dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    padding: 12px 20px !important;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    position: relative;
    border-left: 2px solid transparent;
    white-space: nowrap;
}

/* Subtle separator between items */
.dropdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.06) 80%, transparent 100%);
}

/* Dropdown item hover */
.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.08) 50%, transparent 100%) !important;
    color: #fff;
    border-left-color: var(--accent-primary);
    transform: translateX(4px);
    text-shadow: 0 0 12px rgba(0, 212, 170, 0.4);
}

/* Glowing accent on hover */
.dropdown-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: var(--accent-primary);
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.8), 0 0 16px rgba(0, 212, 170, 0.4);
    border-radius: 0 2px 2px 0;
}

/* ========================================
   NAV BUTTONS
   ======================================== */

.nav-actions .btn-ghost {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-actions .btn-ghost:hover {
    border-color: rgba(0, 212, 170, 0.4);
    background: rgba(0, 212, 170, 0.1);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.2);
}

.nav-actions .btn-primary {
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.3), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-actions .btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 212, 170, 0.5), 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ========================================
   HEADER GLOW BAR
   ======================================== */

.header-glow-bar {
    position: fixed;
    top: 124px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 170, 0.2) 10%, rgba(0, 212, 170, 0.5) 50%, rgba(0, 212, 170, 0.2) 90%, transparent 100%);
    z-index: 999;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.5s ease, filter 0.5s ease;
}

body.scrolled .header-glow-bar {
    opacity: 0.8;
    filter: brightness(1.3);
}

.header-glow-bar::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 170, 0.1) 20%, rgba(0, 212, 170, 0.3) 50%, rgba(0, 212, 170, 0.1) 80%, transparent 100%);
    filter: blur(2px);
    animation: header-glow-pulse 4s ease-in-out infinite;
}

.header-glow-bar::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 10%;
    right: 10%;
    height: 50px;
    background: radial-gradient(ellipse at center top, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes header-glow-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ========================================
   FLUID SECTIONS - No Blocky Backgrounds
   ======================================== */

/* Remove default section backgrounds */
.section {
    background: transparent !important;
    position: relative;
}

.section.bg-light {
    background: transparent !important;
}

/* Ambient glow spots for sections */
.section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   ENHANCED PRODUCT CARDS - Neon Glow
   ======================================== */

.product-card {
    background: linear-gradient(165deg, rgba(16, 24, 32, 0.95) 0%, rgba(10, 16, 22, 0.98) 100%) !important;
    border: 1px solid rgba(0, 212, 170, 0.2) !important;
    border-left: none !important;
    border-radius: 12px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Glowing left edge - neon strip */
.product-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: auto !important;
    width: 3px !important;
    height: auto !important;
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.6) 0%, rgba(0, 212, 170, 1) 20%, rgba(0, 212, 170, 1) 80%, rgba(0, 212, 170, 0.6) 100%) !important;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.8), 0 0 20px rgba(0, 212, 170, 0.6), 0 0 40px rgba(0, 212, 170, 0.4);
    border-radius: 3px 0 0 3px;
    z-index: 2;
    transform: none !important;
}

/* Corner accent */
.product-card::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-top: 1px solid rgba(0, 212, 170, 0.4);
    border-right: 1px solid rgba(0, 212, 170, 0.4);
    border-radius: 0 8px 0 0;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover {
    border-color: rgba(0, 212, 170, 0.35) !important;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 170, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card:hover::before {
    box-shadow: 0 0 15px rgba(0, 212, 170, 1), 0 0 30px rgba(0, 212, 170, 0.8), 0 0 50px rgba(0, 212, 170, 0.5);
}

/* ========================================
   ENHANCED FEATURE CARDS - Glassmorphic
   ======================================== */

.feature-card {
    background: linear-gradient(165deg, rgba(16, 24, 32, 0.8) 0%, rgba(10, 16, 22, 0.9) 100%) !important;
    border: 1px solid rgba(0, 212, 170, 0.15) !important;
    border-radius: 16px !important;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Top glow line on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.feature-card:hover {
    border-color: rgba(0, 212, 170, 0.3) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 170, 0.1);
}

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

/* Feature card icon enhancement */
.feature-card .feature-icon,
.feature-icon {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.05) 100%) !important;
    border: 1px solid rgba(0, 212, 170, 0.3) !important;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.15);
}

/* ========================================
   ENHANCED ACCOUNT CARDS
   ======================================== */

.account-card {
    background: linear-gradient(165deg, rgba(16, 24, 32, 0.95) 0%, rgba(10, 16, 22, 0.98) 100%) !important;
    border: 1px solid rgba(0, 212, 170, 0.2) !important;
    border-radius: 16px !important;
    position: relative;
    overflow: visible !important;
    transition: all 0.4s ease;
}

/* Top accent bar */
.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), rgba(0, 212, 170, 0.7));
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
    z-index: 2;
}

.account-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 170, 0.35) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 170, 0.1);
}

/* ========================================
   ENHANCED STATS SECTION
   ======================================== */

.stats {
    background: transparent !important;
}

.stat-item {
    position: relative;
}

/* Glowing separator between stats */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 170, 0.5) 50%, transparent 100%);
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.3);
}

.stat-number, .stat-value {
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

/* ========================================
   ENHANCED CTA SECTIONS - Site-wide Standard
   ======================================== */

.cta,
.cta-section {
    background: transparent !important;
    padding: 80px 24px 100px;
    position: relative;
}

.cta-content, .cta-box, .cta-container {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.05) 50%, rgba(16, 24, 32, 0.9) 100%) !important;
    border: 1px solid rgba(0, 212, 170, 0.3) !important;
    border-radius: 24px !important;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 212, 170, 0.1), 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Animated glow */
.cta-content::before, .cta-box::before, .cta-container::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 40%);
    animation: cta-glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cta-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10%, -10%); }
}

.cta-content h2, .cta-box h2, .cta-container h2,
.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-content p, .cta-box p, .cta-container p,
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons, .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-content, .cta-box, .cta-container {
        padding: 48px 24px;
    }
    .cta-content h2, .cta-box h2, .cta-container h2,
    .cta-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   ENHANCED SECTION TITLES
   ======================================== */

.section-title span,
.section-header h2 span {
    color: var(--accent-primary);
    text-shadow: 0 0 30px rgba(0, 212, 170, 0.3);
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero, .page-hero {
    background: transparent !important;
}

/* Hero visual boxes */
.hero-visual, .hero-image {
    background: linear-gradient(145deg, rgba(16, 24, 32, 0.95) 0%, rgba(10, 16, 22, 0.98) 100%) !important;
    border: 1px solid rgba(0, 212, 170, 0.35) !important;
    border-radius: 16px !important;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.12), 0 0 40px rgba(0, 212, 170, 0.08), 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Corner accents for hero visual */
.hero-visual::before, .hero-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    border-top: 2px solid rgba(0, 212, 170, 0.5);
    border-left: 2px solid rgba(0, 212, 170, 0.5);
    border-radius: 4px 0 0 0;
    z-index: 2;
}

.hero-visual::after, .hero-image::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid rgba(0, 212, 170, 0.5);
    border-right: 2px solid rgba(0, 212, 170, 0.5);
    border-radius: 0 0 4px 0;
    z-index: 2;
}

/* ========================================
   LIST ITEMS WITH CHECKMARKS
   ======================================== */

.feature-list li::before,
ul.features li::before {
    color: var(--accent-primary) !important;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(6, 10, 16, 0.95) 20%) !important;
    border-top: 1px solid rgba(0, 212, 170, 0.1) !important;
}
