

/* ============================================
   McCORMETT CAPITAL INVESTMENT
   Complete Premium Stylesheet - style.css
   $100,000 Quality Design
============================================ */

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    /* Primary Colors */
    --primary-color: #1a3c6e;
    --primary-dark: #0d2341;
    --primary-light: #2a5298;
    
    /* Accent Colors */
    --accent-color: #c9a227;
    --accent-light: #e6c55a;
    --accent-dark: #a68518;
    
    /* Secondary Colors */
    --secondary-color: #0ea5e9;
    --secondary-dark: #0284c7;
    --secondary-light: #38bdf8;
    
    /* Success/Profit Colors */
    --success-color: #10b981;
    --success-light: #34d399;
    --success-dark: #059669;
    
    /* Error/Loss Colors */
    --error-color: #ef4444;
    --error-light: #f87171;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a3c6e 0%, #2a5298 50%, #1a3c6e 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e6c55a 50%, #c9a227 100%);
    --gradient-dark: linear-gradient(135deg, #0d2341 0%, #1a3c6e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 35, 65, 0.95) 0%, rgba(26, 60, 110, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 40px rgba(201, 162, 39, 0.3);
    --shadow-primary: 0 10px 40px rgba(26, 60, 110, 0.3);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.section-title {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-title.light {
    color: var(--white);
}

.section-title span {
    color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: var(--gray-200);
}

.large-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 162, 39, 0.8);
    }
}

/* ============================================
   CRYPTO TICKER
============================================ */
.crypto-ticker-wrapper {
    background: var(--primary-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.crypto-ticker {
    height: 45px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 20px;
}

.ticker-loading {
    color: var(--gray-400);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    gap: 50px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}

.ticker-item .coin-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.ticker-item .coin-icon.btc { background: #f7931a; color: white; }
.ticker-item .coin-icon.eth { background: #627eea; color: white; }
.ticker-item .coin-icon.bnb { background: #f3ba2f; color: white; }
.ticker-item .coin-icon.xrp { background: #23292f; color: white; }
.ticker-item .coin-icon.sol { background: linear-gradient(135deg, #9945FF, #14F195); color: white; }
.ticker-item .coin-icon.ada { background: #0033ad; color: white; }

.ticker-item .coin-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.ticker-item .coin-symbol {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.ticker-item .coin-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.ticker-item .coin-change {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
}

.ticker-item .coin-change.positive {
    color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
}

.ticker-item .coin-change.negative {
    color: var(--error-color);
    background: rgba(239, 68, 68, 0.1);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   NAVIGATION
============================================ */
.main-header {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    top: 0;
    background: rgba(13, 35, 65, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.navbar {
    background: transparent;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links > li > a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-normal);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--accent-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: var(--z-dropdown);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dropdown-menu li a i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 24px;
}

.dropdown-menu li a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
    padding-left: 30px;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-auth .btn {
    padding: 10px 25px;
    font-size: 0.875rem;
}

.nav-auth .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.nav-auth .btn-outline:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION - ENHANCED
============================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.quotes-overlay {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}

.quote-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    padding: 25px 30px;
    background: rgba(26, 60, 110, 0.85);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-2xl);
}

.quote-item.active {
    opacity: 1;
}

.quote-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.quote-item p {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.quote-item span {
    font-size: 1rem;
    color: var(--accent-light);
    font-weight: 600;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.hero-badge strong {
    color: var(--accent-color);
}

.hero-title {
    margin-bottom: 25px;
}

.title-main {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gray-200);
    font-weight: 400;
    margin-bottom: 10px;
}

.title-highlight {
    display: block;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 15px;
}

.title-tagline {
    display: block;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--accent-light);
    font-style: italic;
    font-weight: 400;
}

.hero-value-prop {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-200);
}

.value-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-description strong {
    color: var(--accent-color);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-stats .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stats .stat-icon i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.hero-stats .stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1;
}

.hero-stats .stat-suffix {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.trust-logos {
    display: flex;
    gap: 15px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.trust-item:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--accent-color);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.trust-item span {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 600;
}

/* Hero Image */
.hero-image-container {
    position: relative;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    margin: 0 auto;
    display: block;
}

/* Floating Cards - Enhanced */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--gray-100);
    color: var(--gray-600);
    flex-shrink: 0;
}

.card-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.card-icon.crypto {
    background: rgba(247, 147, 26, 0.1);
    color: #f7931a;
}

.card-icon.active {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1;
}

.card-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 3px;
}

.card-label.positive {
    color: var(--success-color);
}

.card-1 {
    top: 5%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 35%;
    right: -20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 5%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
}

/* ============================================
   MARQUEE SECTION
============================================ */
.marquee-section {
    background: var(--primary-dark);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.marquee-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURES SECTION
============================================ */
.features-section {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-color);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(201, 162, 39, 0.08);
    font-family: var(--font-heading);
    line-height: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gray-800);
    font-family: var(--font-primary);
    font-weight: 600;
}

.feature-box > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

/* ============================================
   PERFORMANCE SECTION
============================================ */
.performance-section {
    background: var(--white);
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.performance-text .large-text {
    margin-bottom: 30px;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
}

.metric-item:hover {
    border-color: var(--accent-color);
    background: var(--white);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 5px;
}

.performance-chart {
    position: relative;
}

.chart-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.chart-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.chart-stat {
    text-align: center;
}

.stat-title {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-period {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 5px;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-gold);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-700);
}

.highlight-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   MARKETS SECTION  
============================================ */
.markets-section {
    background: var(--white);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.market-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-color);
}

.market-card.featured {
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.05) 0%, var(--white) 100%);
    border: 2px solid var(--accent-color);
}

.market-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

.market-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(26, 60, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-normal);
}

.market-glow.gold {
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
}

.market-card:hover .market-glow {
    opacity: 1;
}

.market-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.market-icon.gold {
    background: var(--gradient-gold);
}

.market-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.market-icon.gold i {
    color: var(--primary-dark);
}

.market-card:hover .market-icon {
    transform: scale(1.1) rotate(5deg);
}

.market-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gray-800);
    font-family: var(--font-primary);
    font-weight: 600;
}

