/**
 * ForexChange - Home Page Styles
 * Повний редизайн з 3-кольоровою палітрою
 * Primary: #FF6B35 | Dark: #1A1A2E | Light: #FFFFFF
 */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 60px;
    overflow: hidden;
    background: var(--color-white);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1023px) {
    .hero {
        min-height: auto;
        padding: 80px 0 0;
        align-items: flex-start;
        overflow-x: hidden;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    /* Correct order of elements in hero section */
    .hero-container {
        order: 1;
    }
    
    .crypto-marquee {
        order: 2;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0 0;
    }
}

/* Hero Blobs - now only in hero, not on all sections */
.hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
}

.hero .blob-1 {
    top: -15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(255, 143, 102, 0.2) 100%);
    animation: blobMove 25s ease-in-out infinite;
}

.hero .blob-2 {
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.15) 0%, rgba(26, 26, 46, 0.05) 100%);
    animation: blobMove 30s ease-in-out infinite reverse;
}

.hero .blob-3 {
    top: 50%;
    right: 30%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(255, 107, 53, 0.1) 100%);
    animation: blobMove 20s ease-in-out infinite;
    animation-delay: -7s;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        padding: 20px 20px 0;
    }
}

/* On mobile use flexbox for correct order */
@media (max-width: 1023px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow-x: hidden;
        width: 100%;
        flex: 0 0 auto;
    }
    
    /* Order inside container: 1. Image, 2. Content */
    .hero-image-wrapper {
        order: 1;
        width: 100%;
    }
    
    .hero-content {
        order: 2;
        width: 100%;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--color-dark);
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Hero CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    max-width: 480px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 180px;
    padding: 16px 32px;
    font-weight: 600;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
    }
}

/* Hero Stats Preview */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-stat {
    text-align: left;
    flex: 0 0 auto;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stat {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 16px;
    }
    
    .hero-stat {
        flex: 0 0 calc(50% - 8px);
    }
}

/* ===== HERO IMAGE ===== */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Desktop - right side in hero section */
@media (min-width: 1024px) {
    .hero-image-wrapper {
        max-width: 500px;
        height: auto;
    }
    
    .hero-image {
        max-width: 500px;
        width: 100%;
    }
}

