/* ============================================
   OsLeads.AI - PREMIUM COMPANY PROFILE
   Ultra-Premium Dark Aesthetic
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --blue-light: #3B82F6;
    --teal: #14B8A6;
    --teal-dark: #0D9488;
    --purple: #8B5CF6;
    --orange: #F59E0B;

    /* Dark Theme */
    --dark-900: #030712;
    --dark-800: #0a0f1a;
    --dark-700: #111827;
    --dark-600: #1F2937;
    --dark-500: #374151;

    /* Light */
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --gradient-teal: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --gradient-orange: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-cta: linear-gradient(135deg, #2563EB 0%, #14B8A6 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow-blue: 0 0 60px rgba(37, 99, 235, 0.4);
    --shadow-glow-teal: 0 0 60px rgba(20, 184, 166, 0.4);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-900);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.loaded .cover-content {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   COVER PAGE
   ============================================ */
.cover {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Global Animated Background */
.main-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    33% {
        transform: translateY(-30px) scale(1.05);
    }

    66% {
        transform: translateY(20px) scale(0.95);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
    opacity: 0.4;
}

/* AI Scan Line */
.ai-scan-line {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.1), rgba(20, 184, 166, 0.2), transparent);
    z-index: 1;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}

/* Neural Network Overlay */
.neural-network-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
}

/* Data Particles */
.data-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-particle 4s ease-in-out infinite;
}

@keyframes pulse-particle {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Cover Header */
.cover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    position: relative;
    z-index: 10;
}

.doc-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.doc-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
}

.doc-date {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.confidential-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal);
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Cover Content */
.cover-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 48px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

/* Logo */
.logo-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-cta);
    border-radius: 24px;
    filter: blur(40px);
    opacity: 0.5;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
}

/* Matte overlay for readability */
.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.6);
    pointer-events: none;
    z-index: 0;
}

.section>* {
    position: relative;
    z-index: 1;
}

.logo-box {
    position: relative;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Title */
.cover-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 12px;
    line-height: 1;
}

.title-main {
    color: var(--white);
}

.title-accent {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cover-tagline {
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 48px;
}

/* Intro Card */
.intro-card {
    position: relative;
    max-width: 600px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    margin-bottom: 56px;
}

.intro-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition);
}

.intro-card:hover .intro-card-glow {
    opacity: 1;
}

.intro-card p {
    position: relative;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.intro-card strong {
    color: var(--white);
}

/* Stats Grid */
.stats-grid {
    display: flex;
    gap: 24px;
}

.stat-card {
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    text-align: center;
    min-width: 160px;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-color: rgba(37, 99, 235, 0.3);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--teal);
}

.stat-card.featured .stat-icon svg {
    stroke: var(--blue-light);
}

.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cover Footer */
.cover-footer {
    padding: 32px 48px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-pills {
    display: flex;
    gap: 16px;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition);
}

.contact-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contact-pill svg {
    width: 16px;
    height: 16px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section.dark {
    background: rgba(10, 15, 26, 0.4);
    backdrop-filter: blur(5px);
}

.section.compact {
    padding: 80px 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 56px;
}

.section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, rgba(0, 255, 30, 0.646) 0%, rgba(192, 190, 190, 0.913) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
}

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.glass-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.glass-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.glass-card strong {
    color: var(--white);
}

.glass-card em {
    color: var(--teal);
    font-style: normal;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.blue {
    background: rgba(37, 99, 235, 0.15);
}

.feature-icon.teal {
    background: rgba(20, 184, 166, 0.15);
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.15);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-icon.blue svg {
    stroke: var(--blue);
}

.feature-icon.teal svg {
    stroke: var(--teal);
}

.feature-icon.purple svg {
    stroke: var(--purple);
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 14px;
    color: var(--gray-400);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
}

.quote-card {
    padding: 36px;
    background: var(--gradient-cta);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
}

.quote-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 16px;
}

.quote-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-style: italic;
}

.quote-card strong {
    color: white;
}

