/* =============================================
   ICB TECH SOLUTIONS - MAIN STYLESHEET
   Version: 1.0
   Last Updated: December 2024
   ============================================= */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --icb-primary: #00d4ff;
    --icb-primary-dark: #0099cc;
    --icb-secondary: #6366f1;
    --icb-accent: #f59e0b;
    --icb-dark-bg: #0a0e17;
    --icb-darker-bg: #060911;
    --icb-card-bg: rgba(15, 23, 42, 0.8);
    --icb-text-primary: #ffffff;
    --icb-text-secondary: #94a3b8;
    --icb-gradient-1: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
    --icb-gradient-2: linear-gradient(135deg, #6366f1 0%, #f59e0b 100%);
    --icb-glow: 0 0 40px rgba(0, 212, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--icb-dark-bg);
    color: var(--icb-text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--icb-text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* =============================================
   BACKGROUND EFFECTS
   ============================================= */
.icb-zigzag-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.icb-zigzag-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 212, 255, 0.08) 25%, transparent 25%) -30px 0,
        linear-gradient(225deg, rgba(0, 212, 255, 0.08) 25%, transparent 25%) -30px 0,
        linear-gradient(315deg, rgba(0, 212, 255, 0.08) 25%, transparent 25%),
        linear-gradient(45deg, rgba(0, 212, 255, 0.08) 25%, transparent 25%);
    background-size: 60px 60px;
    animation: icbZigzagShift 30s linear infinite;
}

.icb-zigzag-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.05) 25%, transparent 25%) -15px 0,
        linear-gradient(225deg, rgba(99, 102, 241, 0.05) 25%, transparent 25%) -15px 0,
        linear-gradient(315deg, rgba(99, 102, 241, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, rgba(99, 102, 241, 0.05) 25%, transparent 25%);
    background-size: 40px 40px;
    animation: icbZigzagShift 20s linear infinite reverse;
}

@keyframes icbZigzagShift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.icb-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: icbGridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes icbGridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.icb-zigzag-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.icb-zigzag-line {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--icb-primary), transparent);
    clip-path: polygon(0% 50%, 5% 0%, 10% 50%, 15% 0%, 20% 50%, 25% 0%, 30% 50%, 35% 0%, 40% 50%, 45% 0%, 50% 50%, 55% 0%, 60% 50%, 65% 0%, 70% 50%, 75% 0%, 80% 50%, 85% 0%, 90% 50%, 95% 0%, 100% 50%, 95% 100%, 90% 50%, 85% 100%, 80% 50%, 75% 100%, 70% 50%, 65% 100%, 60% 50%, 55% 100%, 50% 50%, 45% 100%, 40% 50%, 35% 100%, 30% 50%, 25% 100%, 20% 50%, 15% 100%, 10% 50%, 5% 100%);
    opacity: 0.3;
}

.icb-zigzag-line-1 {
    top: 20%;
    left: -10%;
    width: 50%;
    animation: icbZigzagFloat 15s ease-in-out infinite;
}

.icb-zigzag-line-2 {
    top: 60%;
    right: -10%;
    left: auto;
    width: 40%;
    animation: icbZigzagFloat 12s ease-in-out infinite reverse;
}

.icb-zigzag-line-3 {
    bottom: 30%;
    top: auto;
    left: 20%;
    width: 30%;
    animation: icbZigzagFloat 18s ease-in-out infinite;
}

@keyframes icbZigzagFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateX(20px) translateY(-10px); 
        opacity: 0.5; 
    }
}

/* Data Particles */
.icb-data-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.icb-data-particle {
    position: absolute;
    font-family: 'Rajdhani', monospace;
    font-size: 0.75rem;
    color: var(--icb-primary);
    opacity: 0;
    animation: icbFloatData linear infinite;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    white-space: nowrap;
}

.icb-data-particle.purple {
    color: var(--icb-secondary);
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.icb-data-particle.amber {
    color: var(--icb-accent);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

@keyframes icbFloatData {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(10deg);
    }
}

.icb-data-stream {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--icb-primary), transparent);
    opacity: 0.2;
    animation: icbStreamFlow 3s linear infinite;
}

