/* ==================== 
   GREENVEST CAPITAL - PREMIUM FINTECH WEBSITE
   CSS Stylesheet
   ==================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Primary Colors */
    --primary-green: #00ff88;
    --primary-green-dark: #00cc6a;
    --primary-green-light: #33ff9f;
    --primary-green-glow: rgba(0, 255, 136, 0.5);
    
    /* White Variations */
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    
    /* Dark Backgrounds */
    --bg-darkest: #050505;
    --bg-dark: #0d1117;
    --bg-dark-secondary: #10141b;
    --bg-card: #161b22;
    --bg-card-hover: #1c2128;
    
    /* Glass Effect */
    --glass-bg: rgba(13, 17, 23, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-darkest);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* ==================== UTILITY CLASSES ==================== */
.section-padding {
    padding: var(--section-padding);
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darkest);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    animation-delay: 0.2s;
    border-top-color: var(--primary-green-light);
}

.loader-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    animation-delay: 0.4s;
    border-top-color: var(--white);
}

.loader-text {
    margin-top: 120px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-shadow: 0 0 20px var(--primary-green-glow);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================== PARTICLES BACKGROUND ==================== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
    50% { transform: translateY(-200px) translateX(-30px); opacity: 0.3; }
    75% { transform: translateY(-100px) translateX(-50px); opacity: 0.6; }
}

/* ==================== NAVBAR ==================== */
.navbar {
    padding: 15px 0;
    transition: var(--transition-normal);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--bg-darkest);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-link {
    color: var(--white-70) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 50%;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

/* ==================== BUTTONS ==================== */
.btn-glow {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--bg-darkest);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 0 20px var(--primary-green-glow);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--primary-green-glow);
    color: var(--bg-darkest);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

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

.btn-outline-glow {
    background: transparent;
    color: var(--primary-green);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-green);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.btn-outline-glow:hover {
    background: var(--primary-green);
    color: var(--bg-darkest);
    box-shadow: 0 0 30px var(--primary-green-glow);
}

/* ==================== MARKET TICKER ==================== */
.market-ticker {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--white-10);
    z-index: 999;
    overflow: hidden;
}

.ticker-wrapper {
    padding: 10px 0;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 30px;
    font-size: 0.9rem;
}

.ticker-item .symbol {
    font-weight: 600;
    margin-right: 10px;
    color: var(--white);
}

.ticker-item .price {
    margin-right: 8px;
    color: var(--white-70);
}

.ticker-item .change {
    font-weight: 600;
}

.ticker-item .change.positive {
    color: var(--primary-green);
}

.ticker-item .change.negative {
    color: #ff4757;
}

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

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-green-light);
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--primary-green-light);
    top: 30%;
    left: 60%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.1); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white-10);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    border: 1px solid var(--white-10);
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white-70);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white-60);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 50px;
}

.trading-card {
    padding: 25px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite;
}

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

.card-header-custom {
    margin-bottom: 20px;
}

.card-title-custom {
    font-weight: 600;
    font-size: 1.1rem;
}

.badge-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.portfolio-value {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--white-05);
    border-radius: var(--radius-md);
}

.value-label {
    display: block;
    font-size: 0.85rem;
    color: var(--white-60);
    margin-bottom: 5px;
}

.value-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.value-change {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.value-change.positive {
    color: var(--primary-green);
}

.value-change.negative {
    color: #ff4757;
}

.mini-chart {
    height: 60px;
    margin-bottom: 20px;
}

.asset-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asset-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white-05);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.asset-item:hover {
    background: var(--white-10);
}

.asset-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
}

