
:root {
    --bg-primary:#030806 !important;
    --bg-secondary: #061209;
    --bg-card: rgba(8, 20, 12, 0.6);
    --bg-card-hover: rgba(12, 30, 18, 0.8);
    --text-primary: #f0fdf4;
    --text-secondary: #a3c4b0;
    --text-muted: #5a7d68;
    --accent-green: #00ff88;
    --accent-green-dark: #00cc6a;
    --accent-green-mid: #10b981;
    --accent-green-deep: #059669;
    --accent-lime: #84cc16;
    --accent-emerald: #34d399;
    --accent-mint: #6ee7b7;
    --accent-red: #ef4444;
    --accent-orange: #f59e0b;
    --gradient-main: linear-gradient(135deg, #00ff88, #10b981);
    --gradient-glow: linear-gradient(135deg, #00ff88, #059669, #84cc16);
    --gradient-subtle: linear-gradient(135deg, #00ff88 0%, #10b981 50%, #059669 100%);
    --border-color: rgba(0, 255, 136, 0.06);
    --border-glow: rgba(0, 255, 136, 0.2);
    --glass-bg: rgba(6, 18, 10, 0.5);
    --glass-border: rgba(0, 255, 136, 0.07);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary) !important;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent-green);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-green-deep);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-green);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.text-accent {
    color: var(--accent-green);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-secondary);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* ---------- Glass Card ---------- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.06);
    transform: translateY(-4px);
}

/* ---------- Buttons ---------- */
.btn-glow {
    background: var(--gradient-main);
    color: #030806;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4), 0 0 50px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
    color: #030806;
}

.btn-outline-glow {
    background: transparent;
    color: var(--accent-green);
    border: 1.5px solid rgba(0, 255, 136, 0.25);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    transition: var(--transition);
}

.btn-outline-glow:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.12);
    color: var(--accent-green);
    transform: translateY(-2px);
}

/* ---------- Section Header ---------- */
.section-tag {
    display: inline-block;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.12);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    margin-bottom: 47px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(3, 8, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: rgba(3, 8, 6, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.brand-icon {
    font-size: 1.4rem;
    color: var(--accent-green);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #f0fdf4;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.3));
    transition: var(--transition);
}

.navbar-brand:hover img {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
}

.navbar .nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-green);
    border-radius: 2px;
}

.navbar-toggler {
    border: 1px solid var(--border-glow);
    padding: 6px 10px;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,255,136,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-cta .btn {
    padding: 8px 20px;
    font-size: 0.82rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 130px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.025) 1px, transparent 1px) !important;
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%) !important;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%) !important;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-green-deep);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-green);
    bottom: 10%;
    left: -5%;
    animation-delay: -3s;
    opacity: 0.2;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-lime);
    top: 40%;
    left: 40%;
    animation-delay: -5s;
    opacity: 0.12;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.12);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.12); }
    50% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color:white;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    height: 70px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar-more {
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #030806;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stars {
    color: var(--accent-orange);
    font-size: 0.75rem;
    display: flex;
    gap: 2px;
}

.trust-text span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* Mock Dashboard */
.hero-visual {
    position: relative;
}

.mock-dashboard {
    position: relative;
    overflow: hidden;
}

.mock-dashboard:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 60px rgba(0, 255, 136, 0.1) !important;
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mock-dots span:first-child { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: var(--accent-green); }

.mock-title {
    font-size: 0.72rem;
    color:#ccdbd2;
    font-weight: 500;
}

.mock-body {
    padding: 18px;
}

.mock-stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.mock-stat {
    flex: 1;
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-stat-label {
    font-size: 0.68rem;
    color: #bfdccb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.mock-stat-value.positive,
.mock-stat-change.positive {
    color: var(--accent-green);
}

.mock-stat-change.negative {
    color: var(--accent-red);
}

.mock-stat-change {
    font-size: 0.72rem;
    font-weight: 600;
}

.mock-chart {
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(0, 255, 136, 0.01);
    padding: 8px 0;
}

.chart-line {
    width: 100%;
    height: auto;
    display: block;
}

.chart-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawChart 3s ease forwards;
    animation-delay: 1s;
}

@keyframes drawChart {
    to { stroke-dashoffset: 0; }
}

.chart-dot {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 7; opacity: 0.5; }
}

.mock-trades {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-trade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(0, 255, 136, 0.02);
    border-radius: 8px;
    font-size: 0.78rem;
}

.trade-pair {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    min-width: 100px;
}

.trade-pair i {
    color: var(--accent-orange);
}