/* Mobile and tablets - image on top, adaptive */
@media (max-width: 1023px) {
    .hero-image-wrapper {
        order: 1;
        margin-bottom: 24px;
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .hero-image-wrapper {
        margin-bottom: 20px;
        padding: 0 12px;
    }
    
    .hero-image {
        max-height: 240px;
    }
}

/* Wallet */
.wallet {
    position: relative;
    z-index: 2; /* Below coins */
}

.wallet-body {
    width: 200px;
    height: 160px;
    background: linear-gradient(145deg, #FF7A45 0%, #FF6B35 50%, #E55A25 100%);
    border-radius: 20px;
    position: relative;
    box-shadow:
        0 20px 60px rgba(255, 107, 53, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.wallet-clasp {
    position: absolute;
    top: 20px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #E55A25;
    border-radius: 50%;
    border: 3px solid #CC4A15;
}

/* Floating coins - ABOVE wallet */
.floating-coins {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    pointer-events: none;
    z-index: 5; /* Above wallet */
}

.coin {
    position: absolute;
    animation: floatCoin 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}

/* Bitcoin - top center, largest, partially overlaps wallet */
.coin-1 {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

/* Ethereum - top right */
.coin-2 {
    top: 5%;
    right: -5%;
    animation-delay: 0.5s;
}

/* USDC - left center */
.coin-3 {
    top: 30%;
    left: -10%;
    animation-delay: 1s;
}

/* Solana - top left */
.coin-4 {
    top: -5%;
    left: 5%;
    animation-delay: 1.5s;
}

/* XRP - bottom right */
.coin-5 {
    bottom: 10%;
    right: 0%;
    animation-delay: 0.3s;
}

/* Cardano - right center */
.coin-6 {
    top: 40%;
    right: -15%;
    animation-delay: 0.8s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Sparkles/stars */
.sparkle {
    position: absolute;
    color: var(--color-primary);
    font-size: 16px;
    animation: sparkleAnim 2s ease-in-out infinite;
    opacity: 0.8;
}

.sparkle-1 {
    top: 10%;
    right: 25%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 5%;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: 30%;
    right: 20%;
    animation-delay: 1.4s;
}

@keyframes sparkleAnim {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* ===== CRYPTO MARQUEE ===== */
.crypto-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    overflow: hidden;
    z-index: 20;
    width: 100%;
    box-sizing: border-box;
}

/* On mobile use relative positioning */
@media (max-width: 1023px) {
    .crypto-marquee {
        position: relative;
        bottom: auto;
        margin-top: 0;
    }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    /* Force hardware acceleration for work without graphics card */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.marquee-content {
    display: flex;
    gap: 48px;
    padding: 0 24px;
    flex-shrink: 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    /* Ensure colored cryptocurrency icons - without filters */
    filter: none !important;
    fill: inherit;
}

/* Ensure SVG elements in marquee preserve their original colors */
.marquee-item svg path,
.marquee-item svg circle,
.marquee-item svg * {
    fill: inherit !important;
    filter: none !important;
}

.marquee-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
}

.marquee-item .crypto-price {
    font-weight: 600;
    color: var(--color-primary, #ff6b35);
    margin-left: 4px;
}

@media (max-width: 767px) {
    .crypto-marquee {
        position: relative;
        margin-top: 0;
        padding: 16px 0;
        overflow-x: hidden;
    }
    
    .marquee-content {
        gap: 20px;
        padding: 0 16px;
    }
    
    .marquee-item {
        gap: 6px;
        flex-shrink: 0;
    }
    
    .marquee-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .marquee-item span {
        font-size: 11px;
        white-space: nowrap;
    }
    
    .marquee-item .crypto-price {
        font-size: 10px;
        margin-left: 2px;
    }
    
    .marquee-track {
        animation-duration: 25s;
        width: max-content;
        /* Force hardware acceleration for mobile */
        will-change: transform;
        backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Pause on hover */
.crypto-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* ===== SECTION COMMON STYLES ===== */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* ===== ABOUT PREVIEW SECTION (Who We Are - New Design) ===== */
.about-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16162a 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Two-column grid layout */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .about-preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* ===== LEFT COLUMN: Animation Container ===== */
.about-preview-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-animation-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

/* Floating geometric shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatShape 8s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(255, 107, 53, 0.1) 100%);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 143, 102, 0.3) 0%, rgba(255, 107, 53, 0.1) 100%);
    top: 60%;
    left: 25%;
    animation-delay: -2s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.floating-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, transparent 100%);
    top: 20%;
    right: 15%;
    animation-delay: -4s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.floating-shape.shape-4 {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.35);
    bottom: 25%;
    right: 25%;
    animation-delay: -1s;
}

.floating-shape.shape-5 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    bottom: 15%;
    left: 50%;
    animation-delay: -3s;
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(15px, -20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-10px, 15px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(20px, 10px) rotate(270deg) scale(1.05);
    }
}

/* Animated chart SVG */
.chart-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    opacity: 0.8;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawChart 3s ease-out forwards infinite;
}

.chart-line-1 {
    animation-delay: 0s;
}

.chart-line-2 {
    animation-delay: 0.5s;
}

@keyframes drawChart {
    0% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Floating currency symbols */
.currency-float {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 107, 53, 0.5);
    animation: floatCurrency 6s ease-in-out infinite;
}

.currency-float.currency-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
    font-size: 2rem;
}

.currency-float.currency-2 {
    top: 40%;
    left: 15%;
    animation-delay: -1.5s;
    font-size: 1.75rem;
    color: rgba(255, 143, 102, 0.4);
}

.currency-float.currency-3 {
    bottom: 30%;
    right: 10%;
    animation-delay: -3s;
    font-size: 1.5rem;
}

.currency-float.currency-4 {
    bottom: 20%;
    left: 40%;
    animation-delay: -4.5s;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.3);
}

@keyframes floatCurrency {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.8;
    }
}

/* Stats overlay on animation */
.about-visual-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.visual-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.visual-stat-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(8px);
}

.visual-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.visual-stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visual-stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.visual-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RIGHT COLUMN: Content ===== */
.about-preview-content {
    position: relative;
    z-index: 1;
}

.about-preview .section-badge {
    background: rgba(255, 107, 53, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.about-preview-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-preview-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-preview-text-secondary {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Feature highlights */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.about-feature i {
    color: var(--color-primary);
    font-size: 1rem;
}

/* About Button */
.about-preview .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.about-preview .btn-primary:hover {
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.about-preview .btn-primary i {
    transition: transform 0.3s ease;
}

.about-preview .btn-primary:hover i {
    transform: translateX(4px);
}

/* ===== ABOUT PREVIEW RESPONSIVE ===== */
@media (max-width: 1023px) {
    .about-preview {
        padding: 80px 0;
    }
    
    .about-preview-grid {
        gap: 48px;
    }
    
    .about-preview-visual {
        order: 2;
        min-height: 350px;
    }
    
    .about-preview-content {
        order: 1;
        text-align: center;
        width: 100%;
    }
    
    .about-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-preview .btn-primary {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 767px) {
    .about-preview {
        padding: 60px 0;
    }
    
    .about-preview-grid {
        gap: 40px;
    }
    
    .about-preview-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
    
    .about-preview-text {
        font-size: clamp(0.9375rem, 3vw, 1rem);
    }
    
    .about-preview-text-secondary {
        font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
    }
}

@media (max-width: 640px) {
    .about-preview {
        padding: 48px 0;
    }
    
    .about-animation-container {
        height: 250px;
    }
    
    .floating-shape.shape-1 {
        width: 50px;
        height: 50px;
    }
    
    .floating-shape.shape-3 {
        width: 60px;
        height: 60px;
    }
    
    .visual-stat-item {
        padding: 14px 16px;
    }
    
    .visual-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    .visual-stat-value {
        font-size: 1.375rem;
    }
    
    .visual-stat-label {
        font-size: 0.8125rem;
    }
    
    .about-features {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .about-feature {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 16px;
    }
    
    .about-preview .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ===== TEAM PREVIEW SECTION ===== */
.team-preview {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    color: var(--color-dark);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .team-preview {
        padding: 60px 0;
    }
    
    .team-preview-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
    
    .team-preview-text {
        font-size: clamp(0.9375rem, 3vw, 1rem);
    }
}

@media (max-width: 480px) {
    .team-preview {
        padding: 48px 0;
    }
    
    .analysis-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .analysis-category {
        width: 100%;
        justify-content: flex-start;
    }
}

.team-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 26, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.team-preview .section-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
}

.team-preview-container {
    position: relative;
    z-index: 10;
}

.team-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .team-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.team-preview-content {
    max-width: 540px;
}

.team-preview-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.team-preview-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Analysis Categories */
.analysis-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.analysis-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--color-white);
    border: 1px solid rgba(26, 26, 46, 0.1);
    border-radius: 25px;
    font-size: 0.875rem;
    color: var(--color-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.06);
}

.analysis-category:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.analysis-category i {
    color: var(--color-primary);
}

/* Team Visual */
.team-preview-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.team-avatars {
    display: flex;
    position: relative;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--color-white);
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-left: -20px;
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.15);
    transition: transform 0.3s ease;
}

.team-avatar:first-child {
    margin-left: 0;
}

.team-avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.team-avatar-more {
    background: var(--color-dark);
    font-size: 1rem;
    font-weight: 600;
}

/* Team Button - Light Theme */
.team-preview .btn-white {
    background: var(--color-primary);
    color: var(--color-white);
}

.team-preview .btn-white:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* ===== TRADING STRATEGIES SECTION ===== */
.strategies {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .strategies {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .strategies {
        padding: 48px 0;
    }
}

.strategies-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .strategies-header {
        margin-bottom: 40px;
        padding: 0;
    }
    
    .strategies-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
    
    .strategies-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1rem);
    }
}

.strategies-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.strategies-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.strategies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .strategies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Strategy Card - Glassmorphism */
.strategy-card {
    background: var(--glass-background);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-dark);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.15);
}

.strategy-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 16px;
    margin: 0 auto 24px;
    font-size: 1.75rem;
    color: var(--color-white);
}

.strategy-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.strategy-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== TRADERS SECTION ===== */
.traders {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .traders {
        padding: 60px 0;
    }
    
    .traders .strategies-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
}

@media (max-width: 480px) {
    .traders {
        padding: 48px 0;
    }
    
    .trader-block {
        padding: 24px 20px;
    }
    
    .trader-block-title {
        font-size: clamp(1.125rem, 4vw, 1.25rem);
    }
    
    .trader-benefit span {
        font-size: clamp(0.8125rem, 3vw, 0.875rem);
    }
}

.traders::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.traders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .traders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trader-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
}