.asset-icon.btc {
    background: linear-gradient(135deg, #f7931a 0%, #ff9d00 100%);
    color: var(--white);
}

.asset-icon.eth {
    background: linear-gradient(135deg, #627eea 0%, #8c9eff 100%);
    color: var(--white);
}

.asset-icon.stock {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--bg-darkest);
}

.asset-info {
    flex: 1;
}

.asset-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.asset-ticker {
    font-size: 0.8rem;
    color: var(--white-50);
}

.asset-value {
    text-align: right;
}

.asset-price {
    display: block;
    font-weight: 600;
}

.asset-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.asset-change.positive {
    color: var(--primary-green);
}

.asset-change.negative {
    color: #ff4757;
}

/* Floating Coins */
.floating-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.coin-btc {
    top: 20px;
    right: 80px;
    background: linear-gradient(135deg, #f7931a 0%, #ff9d00 100%);
    color: var(--white);
    animation: floatCoin 4s ease-in-out infinite;
}

.coin-eth {
    bottom: 100px;
    left: 20px;
    background: linear-gradient(135deg, #627eea 0%, #8c9eff 100%);
    color: var(--white);
    animation: floatCoin 5s ease-in-out infinite 1s;
}

.coin-chart {
    top: 60%;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--bg-darkest);
    animation: floatCoin 6s ease-in-out infinite 2s;
}

@keyframes floatCoin {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white-50);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white-50);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==================== SECTION STYLES ==================== */
.section-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--white-60);
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--white-70);
    margin-bottom: 30px;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--bg-dark);
    position: relative;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white-05);
    border-radius: var(--radius-md);
    border: 1px solid var(--white-10);
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: var(--white-10);
    border-color: var(--primary-green);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    color: var(--bg-darkest);
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--white-60);
    margin: 0;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white-05);
    border-radius: var(--radius-md);
    border: 1px solid var(--white-10);
}

.badge-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Progress Cards */
.progress-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-card {
    padding: 25px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.progress-title {
    font-weight: 600;
}

.progress-value {
    color: var(--primary-green);
    font-weight: 700;
}

.progress-bar-custom {
    height: 8px;
    background: var(--white-10);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background: var(--bg-darkest);
    position: relative;
}

.service-card {
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
    border-color: var(--primary-green);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-lg);
    font-size: 2rem;
    color: var(--primary-green);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--primary-green);
    color: var(--bg-darkest);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary-green-glow);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--white-60);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* Tilt Card Effect */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ==================== MARKETS SECTION ==================== */
.markets-section {
    background: var(--bg-dark);
    position: relative;
}

.chart-card {
    padding: 25px;
    height: 100%;
}

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

.chart-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chart-tab {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    color: var(--white-70);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.chart-tab.active,
.chart-tab:hover {
    background: var(--primary-green);
    color: var(--bg-darkest);
    border-color: var(--primary-green);
}

.chart-timeframes {
    display: flex;
    gap: 5px;
}

.timeframe {
    background: transparent;
    border: none;
    color: var(--white-50);
    padding: 6px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border-radius: var(--radius-sm);
}

.timeframe.active,
.timeframe:hover {
    color: var(--primary-green);
    background: var(--white-05);
}

.chart-body {
    height: 300px;
    margin-bottom: 20px;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--white-10);
}

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

.chart-stat .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--white-50);
    margin-bottom: 5px;
}

.chart-stat .stat-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

/* Market Cards */
.market-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    transition: var(--transition-normal);
}

.market-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-green);
}

.market-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    font-weight: 700;
}

