/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #070b14;
    --bg-darker: #04060d;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --gold: #f5b942;
    --gold-light: #ffd166;
    --gold-dark: #c9932c;
    --text-main: #ffffff;
    --text-muted: #a7b0c0;
    --text-dim: #6b7588;
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(245, 185, 66, 0.3);
    --gradient-gold: linear-gradient(135deg, #f5b942 0%, #ffd166 100%);
    --gradient-dark: linear-gradient(180deg, #070b14 0%, #04060d 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(245, 185, 66, 0.12) 0%, transparent 60%);
    --shadow-gold: 0 10px 40px rgba(245, 185, 66, 0.15);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #1a1205;
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(245, 185, 66, 0.3);
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-anim 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(245, 185, 66, 0.05);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 11, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.header.scrolled {
    background: rgba(7, 11, 20, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a1205;
    transition: var(--transition-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.1);
}

.logo-text span {
    color: var(--gold);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-mobile a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
    opacity: 0;
    animation: fadeInRight 0.4s ease forwards;
}

.nav-mobile.active a:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile.active a:nth-child(2) { animation-delay: 0.15s; }
.nav-mobile.active a:nth-child(3) { animation-delay: 0.2s; }
.nav-mobile.active a:nth-child(4) { animation-delay: 0.25s; }
.nav-mobile.active a:nth-child(5) { animation-delay: 0.3s; }
.nav-mobile.active a:nth-child(6) { animation-delay: 0.35s; }

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.nav-mobile .btn {
    width: 100%;
    margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero-bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -100px;
    left: -80px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #3b6fff;
    bottom: -50px;
    right: 10%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--gold-dark);
    top: 40%;
    right: -50px;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 100px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -80px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 40px) scale(0.85); }
    66% { transform: translate(40px, -60px) scale(1.1); }
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(245, 185, 66, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 185, 66, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 185, 66, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 185, 66, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(245, 185, 66, 0); }
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero h1 .text-gradient {
    display: block;
}

.hero p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-trust-item .check {
    width: 20px;
    height: 20px;
    background: rgba(245, 185, 66, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
    animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes checkPop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 185, 66, 0.04), transparent);
    animation: shimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -50%; }
    100% { left: 100%; }
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.hero-card-title {
    font-size: 16px;
    font-weight: 700;
}

.hero-card-badge {
    font-size: 11px;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 4px 10px;
    border-radius: 100px;
}

.hero-card-badge::before {
    content: '●';
    margin-right: 4px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 140px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.hero-chart .bar {
    flex: 1;
    background: var(--bg-darker);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.hero-chart .bar.active {
    background: var(--gradient-gold);
}

.hero-chart .bar:hover {
    filter: brightness(1.3);
    transform: scaleY(1.05);
    transform-origin: bottom;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-stat {
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    padding: 16px;
    transition: var(--transition);
}

.hero-stat:hover {
    background: rgba(245, 185, 66, 0.05);
    transform: translateY(-2px);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.hero-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat-value.green {
    color: #22c55e;
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
}

.floating-badge.badge-1 {
    top: -20px;
    right: -10px;
    animation: floatBadge1 4s ease-in-out infinite 1s;
}

.floating-badge.badge-2 {
    bottom: -20px;
    left: -15px;
    animation: floatBadge2 4s ease-in-out infinite 2s;
}

@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}

.floating-badge .icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.floating-badge.badge-1 .icon {
    background: rgba(245, 185, 66, 0.15);
    color: var(--gold);
}

.floating-badge.badge-2 .icon {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.trust-item:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

.trust-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 185, 66, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-bounce);
}

.trust-item:hover .icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(245, 185, 66, 0.15);
}

/* ===== MARKETS ===== */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.market-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.market-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 185, 66, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.market-card:hover::after {
    width: 300px;
    height: 300px;
}

.market-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.market-card:hover::before {
    transform: scaleX(1);
}

.market-icon {
    width: 56px;
    height: 56px;
    background: rgba(245, 185, 66, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: var(--transition-bounce);
}

.market-card:hover .market-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(245, 185, 66, 0.2);
}

.market-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.market-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.market-card .tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(245, 185, 66, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
    transition: var(--transition);
}

.market-card:hover .tag {
    background: rgba(245, 185, 66, 0.15);
    padding: 4px 16px;
}

/* ===== WHY CHOOSE ===== */
.why-section {
    background: var(--bg-darker);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(245, 185, 66, 0.05));
    transition: height 0.4s ease;
}

.why-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.why-card:hover::before {
    height: 100%;
}

.why-number {
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
    transition: var(--transition-bounce);
}