@keyframes icbStreamFlow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* =============================================
   NAVIGATION
   ============================================= */
.icb-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.icb-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.icb-logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.icb-logo-img:hover {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.icb-footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.icb-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.icb-nav-links li {
    margin: 0;
    padding: 0;
}

.icb-nav-links a {
    color: var(--icb-text-secondary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.icb-nav-links a:hover {
    color: var(--icb-primary);
}

.icb-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--icb-gradient-1);
    transition: width 0.3s ease;
}

.icb-nav-links a:hover::after {
    width: 100%;
}

.icb-nav-cta {
    background: var(--icb-gradient-1) !important;
    color: var(--icb-dark-bg) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.icb-nav-cta:hover {
    box-shadow: var(--icb-glow);
    transform: translateY(-2px);
    color: var(--icb-dark-bg) !important;
}

.icb-nav-cta::after {
    display: none !important;
}

.icb-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.icb-mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--icb-text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .icb-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    .icb-nav-links.active {
        display: flex;
    }

    .icb-mobile-menu-btn {
        display: flex;
    }

    .icb-nav-cta {
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.icb-heading {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.icb-subheading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.icb-gradient-text {
    background: var(--icb-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icb-section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--icb-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.icb-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.icb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.icb-btn-primary {
    background: var(--icb-gradient-1);
    color: var(--icb-dark-bg);
    position: relative;
    overflow: hidden;
}

.icb-btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%, 50% 0%, 55% 100%, 60% 0%, 65% 100%, 70% 0%, 75% 100%, 80% 0%, 85% 100%, 90% 0%, 95% 100%, 100% 0%);
}

.icb-btn-primary:hover {
    box-shadow: var(--icb-glow);
    transform: translateY(-3px);
}

.icb-btn-secondary {
    background: transparent;
    color: var(--icb-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icb-btn-secondary:hover {
    border-color: var(--icb-primary);
    color: var(--icb-primary);
}

/* =============================================
   HERO SECTION
   ============================================= */
.icb-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    z-index: 1;
}

.icb-hero-content {
    max-width: 900px;
    text-align: center;
}

.icb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--icb-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: icbPulse 2s infinite;
}

@keyframes icbPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

.icb-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--icb-primary);
    border-radius: 50%;
    animation: icbBlink 1s infinite;
}

@keyframes icbBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.icb-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.icb-hero-description {
    font-size: 1.25rem;
    color: var(--icb-text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.icb-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.icb-products-section {
    padding: 80px 5%;
    position: relative;
    z-index: 1;
}

.icb-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .icb-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .icb-products-grid {
        grid-template-columns: 1fr;
    }
}

.icb-product-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.icb-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
    clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%, 50% 0%, 55% 100%, 60% 0%, 65% 100%, 70% 0%, 75% 100%, 80% 0%, 85% 100%, 90% 0%, 95% 100%, 100% 0%, 100% 100%, 0% 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.icb-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.icb-product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: #0a0e17;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.icb-product-badge.coming-soon {
    background: #6366f1;
    color: white;
}

.icb-product-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icb-product-branding-logo {
    background: #22c55e;
    color: #0a0e17;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.icb-product-branding-text {
    display: flex;
    flex-direction: column;
}

.icb-product-branding-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #22c55e;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.icb-product-branding-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.icb-product-branding.icb-v2 .icb-product-branding-logo {
    background: linear-gradient(135deg, #6366f1 0%, #f59e0b 100%);
    color: white;
}

.icb-product-branding.icb-v2 .icb-product-branding-title {
    background: linear-gradient(135deg, #6366f1 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icb-product-branding.icb-vinspot .icb-product-branding-logo {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: #0a0e17;
}

.icb-product-branding.icb-vinspot .icb-product-branding-title {
    color: #f97316;
}

.icb-product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.icb-product-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.icb-product-tagline {
    font-family: 'Rajdhani', sans-serif;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.icb-product-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.icb-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.icb-product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.icb-product-features li::before {
    content: '→';
    color: #00d4ff;
    font-weight: bold;
}

.icb-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.icb-product-link:hover {
    gap: 1rem;
}

.icb-product-link svg {
    width: 16px;
    height: 16px;
}

/* =============================================
   WHY ICB SECTION
   ============================================= */
.icb-why-section {
    padding: 80px 5%;
    position: relative;
    z-index: 1;
}

.icb-zigzag-divider {
    width: 90%;
    height: 6px;
    margin: 0 auto 4rem;
    background: linear-gradient(90deg, transparent, var(--icb-primary), var(--icb-secondary), var(--icb-primary), transparent);
    clip-path: polygon(0% 50%, 2% 0%, 4% 50%, 6% 0%, 8% 50%, 10% 0%, 12% 50%, 14% 0%, 16% 50%, 18% 0%, 20% 50%, 22% 0%, 24% 50%, 26% 0%, 28% 50%, 30% 0%, 32% 50%, 34% 0%, 36% 50%, 38% 0%, 40% 50%, 42% 0%, 44% 50%, 46% 0%, 48% 50%, 50% 0%, 52% 50%, 54% 0%, 56% 50%, 58% 0%, 60% 50%, 62% 0%, 64% 50%, 66% 0%, 68% 50%, 70% 0%, 72% 50%, 74% 0%, 76% 50%, 78% 0%, 80% 50%, 82% 0%, 84% 50%, 86% 0%, 88% 50%, 90% 0%, 92% 50%, 94% 0%, 96% 50%, 98% 0%, 100% 50%, 98% 100%, 96% 50%, 94% 100%, 92% 50%, 90% 100%, 88% 50%, 86% 100%, 84% 50%, 82% 100%, 80% 50%, 78% 100%, 76% 50%, 74% 100%, 72% 50%, 70% 100%, 68% 50%, 66% 100%, 64% 50%, 62% 100%, 60% 50%, 58% 100%, 56% 50%, 54% 100%, 52% 50%, 50% 100%, 48% 50%, 46% 100%, 44% 50%, 42% 100%, 40% 50%, 38% 100%, 36% 50%, 34% 100%, 32% 50%, 30% 100%, 28% 50%, 26% 100%, 24% 50%, 22% 100%, 20% 50%, 18% 100%, 16% 50%, 14% 100%, 12% 50%, 10% 100%, 8% 50%, 6% 100%, 4% 50%, 2% 100%);
    opacity: 0.6;
}

.icb-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .icb-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .icb-why-grid {
        grid-template-columns: 1fr;
    }
}

.icb-why-card {
    text-align: center;
    padding: 2rem;
}

.icb-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem;
}

.icb-why-card:hover .icb-icon-circle {
    background: var(--icb-gradient-1);
    transform: scale(1.1);
}

.icb-why-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.icb-why-card p {
    color: var(--icb-text-secondary);
    font-size: 0.95rem;
}

/* =============================================
   STATS SECTION
   ============================================= */
.icb-stats-section {
    padding: 60px 5%;
    background: var(--icb-darker-bg);
    position: relative;
    z-index: 1;
}

.icb-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .icb-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icb-stat-item {
    display: flex;
    flex-direction: column;
}

.icb-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--icb-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.icb-stat-label {
    font-family: 'Rajdhani', sans-serif;
    color: var(--icb-text-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =============================================
   CTA SECTION
   ============================================= */
.icb-cta-section {
    padding: 80px 5%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.icb-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.icb-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.icb-cta-content p {
    color: var(--icb-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* =============================================
   FOOTER
   ============================================= */
.icb-footer {
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.icb-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .icb-footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .icb-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.icb-footer-brand p {
    color: var(--icb-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.icb-social-links {
    display: flex;
    gap: 1rem;
}

@media (max-width: 600px) {
    .icb-social-links {
        justify-content: center;
    }
}

.icb-social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icb-text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.icb-social-links a:hover {
    border-color: var(--icb-primary);
    color: var(--icb-primary);
    background: rgba(0, 212, 255, 0.1);
}

.icb-footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

.icb-footer-links li {
    margin-bottom: 0.75rem;
}

.icb-footer-links a {
    color: var(--icb-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.icb-footer-links a:hover {
    color: var(--icb-primary);
}

.icb-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.icb-footer-bottom p {
    color: var(--icb-text-secondary);
    font-size: 0.85rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
    .icb-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .icb-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