.market-icon.btc {
    background: linear-gradient(135deg, #f7931a 0%, #ff9d00 100%);
    color: var(--white);
}

.market-icon.eth {
    background: linear-gradient(135deg, #627eea 0%, #8c9eff 100%);
    color: var(--white);
}

.market-icon.tsla {
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    color: var(--white);
    font-size: 0.7rem;
}

.market-icon.aapl {
    background: linear-gradient(135deg, #555555 0%, #888888 100%);
    color: var(--white);
}

.market-icon.nvda {
    background: linear-gradient(135deg, #76b900 0%, #8fd400 100%);
    color: var(--white);
    font-size: 0.65rem;
}

.market-info {
    flex: 1;
}

.market-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.market-ticker {
    font-size: 0.8rem;
    color: var(--white-50);
}

.market-price .price {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.market-price .change {
    font-size: 0.85rem;
    font-weight: 600;
}

.market-price .change.positive {
    color: var(--primary-green);
}

.market-price .change.negative {
    color: #ff4757;
}

.market-sparkline {
    width: 80px;
    height: 30px;
}

/* Activity Feed */
.activity-feed {
    padding: 25px;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feed-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feed-header h4 i {
    color: var(--primary-green);
}

.feed-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--white-05);
    border-radius: var(--radius-sm);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.activity-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.activity-icon.buy {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
}

.activity-icon.sell {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

.activity-info {
    flex: 1;
}

.activity-user {
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-details {
    font-size: 0.8rem;
    color: var(--white-50);
}

.activity-amount {
    font-weight: 700;
    font-size: 0.95rem;
}

.activity-amount.positive {
    color: var(--primary-green);
}

.activity-amount.negative {
    color: #ff4757;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-section {
    background: var(--bg-darkest);
}

.why-card {
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    background: var(--primary-green);
    color: var(--bg-darkest);
    box-shadow: 0 0 30px var(--primary-green-glow);
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--white-60);
    font-size: 0.95rem;
    margin: 0;
}

/* ==================== PLANS SECTION ==================== */
.plans-section {
    background: var(--bg-dark);
    position: relative;
}

.plan-card {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.plan-card.featured {
    border-color: var(--primary-green);
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    transform: scale(1.05);
    z-index: 1;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-green);
    color: var(--bg-darkest);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--white-10);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 10px;
}

.plan-price .amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--white-50);
    align-self: flex-end;
    margin-bottom: 5px;
}

.plan-roi {
    margin-bottom: 25px;
    padding: 15px;
    background: var(--white-05);
    border-radius: var(--radius-md);
}

.plan-roi .roi-label {
    display: block;
    font-size: 0.85rem;
    color: var(--white-50);
    margin-bottom: 5px;
}

.plan-roi .roi-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.plan-roi .roi-period {
    font-size: 0.85rem;
    color: var(--white-50);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--white-05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-features li i {
    font-size: 0.85rem;
}

.plan-features li .fa-check {
    color: var(--primary-green);
}

.plan-features li.disabled {
    color: var(--white-30);
}

.plan-features li.disabled .fa-times {
    color: #ff4757;
}

/* ROI Calculator */
.calculator-card {
    padding: 40px;
}

.calculator-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.calculator-input .form-control,
.calculator-input .form-select {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    color: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
}

.calculator-input .form-control:focus,
.calculator-input .form-select:focus {
    background: var(--white-10);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
    color: var(--white);
}

.calculator-input .input-group-text {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    color: var(--primary-green);
    font-weight: 700;
}

.calculator-result {
    text-align: center;
    padding: 30px;
    background: var(--white-05);
    border-radius: var(--radius-lg);
    border: 1px solid var(--white-10);
}

.calculator-result .result-label {
    display: block;
    font-size: 0.9rem;
    color: var(--white-50);
    margin-bottom: 10px;
}

.calculator-result .result-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.calculator-result .result-roi {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background: var(--bg-darkest);
}

.testimonial-card {
    padding: 30px;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-green);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--white-50);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--white-70);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--white-10);
}

.testimonial-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-green);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white-30);
    border: none;
}

.carousel-indicators button.active {
    background: var(--primary-green);
}

/* ==================== MOBILE APP SECTION ==================== */
.app-section {
    background: var(--bg-dark);
    overflow: hidden;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white-05);
    border-radius: var(--radius-md);
    border: 1px solid var(--white-10);
}

.app-feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.app-feature span {
    font-weight: 500;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

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

.app-btn i {
    font-size: 2rem;
}

.app-btn:hover i,
.app-btn:hover .btn-text {
    color: var(--bg-darkest);
}

.btn-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--white-50);
}

.app-btn:hover .btn-text span {
    color: var(--bg-darkest);
}

.btn-text strong {
    font-size: 1.1rem;
}

/* Phone Mockup */
.app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.phone-mockup {
    width: 280px;
    height: 570px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 15px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 30px;
    overflow: hidden;
}

.app-interface {
    padding: 50px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.app-logo {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-green);
}

.app-header i {
    color: var(--white-70);
}

.app-balance {
    text-align: center;
    margin-bottom: 30px;
}