.why-card:hover .why-number {
    transform: scale(1.15) translateX(4px);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.steps-progress-line {
    position: absolute;
    top: 40px;
    left: 16.66%;
    height: 2px;
    background: var(--gradient-gold);
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.steps-grid.visible .steps-progress-line {
    width: 66.66%;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    margin: 0 auto 24px;
    transition: var(--transition-bounce);
}

.step-card:hover .step-number {
    background: var(--gradient-gold);
    color: #1a1205;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(245, 185, 66, 0.3);
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

.steps-cta {
    text-align: center;
    margin-top: 56px;
}

/* ===== PLATFORM BENEFITS ===== */
.platform-section {
    background: var(--bg-darker);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platform-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.platform-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius) var(--radius) 0 0;
}

.platform-visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.platform-visual-title {
    font-size: 16px;
    font-weight: 700;
}

.platform-dots {
    display: flex;
    gap: 6px;
}

.platform-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
}

.platform-dots span:first-child {
    background: var(--gold);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.platform-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: default;
}

.platform-feature:hover {
    background: rgba(245, 185, 66, 0.05);
    transform: translateX(8px);
}

.platform-feature .icon {
    width: 36px;
    height: 36px;
    background: rgba(245, 185, 66, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.platform-feature:hover .icon {
    transform: scale(1.15);
}

.platform-feature .text {
    font-size: 14px;
    font-weight: 500;
}

.platform-feature .text small {
    display: block;
    color: var(--text-dim);
    font-weight: 400;
    margin-top: 2px;
}

.platform-content .section-title {
    margin-bottom: 20px;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.platform-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.platform-list-item:hover {
    transform: translateX(6px);
}

.platform-list-item .check {
    width: 24px;
    height: 24px;
    background: rgba(245, 185, 66, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-bounce);
}

.platform-list-item:hover .check {
    background: var(--gold);
    color: #1a1205;
    transform: scale(1.2);
}

.platform-list-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-list-item p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border-gold);
    transform: translateX(8px);
    box-shadow: var(--shadow-card);
}

.contact-card .icon {
    width: 52px;
    height: 52px;
    background: rgba(245, 185, 66, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.contact-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(245, 185, 66, 0.2);
}

.contact-card .label {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.contact-card .value {
    font-size: 18px;
    font-weight: 700;
}

.contact-card a {
    color: var(--text-main);
    transition: var(--transition);
}

.contact-card:hover a {
    color: var(--gold);
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.contact-form-wrap:focus-within::after {
    width: 100%;
}

.contact-form-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.1);
    background: var(--bg-dark);
}

.form-group:focus-within label {
    color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 16px;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes successPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.form-success .icon {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #22c55e;
    margin: 0 auto 20px;
    animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes successBounce {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.form-success h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== RISK DISCLAIMER ===== */
.risk-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.risk-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.risk-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 185, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    animation: riskPulse 3s ease-in-out infinite;
}

@keyframes riskPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 185, 66, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(245, 185, 66, 0); }
}

.risk-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.risk-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.risk-content p strong {
    color: var(--text-main);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-dim);
}

.footer-bottom .links {
    display: flex;
    gap: 24px;
}

.footer-bottom .links a {
    font-size: 14px;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer-bottom .links a:hover {
    color: var(--gold);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 900;
    transition: var(--transition-bounce);
    animation: whatsappAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

@keyframes whatsappAppear {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsappRing 2s ease-out infinite;
}

@keyframes whatsappRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.anim-fade-in.visible {
    opacity: 1;
}

.anim-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.anim-flip-in {
    opacity: 0;
    transform: perspective(800px) rotateX(-20deg);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-flip-in.visible {
    opacity: 1;
    transform: perspective(800px) rotateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

.parallax {
    will-change: transform;
    transition: transform 0.1s linear;
}

.tilt {
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

.counter {
    display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-mobile {
        display: flex;
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid::before,
    .steps-progress-line {
        display: none;
    }

    .step-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-strip-inner {
        gap: 24px;
    }

    .trust-item {
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .floating-badge {
        display: none;
    }

    .orb-1 { width: 250px; height: 250px; }
    .orb-2 { width: 200px; height: 200px; }
    .orb-3 { width: 180px; height: 180px; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .markets-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust {
        gap: 16px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .anim-fade-up,
    .anim-fade-in,
    .anim-slide-left,
    .anim-slide-right,
    .anim-scale-in,
    .anim-flip-in {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-gold);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ===== ARABIC & RTL SUPPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}

[dir="rtl"] .header-inner,
[dir="rtl"] .nav-links,
[dir="rtl"] .nav-cta,
[dir="rtl"] .hero-grid,
[dir="rtl"] .contact-grid,
[dir="rtl"] .footer-grid,
[dir="rtl"] .platform-grid,
[dir="rtl"] .form-row {
    direction: rtl;
}

[dir="rtl"] .hero-card-header,
[dir="rtl"] .hero-stat,
[dir="rtl"] .platform-visual-header,
[dir="rtl"] .footer-bottom,
[dir="rtl"] .trust-strip-inner,
[dir="rtl"] .steps-grid {
    direction: rtl;
}

[dir="rtl"] .hero-cta,
[dir="rtl"] .nav-cta {
    flex-direction: row-reverse;
}

[dir="rtl"] .platform-feature:hover,
[dir="rtl"] .contact-card:hover,
[dir="rtl"] .platform-list-item:hover,
[dir="rtl"] .footer-col a:hover {
    transform: translateX(-8px);
}

[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .btn-gold::before {
    left: auto;
    right: -100%;
}

[dir="rtl"] .btn-gold:hover::before {
    left: auto;
    right: 100%;
}

/* Telegram Floating Button */
.telegram-float {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #0088cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: telegramPulse 2s infinite;
}

.telegram-float:hover {
    background-color: #0066aa;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

@keyframes telegramPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

@media (max-width: 768px) {
    .telegram-float {
        bottom: 150px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}


/* ===== RTL FIXES ===== */
[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .floating-buttons {
    left: 20px;
    right: auto;
}

[dir="rtl"] .whatsapp-float,
[dir="rtl"] .telegram-float {
    left: 20px;
    right: auto;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
    text-align: right;
}

[dir="rtl"] .market-card,
[dir="rtl"] .why-card,
[dir="rtl"] .platform-card {
    text-align: right;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}