/* Trust Card */
.trust-card {
    margin-top: 24px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.trust-icons {
    width: 48px;
    height: 48px;
    background: rgba(20, 184, 166, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-icons svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
}

.trust-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.trust-card strong {
    color: var(--teal);
}

/* ============================================
   VISION MISSION STRATEGY
   ============================================ */
.vms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.vms-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.vms-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.vms-card.vision {
    border-color: rgba(37, 99, 235, 0.3);
}

.vms-card.mission {
    border-color: rgba(20, 184, 166, 0.3);
}

.vms-card.strategy {
    border-color: rgba(139, 92, 246, 0.3);
}

.vms-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(37, 99, 235, 0.15);
}

.vms-card.vision .vms-icon {
    background: rgba(37, 99, 235, 0.15);
}

.vms-card.mission .vms-icon {
    background: rgba(20, 184, 166, 0.15);
}

.vms-card.strategy .vms-icon {
    background: rgba(139, 92, 246, 0.15);
}

.vms-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--blue);
}

.vms-card.vision .vms-icon svg {
    stroke: var(--blue);
}

.vms-card.mission .vms-icon svg {
    stroke: var(--teal);
}

.vms-card.strategy .vms-icon svg {
    stroke: #8b5cf6;
}

.vms-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.vms-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Core Values */
.values-section {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.values-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 32px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.value-item strong {
    font-size: 15px;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .vms-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.leader-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.leader-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.leader-card.ceo {
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    padding: 40px;
    background: var(--dark-700);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leader-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.leader-card.ceo .leader-content {
    position: relative;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.leader-avatar {
    width: 120px;
    height: 150px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    background: var(--dark-700);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.leader-card.ceo .leader-avatar {
    width: 220px;
    height: 300px;
    font-size: 32px;
    background: var(--dark-700);
    box-shadow: var(--shadow-glow-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leader-avatar.blue {
    background: var(--gradient-blue);
}

.leader-avatar.teal {
    background: var(--gradient-teal);
}

.leader-avatar.orange {
    background: var(--gradient-orange);
}

.leader-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 8px;
}

.leader-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.leader-card.ceo .leader-name {
    font-size: 1.5rem;
}

.leader-focus {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.leader-bio {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.leader-bio strong {
    color: var(--white);
}

.leader-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.leader-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Experience Banner */
.experience-banner {
    margin-top: 48px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.experience-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.experience-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.company-tag {
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(20, 184, 166, 0.1) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    transition: all var(--transition);
}

.company-tag:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(20, 184, 166, 0.2) 100%);
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.company-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon-wrapper.blue {
    background: rgba(37, 99, 235, 0.15);
}

.service-icon-wrapper.teal {
    background: rgba(20, 184, 166, 0.15);
}

.service-icon-wrapper.purple {
    background: rgba(139, 92, 246, 0.15);
}

.service-icon-wrapper.orange {
    background: rgba(245, 158, 11, 0.15);
}

.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.service-icon-wrapper.blue svg {
    stroke: var(--blue);
}

.service-icon-wrapper.teal svg {
    stroke: var(--teal);
}

.service-icon-wrapper.purple svg {
    stroke: var(--purple);
}

.service-icon-wrapper.orange svg {
    stroke: var(--orange);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    font-size: 14px;
    color: var(--gray-400);
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.industry-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--blue);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.industry-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--teal);
}

.why-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--teal);
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.why-content p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============================================
   PROCESS FLOW - CLEAN MINIMAL DESIGN
   ============================================ */
.process-flow {
    position: relative;
    padding-left: 80px;
}

/* Vertical connecting line */
.flow-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(20, 184, 166, 0.1) 0%,
            rgba(20, 184, 166, 0.5) 20%,
            rgba(37, 99, 235, 0.5) 80%,
            rgba(37, 99, 235, 0.1) 100%);
}

.flow-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg,
            rgba(20, 184, 166, 1),
            rgba(20, 184, 166, 0));
    animation: flowDown 3s ease-in-out infinite;
}

@keyframes flowDown {
    0% {
        top: -30px;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Each step */
.flow-step {
    display: flex;
    gap: 32px;
    padding: 28px 0;
    position: relative;
    align-items: flex-start;
}

.flow-step::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(20, 184, 166, 0.3),
            rgba(20, 184, 166, 0.1));
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flow-step:hover::before {
    opacity: 1;
}

/* Number marker */
.flow-marker {
    position: absolute;
    left: -56px;
    top: 28px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d9488, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 20px rgba(13, 148, 136, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.flow-marker span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.flow-step:hover .flow-marker {
    transform: scale(1.15);
    box-shadow:
        0 0 40px rgba(13, 148, 136, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.flow-marker.complete {
    background: linear-gradient(135deg, #0d9488, #2563eb, #7c3aed);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Content */
.flow-content {
    flex: 1;
    padding-top: 4px;
}

.flow-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
}

.flow-step:hover .flow-content h4 {
    color: #14b8a6;
}

.flow-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.flow-step:hover .flow-content p {
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive */
@media (max-width: 768px) {
    .process-flow {
        padding-left: 60px;
    }

    .flow-line {
        left: 18px;
    }

    .flow-marker {
        left: -42px;
        width: 40px;
        height: 40px;
    }

    .flow-marker span {
        font-size: 16px;
    }

    .flow-step {
        padding: 20px 0;
    }

    .flow-content h4 {
        font-size: 1.1rem;
    }
}

/* ============================================
   CASE STUDIES
   ============================================ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.case-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.case-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.case-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-color: rgba(37, 99, 235, 0.3);
}

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

.case-type {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    background: rgba(20, 184, 166, 0.15);
    color: var(--teal);
    border-radius: 100px;
}

.case-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
}

.case-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
}

.case-section {
    margin-bottom: 16px;
}

.case-section .label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.case-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.case-results {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.case-card.featured .case-results {
    background: rgba(255, 255, 255, 0.05);
}

.result {
    flex: 1;
    text-align: center;
}

.result-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
}

.result.highlight .result-value {
    color: var(--blue-light);
}

.result-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.result-label small {
    display: block;
    font-size: 10px;
    color: var(--gray-500);
    text-transform: none;
    letter-spacing: 0;
}

/* Additional Results */
.additional-results {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.additional-results h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.results-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
}

.result-row .client {
    font-weight: 600;
    color: var(--white);
}

.result-row .service {
    color: var(--gray-400);
}

.result-row .outcome {
    font-weight: 600;
    color: var(--teal);
    text-align: right;
}

/* ============================================
   VISION & MISSION
   ============================================ */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.vm-card.vision {
    background: var(--gradient-cta);
}

.vm-card.mission {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--blue);
}

.vm-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.vm-card.vision h3 {
    color: white;
}

.vm-card.mission h3 {
    color: var(--white);
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.vm-card.vision p {
    color: rgba(255, 255, 255, 0.9);
}

.vm-card.mission p {
    color: var(--gray-400);
}

.vm-card strong {
    color: white;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    background: transparent;
}

.contact-card {
    position: relative;
    padding: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
}

.contact-card-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(37, 99, 235, 0.1), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(20, 184, 166, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-content {
    position: relative;
}

.contact-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    line-height: 1.8;
}

.contact-intro strong {
    color: var(--white);
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--teal);
    transform: translateY(-4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(20, 184, 166, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
}

.contact-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.team-summary {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-label {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.team-names {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FOOTER
   ============================================ */
.doc-footer {
    padding: 40px 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-logo {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand .accent {
    color: var(--teal);
}

.footer-text {
    text-align: right;
}

.footer-text p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-text .tagline {
    margin-top: 4px;
    font-style: italic;
    color: var(--gray-600);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cover-header {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }

    .cover-content {
        padding: 40px 24px;
    }

    .cover-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .stats-grid {
        flex-direction: column;
        width: 100%;
    }

    .stat-card {
        width: 100%;
    }

    .cover-footer {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .contact-pills {
        flex-direction: column;
        width: 100%;
    }

    .contact-pill {
        justify-content: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-inner {
        padding: 0 24px;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
    }

    .section-number {
        font-size: 48px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .quote-card {
        position: static;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .leader-card.ceo .leader-content {
        flex-direction: column;
        text-align: center;
    }

    .leader-card.ceo .leader-avatar {
        margin: 0 auto;
    }

    .leader-card.ceo .leader-tags {
        justify-content: center;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .leader-avatar {
        margin: 0 auto;
    }

    .leader-tags {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 40px 24px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .result-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }

    .result-row .outcome {
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .cover {
        min-height: auto;
        page-break-after: always;
    }

    .gradient-orb,
    .grid-pattern,
    .noise-overlay,
    .scroll-indicator {
        display: none;
    }

    .section {
        opacity: 1;
        transform: none;
        page-break-inside: avoid;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================
   ANIMATED BACKGROUND GROWTH GRAPHS
   ============================================ */
.bg-graphs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

/* SVG Graph Styles */
.bg-graph {
    position: absolute;
    opacity: 0.4;
}

/* Neural Network Canvas */
.neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.graph-1 {
    width: 45%;
    height: 200px;
    bottom: 5%;
    left: -5%;
    animation: graphSlide 25s ease-in-out infinite;
}

.graph-2 {
    width: 40%;
    height: 180px;
    top: 10%;
    right: -5%;
    animation: graphSlide 30s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.graph-3 {
    width: 50%;
    height: 220px;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: graphSlide 35s ease-in-out infinite;
    animation-delay: -10s;
    opacity: 0.4;
}

@keyframes graphSlide {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateX(10%);
        opacity: 0.6;
    }

    50% {
        transform: translateX(5%);
        opacity: 0.5;
    }

    75% {
        transform: translateX(-5%);
        opacity: 0.6;
    }
}

.graph-3 {
    animation-name: graphSlide3;
}

@keyframes graphSlide3 {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateX(-45%) scale(1.05);
        opacity: 0.5;
    }
}

/* Graph Line Animation */
.graph-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 8s ease-in-out infinite;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0.3;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -1000;
        opacity: 0.3;
    }
}

/* Graph Dot Animation */
.graph-dot {
    opacity: 0;
    animation: moveDot 8s ease-in-out infinite;
}

.graph-1 .graph-dot {
    animation-delay: 0s;
}

.graph-2 .graph-dot {
    animation-delay: -2s;
}

.graph-3 .graph-dot {
    animation-delay: -4s;
}

@keyframes moveDot {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* Graph Fill Animation */
.graph-fill {
    opacity: 0.5;
    animation: fillPulse 4s ease-in-out infinite;
}

@keyframes fillPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Animated Bar Chart */
.bg-bars {
    position: absolute;
    bottom: 15%;
    right: 8%;
    opacity: 0.35;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    opacity: 0.5;
}

.bar {
    width: 12px;
    background: linear-gradient(to top, rgba(6, 182, 212, 0.12), rgba(16, 185, 129, 0.2));
    border-radius: 4px 4px 0 0;
    animation: barGrow 3s ease-in-out infinite;
}

.bar-1 {
    height: 40%;
    animation-delay: 0s;
}

.bar-2 {
    height: 60%;
    animation-delay: 0.15s;
}

.bar-3 {
    height: 45%;
    animation-delay: 0.3s;
}

.bar-4 {
    height: 80%;
    animation-delay: 0.45s;
}

.bar-5 {
    height: 55%;
    animation-delay: 0.6s;
}

.bar-6 {
    height: 90%;
    animation-delay: 0.75s;
}

.bar-7 {
    height: 65%;
    animation-delay: 0.9s;
}

.bar-8 {
    height: 100%;
    animation-delay: 1.05s;
}

@keyframes barGrow {

    0%,
    100% {
        transform: scaleY(0.6);
        opacity: 0.3;
    }

    50% {
        transform: scaleY(1);
        opacity: 0.7;
    }
}

/* Additional Floating Data Points */
.bg-graphs::before,
.bg-graphs::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.6);
    animation: floatPoint 6s ease-in-out infinite;
}

.bg-graphs::before {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.bg-graphs::after {
    top: 60%;
    right: 20%;
    background: var(--blue);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    animation-delay: -3s;
}

@keyframes floatPoint {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) scale(1.3);
        opacity: 0.8;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bg-graphs {
        opacity: 0.3;
    }

    .bg-bars {
        display: none;
    }

    .graph-1,
    .graph-2,
    .graph-3 {
        width: 80%;
    }
}