.balance-label {
    display: block;
    font-size: 0.75rem;
    color: var(--white-50);
    margin-bottom: 5px;
}

.balance-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.balance-change {
    font-size: 0.75rem;
    color: var(--primary-green);
}

.app-chart-placeholder {
    flex: 1;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.app-quick-actions {
    display: flex;
    justify-content: space-around;
}

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

.quick-action i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    color: var(--primary-green);
}

.quick-action span {
    font-size: 0.75rem;
    color: var(--white-50);
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: var(--bg-darkest);
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
}

.accordion-button {
    background: var(--glass-bg);
    color: var(--white);
    font-weight: 600;
    padding: 20px 25px;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--white-10);
}

.accordion-button:not(.collapsed) {
    background: var(--glass-bg);
    color: var(--primary-green);
    box-shadow: none;
    border-color: var(--primary-green);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(46%) sepia(94%) saturate(1000%) hue-rotate(120deg) brightness(100%);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-green);
}

.accordion-button i {
    color: var(--primary-green);
}

.accordion-body {
    background: var(--glass-bg);
    color: var(--white-70);
    padding: 20px 25px;
    border: 1px solid var(--white-10);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    line-height: 1.7;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: var(--bg-dark);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 25px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--primary-green);
}

.contact-card h4 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--white-60);
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    color: var(--white-70);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--bg-darkest);
    box-shadow: 0 0 20px var(--primary-green-glow);
}

/* Contact Form */
.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-control,
.form-select {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    color: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.form-control:focus,
.form-select:focus {
    background: var(--white-10);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--white-30);
}

.form-select option {
    background: var(--bg-dark);
}

/* Map */
.map-container {
    padding: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: var(--radius-md);
}

/* ==================== FOOTER ==================== */
.footer-section {
    background: var(--bg-darkest);
    border-top: 1px solid var(--white-10);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--white-60);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-sm);
    color: var(--white-70);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--bg-darkest);
    box-shadow: 0 0 15px var(--primary-green-glow);
}

.footer-links h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--white-60);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-newsletter h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: var(--white-60);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.newsletter-form input {
    flex: 1;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    color: var(--white);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.newsletter-form input::placeholder {
    color: var(--white-30);
}

.newsletter-form button {
    background: var(--primary-green);
    border: none;
    color: var(--bg-darkest);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    box-shadow: 0 0 20px var(--primary-green-glow);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--white-10);
}

.copyright {
    color: var(--white-50);
    font-size: 0.9rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--white-30);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--bg-darkest);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
    box-shadow: 0 0 20px var(--primary-green-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--primary-green-glow);
}

/* ==================== NOTIFICATION POPUP ==================== */
.notification-popup {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    padding: 20px;
    max-width: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: var(--transition-normal);
    z-index: 1000;
}

.notification-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-title {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 0.9rem;
    color: var(--white-60);
}

.notification-close {
    background: none;
    border: none;
    color: var(--white-50);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.notification-close:hover {
    color: var(--white);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg-dark);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 15px;
    }
    
    .nav-buttons {
        margin-top: 20px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-visual {
        padding: 30px 0;
    }
    
    .trading-card {
        max-width: 100%;
    }
    
    .floating-coin {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 500px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767px) {
    .market-ticker {
        top: 66px;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-tabs {
        width: 100%;
        overflow-x: auto;
    }
    
    .chart-footer {
        justify-content: center;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 15px;
    }
    
    .notification-popup {
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        width: calc(50% - 10px);
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .badge-item {
        justify-content: center;
    }
    
    .calculator-card {
        padding: 25px;
    }
    
    .calculator-result .result-value {
        font-size: 2rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-rating {
        width: 100%;
    }
    
    .app-visual {
        padding: 30px 0;
    }
    
    .phone-mockup {
        width: 200px;
        height: 420px;
    }
    
    .balance-amount {
        font-size: 1.2rem;
    }
}

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--white-20);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--white-30);
}

/* ==================== SELECTION ==================== */
::selection {
    background: var(--primary-green);
    color: var(--bg-darkest);
}

::-moz-selection {
    background: var(--primary-green);
    color: var(--bg-darkest);
}