.trader-block-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
}

.trader-block-title i {
    font-size: 1.75rem;
}

.trader-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trader-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trader-benefit:last-child {
    border-bottom: none;
}

.trader-benefit i {
    color: var(--color-white);
    margin-top: 4px;
    flex-shrink: 0;
}

.trader-benefit span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.partners-header {
    text-align: center;
    margin-bottom: 48px;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.partner-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo i {
    font-size: 3rem;
    color: var(--color-dark);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .testimonials {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .testimonials-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
    
    .testimonials-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1rem);
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 48px 0;
    }
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* Marquee Container */
.testimonials-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f0f4f8, transparent);
}

.testimonials-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f0f4f8, transparent);
}

.testimonials-track {
    display: flex;
    gap: 32px;
    animation: marquee 45s linear infinite;
    width: max-content;
    /* Force hardware acceleration for work without graphics card */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Legacy grid for fallback */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonial Card - Modern Design */
.testimonial-card {
    background: var(--color-white);
    border: 1px solid rgba(26, 26, 46, 0.08);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 26, 46, 0.06);
    padding: 32px;
    transition: all 0.3s ease;
    min-width: 380px;
    max-width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 260px;
        max-width: 100%;
        padding: 20px;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(26, 26, 46, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--color-primary);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: none;
    display: block;
}

