/* About Section Redesign - Refined Compact Layout - Blue/Green Only */

/* Import Spacing System */
@import url('./spacing-system.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* About Section */
.about-section {
    padding: var(--section-padding-lg) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Centered Heading */
.about-heading-centered {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.about-hero-headline {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    display: inline-block;
}


/* Refined Content Grid - Left (Paragraph + Cards) + Right (Live Signal) */
.about-content-refined {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* LEFT SIDE - Paragraph + 2 Compact Cards */
.about-left-refined {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Left-aligned Paragraph */
.about-paragraph-left {
    text-align: left;
    max-width: 520px;
}

.about-subtext {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}


/* RIGHT SIDE - Live Signal Card Container (UNCHANGED) */
.about-right-refined {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-visual-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content-refined {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-left-refined {
        gap: 20px;
    }
    
    .about-heading-centered {
        margin-bottom: 32px;
    }
    
    .about-hero-headline {
        font-size: clamp(28px, 5vw, 36px);
    }
    
    .about-subtext {
        font-size: 15px;
    }
    
    .about-right-refined {
        order: 2;
    }
    
    /* Floating badges become static on tablet */
    .floating-badge,
    .badge-accuracy,
    .badge-certified,
    .badge-traders,
    .badge-realtime {
        position: static;
        margin: 0.5rem 0;
        transform: none !important;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .about-visual-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-visual-container::before {
        display: none;
    }
    
    .about-micro-points {
        margin-top: 1.5rem;
        gap: 0.875rem;
    }
    
    .micro-point {
        gap: 0.625rem;
    }
    
    .micro-point-icon {
        width: 18px;
        height: 18px;
    }
    
    .micro-point-icon i {
        width: 14px;
        height: 14px;
    }
    
    .micro-point-title {
        font-size: 0.875rem;
    }
    
    .micro-point-desc {
        font-size: 0.775rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0 40px;
    }
    
    .about-heading-centered {
        margin-bottom: 24px;
    }
    
    .about-content-refined {
        gap: 24px;
    }
    
    .about-left-refined {
        gap: 16px;
    }
    
    .about-hero-headline {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .about-subtext {
        font-size: 14px;
    }
    
}

/* Glassmorphism Floating Feature Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

.floating-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    width: 16px;
    height: 16px;
    color: #0B2578;
}

.badge-content {
    flex: 1;
}

.badge-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0B2578;
    line-height: 1.2;
    margin: 0;
}

/* Badge Positioning - Balanced Layout */
.badge-accuracy {
    top: -10px;
    right: -15px;
    background: rgba(11, 37, 120, 0.08);
    border-color: rgba(11, 37, 120, 0.15);
}

.badge-accuracy .badge-icon i {
    color: #0B2578;
}

.badge-certified {
    top: 35%;
    left: -20px;
    transform: translateY(-50%);
    background: rgba(26, 148, 100, 0.08);
    border-color: rgba(26, 148, 100, 0.15);
}

.badge-certified .badge-icon i {
    color: #1A9464;
}

.badge-traders {
    bottom: -10px;
    right: -15px;
    background: rgba(11, 37, 120, 0.08);
    border-color: rgba(11, 37, 120, 0.15);
}

.badge-traders .badge-icon i {
    color: #0B2578;
}

.badge-realtime {
    top: 65%;
    left: -18px;
    transform: translateY(-50%);
    background: rgba(26, 148, 100, 0.08);
    border-color: rgba(26, 148, 100, 0.15);
}

.badge-realtime .badge-icon i {
    color: #1A9464;
}

/* Radial gradient glow behind right section */
.about-visual-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(11, 37, 120, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}



/* Why Choose Us Micro Points */
.about-micro-points {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.micro-point {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    transition: transform 0.2s ease;
}

.micro-point:hover {
    transform: translateX(4px);
}

.micro-point-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.micro-point-icon i {
    width: 16px;
    height: 16px;
    color: #0B2578;
}

.micro-point-content {
    flex: 1;
}

.micro-point-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0B2578;
    line-height: 1.3;
    margin: 0 0 0.25rem 0;
}

.micro-point-desc {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