.trade-type {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.trade-type.buy {
    background: rgba(0, 255, 136, 0.12);
    color: var(--accent-green);
}

.trade-type.sell {
    background: rgba(239, 68, 68, 0.12);
    color: var(--accent-red);
}

.trade-price {
    color: var(--text-secondary);
    font-weight: 500;
}

.trade-profit {
    font-weight: 700;
    min-width: 55px;
    text-align: right;
}

.trade-profit.positive { color: var(--accent-green); }
.trade-profit.negative { color: var(--accent-red); }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.7rem;
    color:#9fc4ae;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-green), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-card {
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.icon-green { background: rgba(0, 255, 136, 0.1); color: var(--accent-green); }
.icon-emerald { background: rgba(52, 211, 153, 0.1); color: var(--accent-emerald); }
.icon-deep { background: rgba(5, 150, 105, 0.1); color: var(--accent-green-deep); }
.icon-lime { background: rgba(132, 204, 22, 0.1); color: var(--accent-lime); }
.icon-mint { background: rgba(110, 231, 183, 0.1); color: var(--accent-mint); }
.icon-dark-green { background: rgba(16, 185, 129, 0.1); color: var(--accent-green-mid); }

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color:white;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
    height: 100%;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.06);
    border: 1.5px solid rgba(0, 255, 136, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-green);
    margin: 0 auto 16px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: rgba(0, 255, 136, 0.12);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.15);
    transform: scale(1.1);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color:white;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    z-index:2;
}

.connector-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-glow), var(--border-glow), transparent);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stat-card {
    text-align: center;
    padding: 32px 20px;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 6px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.dashboard-preview {
    overflow: hidden;
    position: relative;
}

.dashboard-preview:hover {
    transform: none !important;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.dash-dots span:first-child { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: var(--accent-green); }

.dash-actions {
    margin-left: auto;
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
}

.dash-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: var(--transition);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.why-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: brightness(0.5) saturate(0.8);
    transition: var(--transition);
}

.why-image-wrapper:hover .why-image {
    filter: brightness(0.6) saturate(0.9);
    transform: scale(1.03);
}

.why-image-overlay {
    position: absolute;
    inset: 0;
    
    border-radius: var(--radius);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 1rem;
    transition: var(--transition);
}

.why-item:hover .why-item-icon {
    background: rgba(0, 255, 136, 0.12);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.12);
}

.why-item h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card.featured {
    border-color: rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.02);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--accent-orange);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0;
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-card {
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: rgba(0, 255, 136, 0.25);
    background: rgba(0, 255, 136, 0.03);
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.06);
}

.pricing-card.popular:hover {
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.12);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: -30px;
    background: var(--gradient-main);
    color: #030806;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 20px;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color:white;
}

.plan-tagline {
    font-size: 0.82rem;
    color:#90bca2;
    margin: 0;
}

.pricing-amount {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-amount .currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pricing-amount .amount {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-amount .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pricing-features li i {
    font-size: 0.75rem;
    width: 18px;
    text-align: center;
}

.pricing-features li .fa-check {
    color: var(--accent-green);
}

.pricing-features li .fa-xmark {
    color: var(--text-muted);
}

.pricing-features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--border-glow);
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 18px 20px;
    box-shadow: none !important;
    border-radius: var(--radius-sm) !important;
}

.accordion-button::after {
    filter: invert(68%) sepia(40%) saturate(500%) hue-rotate(100deg) brightness(100%) contrast(120%);
    opacity: 0.6;
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(68%) sepia(40%) saturate(500%) hue-rotate(100deg) brightness(100%) contrast(120%);
    opacity: 1;
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 255, 136, 0.03);
    color: var(--accent-green);
}

.accordion-body {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    padding: 4px 20px 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner:hover {
    transform: none !important;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-green);
    top: -50%;
    left: -10%;
}

.cta-orb-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-green-deep);
    bottom: -50%;
    right: -10%;
}

.cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color:white;
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    padding: 60px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgb(40 209 130 / 84%);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.footer-about {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.25);
    color: var(--accent-green);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-contact li i {
    color: var(--accent-green);
    margin-top: 4px;
    font-size: 0.8rem;
    min-width: 16px;
}

.footer-contact a {
    color: var(--text-secondary);
}

.footer-contact a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--accent-green);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.08);
    border-radius: 8px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--gradient-main);
    border: none;
    color: #030806;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(0, 255, 136, 0.4);
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-section, .section-padding, .section-dark, .cta-section, .footer-section {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .nav-cta {
        margin-top: 16px;
        padding-bottom: 8px;
    }

    .step-connector {
        display: none !important;
    }

    .why-image {
        height: 350px;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 12px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .mock-stats-row {
        flex-direction: column;
    }

    .mock-trade {
        flex-wrap: wrap;
        gap: 6px;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .cta-inner {
        padding: 40px 24px;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .why-image {
        height: 280px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-amount .amount {
        font-size: 2.6rem;
    }

    .accordion-button {
        font-size: 0.85rem;
    }

    .accordion-body {
        font-size: 0.82rem;
    }

    .navbar-brand img {
        height: 40px;
    }
}
   .container.position-relative {
    margin-top: -82px;
}
   