img.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: none;
    display: block;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    white-space: nowrap;
}

/* ===== STATS/ACHIEVEMENTS SECTION ===== */
.achievements {
    padding: 100px 0;
    background: var(--color-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .achievements {
        padding: 60px 0;
    }
    
    .achievements-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
    
    .achievements-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1rem);
    }
}

@media (max-width: 480px) {
    .achievements {
        padding: 48px 0;
    }
    
    .achievements-grid {
        gap: 20px;
    }
    
    .achievement-item {
        padding: 16px 12px;
    }
    
    .achievement-value {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .achievement-label {
        font-size: clamp(0.6875rem, 2.5vw, 0.75rem);
    }
}

.achievements::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 107, 53, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.achievements-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.achievements-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.achievements-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.achievement-item {
    text-align: center;
    padding: 24px;
}

.achievement-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.achievement-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 50%, #0f0f1a 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 48px 0;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: visible;
}

/* Decorative elements */
.cta-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-decoration-1 {
    top: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
}

.cta-decoration-2 {
    bottom: -150px;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
}

.cta-decoration-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    width: 100%;
}

@media (max-width: 767px) {
    .cta-content {
        padding: 0;
    }
    
    .cta-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
    
    .cta-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1rem);
        margin-bottom: 32px;
    }
}

.cta-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF !important;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 767px) {
    .cta-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: 16px;
    }
}