.market-card > p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.market-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.market-stats .stat {
    text-align: center;
}

.market-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.market-stats .stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.market-features {
    text-align: left;
    margin-bottom: 25px;
}

.market-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.market-features li i {
    color: var(--success-color);
    font-size: 0.85rem;
}

/* ============================================
   INVESTMENT PLANS SECTION
============================================ */
.plans-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.2);
}

.plan-card.featured {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card.vip {
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 8px 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.plan-header {
    padding: 30px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.plan-badge.gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.plan-badge.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-dark);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.plan-returns {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.return-percent {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.return-period {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.plan-body {
    padding: 25px;
}

.plan-amount {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.amount-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 5px;
}

.amount-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.plan-features {
    margin-bottom: 20px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i.fa-check-circle {
    color: var(--success-color);
}

.plan-features li i.fa-times-circle {
    color: var(--gray-500);
}

.plan-profit {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.profit-label {
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-right: 8px;
}

.profit-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    font-family: var(--font-heading);
}

.plans-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 900px;
    margin: 50px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plans-note i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.plans-note p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
}

.plans-note strong {
    color: var(--white);
}

.plans-note a {
    color: var(--accent-color);
    text-decoration: underline;
}
/* ============================================
   HOW IT WORKS SECTION
============================================ */
.how-it-works {
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.how-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.how-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 35, 65, 0.9);
    z-index: -1;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
    display: none; /* Hidden on mobile, shown in responsive if needed */
}

.step-item {
    position: relative;
    z-index: 1;
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 25px;
    border-radius: var(--radius-xl);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition-normal);
}

.step-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    font-family: var(--font-heading);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-gold);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.step-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.step-item p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.step-link:hover {
    padding-left: 5px;
}

.how-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    color: var(--primary-dark);
}

.how-cta h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.how-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.how-cta .btn {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-primary);
}

.how-cta .btn:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ============================================
   STATISTICS SECTION
============================================ */
.statistics-section {
    position: relative;
    padding: 100px 0;
    color: var(--white);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.stats-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 35, 65, 0.92);
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(5px);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--gray-300);
    margin: 5px 0 10px;
}

.stat-growth {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--success-light);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-family: var(--font-primary);
    color: var(--gray-800);
}

.testimonial-plan {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 0.8rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    min-height: 100px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
    font-size: 0.85rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-label {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-bottom: 3px;
}

.footer-value {
    color: var(--primary-dark);
    font-weight: 600;
}

.footer-value.profit {
    color: var(--success-color);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition-normal);
}

.testimonial-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
}

.testimonials-dots {
    display: flex;
    gap: 10px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.testimonials-dots .dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 5px;
}

.testimonials-trust {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.trust-text {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    background: var(--gray-50);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.faq-answer li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.faq-cta p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

/* ============================================
   TRANSACTIONS SECTION (LIVE TABLE)
============================================ */
.transactions-section {
    background: var(--white);
}

.transactions-table {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow-x: auto;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th {
    text-align: left;
    padding: 20px 25px;
    background: var(--gray-50);
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-200);
}

td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
    font-size: 0.95rem;
}

tr:last-child td {
    border-bottom: none;
}

.investor-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.investor-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.investor-info span {
    font-weight: 600;
}

.type-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.type-badge.deposit {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.type-badge.withdrawal {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
}

.amount {
    font-weight: 700;
    color: var(--primary-dark);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--success-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
}

.transactions-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.shape-1 { width: 400px; height: 400px; top: -200px; left: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -150px; right: -50px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--accent-color);
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-content strong {
    color: var(--accent-color);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--white);
}

.cta-feature i {
    color: var(--success-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-guarantee {
    font-size: 0.9rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================
   FOOTER
============================================ */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--gray-500);
}

/* ============================================
   BACK TO TOP BUTTON
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ============================================
   PAGE HERO SECTION (FOR INNER PAGES)
============================================ */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--gray-200);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.breadcrumb a {
    color: var(--accent-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.7rem;
}
/* ========================================================
   DESKTOP CLEANUP - CATCH-ALL FIX
   Forces ALL mobile elements to vanish on screens larger than 991px
======================================================== */
@media screen and (min-width: 992px) {
    
    /* 1. Hide the container List Items (li) by all possible names */
    li.mobile-auth-item,
    li.mobile-only-btn,
    li.mobile-btn-container,
    li.mobile-header,
    
    /* 2. Hide the specific links/buttons themselves */
    a.btn-mobile-login,
    a.btn-mobile-register,
    
    /* 3. Hide the Close Button */
    .close-menu-btn,
    #closeMenuBtn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        z-index: -999 !important;
    }
}