.cta-title-highlight {
    color: var(--color-primary);
    position: relative;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

@media (max-width: 767px) {
    .cta-actions {
        gap: 20px;
    }
    
    .cta-btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .cta-email {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9375rem;
    }
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

.cta-btn-primary:hover {
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.cta-btn-primary i {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover i {
    transform: translateX(4px);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

@media (max-width: 767px) {
    .cta-features {
        gap: 20px;
        margin-top: 32px;
        padding-top: 32px;
    }
    
    .cta-feature {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-feature i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.cta-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-email i {
    color: var(--color-primary);
}

/* ===== BUTTONS ===== */
.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mt-8 {
    margin-top: 32px;
}

/* ===== ANIMATIONS ===== */
@keyframes blobMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(30px, 10px) scale(1.05);
    }
}

/* Hero animations - DISABLED for faster page load */
/* All hero content is visible immediately */
.hero-content > * {
    opacity: 1;
}

.hero-image-wrapper {
    opacity: 1;
}

/* Scroll animations - DISABLED for faster page load */
.animate-on-scroll {
    opacity: 1;
    transform: none;
}

/* Keep animated class for compatibility but don't hide elements */
.animate-on-scroll.animated {
    opacity: 1;
    transform: none;
}

/* Counter animation for achievements */
.achievement-value[data-count] {
    transition: all 0.3s ease;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Extra small devices (phones, 320px - 480px) */
@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding: 90px 0 32px;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 28px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 1.875rem);
        margin-bottom: 12px;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 3.5vw, 0.9375rem);
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
    }
    
    .hero-stat {
        flex: 0 0 calc(50% - 8px);
        text-align: left;
    }
    
    .hero-stat-value {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
    }
    
    .hero-stat-label {
        font-size: clamp(0.6875rem, 2.5vw, 0.75rem);
        margin-top: 2px;
    }
    
    /* Partners Section */
    .partners {
        padding: 40px 0;
    }
    
    .partners-title {
        font-size: 1rem;
    }
    
    .partners-grid {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partner-logo {
        width: 80px;
        height: 40px;
    }
    
    .partner-logo i {
        font-size: 2rem;
    }
    
    /* About Preview Section */
    .about-preview {
        padding: 60px 0;
    }
    
    .about-preview-grid {
        gap: 40px;
    }
    
    .about-preview-title {
        font-size: 1.75rem;
    }
    
    .about-preview-text {
        font-size: 1rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .about-stat-item {
        padding: 12px;
    }
    
    .about-stat-value {
        font-size: 1.5rem;
    }
    
    .about-stat-label {
        font-size: 0.75rem;
    }
    
    /* Team Preview Section */
    .team-preview {
        padding: 60px 0;
    }
    
    .team-preview-title {
        font-size: 1.75rem;
    }
    
    .team-preview-text {
        font-size: 1rem;
    }
    
    .analysis-categories {
        gap: 8px;
    }
    
    .analysis-category {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .team-avatars {
        justify-content: center;
    }
    
    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        margin-left: -15px;
    }
    
    /* Strategies Section */
    .strategies {
        padding: 60px 0;
    }
    
    .strategies-title {
        font-size: 1.75rem;
    }
    
    .strategies-subtitle {
        font-size: 1rem;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strategy-card {
        padding: 24px 20px;
    }
    
    .strategy-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .strategy-title {
        font-size: 1.125rem;
    }
    
    .strategy-description {
        font-size: 0.875rem;
    }
    
    /* Traders Section */
    .traders {
        padding: 60px 0;
    }
    
    .traders-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trader-block {
        padding: 24px;
    }
    
    .trader-block-title {
        font-size: 1.25rem;
    }
    
    .trader-benefit span {
        font-size: 0.875rem;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    /* Achievements Section */
    .achievements {
        padding: 60px 0;
    }
    
    .achievements-title {
        font-size: 1.75rem;
    }
    
    .achievements-subtitle {
        font-size: 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .achievement-item {
        padding: 16px;
    }
    
    .achievement-value {
        font-size: 2rem;
    }
    
    .achievement-label {
        font-size: 0.75rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-card {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-actions {
        gap: 16px;
    }
    
    .cta-email {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small devices (phones landscape, 481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: flex-start;
        gap: 32px;
    }
    
    /* Partners */
    .partners-grid {
        gap: 32px;
    }
    
    /* About Preview */
    .about-preview-title {
        font-size: 2rem;
    }
    
    /* Strategies */
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Traders */
    .traders-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Achievements */
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* CTA */
    .cta-card {
        padding: 60px 32px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        display: flex;
    }
    
    .crypto-marquee {
        position: relative;
    }
    
    /* About Preview */
    .about-preview-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-preview-content {
        max-width: 100%;
    }
    
    /* Team Preview */
    .team-preview-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-preview-content {
        max-width: 100%;
    }
    
    .analysis-categories {
        justify-content: center;
    }
    
    /* Strategies */
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Traders */
    .traders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Achievements */
    .achievements-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Small desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-image-wrapper {
        display: flex;
    }
    
    .strategies-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .strategy-card {
        padding: 24px 16px;
    }
}

/* Ensure buttons are full width on mobile */
@media (max-width: 640px) {
    .btn-block-mobile {
        width: 100%;
    }
    
    .hero-buttons .btn,
    .cta-actions .btn {
        width: 100%;
    }
    
    /* Section badges */
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Container padding for mobile */
@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Reduce section padding on mobile */
    .section {
        padding: 48px 0;
    }
    
    /* Reduce marquee speed on mobile */
    .marquee-track {
        animation-duration: 25s;
    }
    
    .marquee-content {
        gap: 24px;
        padding: 0 16px;
    }
    
    .marquee-item {
        flex-shrink: 0;
    }
    
    .marquee-item span {
        font-size: 12px;
    }
    
        /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Ensure all elements respect container width */
    .hero-container,
    .container,
    .about-preview-grid,
    .team-preview-grid,
    .strategies-grid,
    .traders-grid,
    .achievements-grid {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* On mobile show animation, but with smaller sizes */
@media (max-width: 1023px) {
    .hero-image-wrapper {
        display: flex;
    }
    
    .crypto-marquee {
        position: relative;
        margin-top: 0;
    }
}

/* ===== MOBILE HERO FIXES (767px and less) ===== */
@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 100px 0 0;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .hero-container {
        padding: 0 16px 0;
        gap: 0;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    /* Image on top */
    .hero-image-wrapper {
        order: 1;
    }
    
    /* Content after image */
    .hero-content {
        text-align: left;
        max-width: 100%;
        width: 100%;
        order: 2;
        padding-bottom: 24px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1rem);
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 24px;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        width: 100%;
        margin-bottom: 32px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        box-sizing: border-box;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: flex-start;
        width: 100%;
        margin-top: 0;
    }
    
    .hero-stat {
        flex: 0 0 auto;
        min-width: calc(50% - 12px);
    }
    
    .hero-stat-value {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
    }
    
    .hero-stat-label {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
        margin-top: 4px;
    }
    
    /* Crypto Marquee - at the very bottom of hero section */
    .crypto-marquee {
        position: relative;
        margin-top: 0;
        padding: 16px 0;
        width: 100%;
        order: 3;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .marquee-content {
        gap: 20px;
        padding: 0 16px;
    }
    
    .marquee-item {
        gap: 6px;
        flex-shrink: 0;
    }
    
    .marquee-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .marquee-item span {
        font-size: 11px;
        white-space: nowrap;
    }
    
    .marquee-track {
        animation-duration: 20s;
    }
    
    /* Hero Blobs - reduce on mobile */
    .hero-blobs {
        opacity: 0.4;
    }
    
    .hero .blob-1 {
        width: 250px;
        height: 250px;
        top: -10%;
        right: -10%;
    }
    
    .hero .blob-2 {
        width: 200px;
        height: 200px;
        bottom: -15%;
        left: -15%;
    }
    
    .hero .blob-3 {
        width: 150px;
        height: 150px;
        top: 40%;
        right: 20%;
    }
}

/* ===== TABLET HERO FIXES (768-1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        padding: 120px 0 0;
        display: flex;
        flex-direction: column;
    }
    
    .hero-container {
        padding: 0 24px 0;
        gap: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Image on top */
    .hero-image-wrapper {
        order: 1;
    }
    
    /* Content after animation */
    .hero-content {
        text-align: center;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        order: 2;
        padding-bottom: 32px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 500px;
        width: 100%;
        margin: 0 auto 32px;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 0;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }
    
    /* Marquee at the bottom */
    .crypto-marquee {
        position: relative;
        margin-top: 0;
        width: 100%;
        order: 3;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-image-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}