@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Space+Grotesk:wght@400;700&display=swap');

:root {
    --deep-navy: #05141e;
    --navy-light: #0a2636;
    --neon-cyan: #3CA5C8;
    --neon-blue: #297290;
    --text-main: #e0e6ed;
    --text-dim: #8b9bb4;
    --glass-bg: rgba(5, 20, 30, 0.6);
    --glass-border: rgba(60, 165, 200, 0.15);
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.deep-dive-theme {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-main);
    background-color: var(--deep-navy);
    overflow-x: hidden;
}

h1, h2, h3, h4, .hero-bg-text, .massive-title {
    font-family: 'Outfit', sans-serif;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--deep-navy); 
}
::-webkit-scrollbar-thumb {
    background: var(--neon-cyan); 
    border-radius: 4px;
}

/* Floating Bubbles Background */
.bubbles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), rgba(60, 165, 200, 0.05));
    border: 1px solid rgba(60, 165, 200, 0.2);
    border-radius: 50%;
    animation: rise infinite ease-in;
}
.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 12s; }
.bubble:nth-child(2) { width: 80px; height: 80px; left: 20%; animation-duration: 18s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 20px; height: 20px; left: 35%; animation-duration: 9s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 50px; height: 50px; left: 60%; animation-duration: 15s; }
.bubble:nth-child(5) { width: 100px; height: 100px; left: 80%; animation-duration: 22s; animation-delay: 1s; }
.bubble:nth-child(6) { width: 30px; height: 30px; left: 90%; animation-duration: 10s; animation-delay: 3s; }

@keyframes rise {
    0% { bottom: -100px; transform: translateX(0); opacity: 0; }
    50% { opacity: 1; }
    100% { bottom: 1080px; transform: translateX(50px); opacity: 0; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 20px 0;
}
.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.logo img { height: 80px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); transition: var(--transition); }
.logo img:hover { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(255,255,255,0.5)); }

.nav-links {
    display: flex; list-style: none; gap: 40px;
}
.nav-links li a {
    color: white; font-weight: 600; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 2px;
    position: relative; padding: 5px 0; transition: var(--transition);
}
.nav-links li a::before {
    content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px; border-radius: 50%; background: var(--neon-cyan);
    opacity: 0; transition: var(--transition);
}
.nav-links li a:hover { color: var(--neon-cyan); }
.nav-links li a:hover::before { top: -10px; opacity: 1; box-shadow: 0 0 10px var(--neon-cyan); }

/* Language Selector */
.lang-selector {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.lang-current {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    transition: var(--transition);
}
.lang-current:hover {
    color: var(--neon-cyan);
}
.lang-current i.fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.lang-selector:hover .lang-current i.fa-chevron-down {
    transform: rotate(180deg);
}
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
}
.lang-selector:hover .lang-dropdown,
.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    text-transform: none;
    letter-spacing: normal;
}
.lang-dropdown li a::before {
    display: none;
}
.lang-dropdown li a:hover, .lang-dropdown li a.active {
    background: rgba(60, 165, 200, 0.1);
    color: var(--neon-cyan);
}

.mobile-menu-toggle { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Creative Hero */
.creative-hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; position: relative;
    overflow: hidden;
}
.hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; filter: brightness(0.6) contrast(1.1);
    background: radial-gradient(circle at center, rgba(3, 13, 20, 1) 0%, var(--deep-navy) 100%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(5, 20, 30, 0.3) 0%, rgba(5, 20, 30, 0.8) 100%);
    z-index: 1;
}

.hero-bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 15vw; font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    white-space: nowrap; z-index: 2; pointer-events: none;
    animation: floatText 10s ease-in-out infinite;
}
@keyframes floatText {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -55%) scale(1.02); }
}

.hero-content {
    max-width: 900px; z-index: 10; position: relative;
}

.glow-badge {
    display: inline-block; padding: 8px 30px;
    background: rgba(60, 165, 200, 0.05);
    border: 1px solid var(--neon-cyan); color: var(--neon-cyan);
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 4px; border-radius: 50px;
    margin-bottom: 30px; box-shadow: 0 0 20px rgba(60, 165, 200, 0.3);
    backdrop-filter: blur(5px);
}

.creative-hero h1 {
    font-size: 5.5rem; font-weight: 900; line-height: 1;
    margin-bottom: 25px; text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.creative-hero h1 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--neon-cyan);
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text; background-clip: text;
    text-shadow: none;
}

.creative-hero p {
    font-size: 1.3rem; margin-bottom: 30px; color: var(--text-main);
    max-width: 700px; margin-inline: auto;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.global-badge {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 25px; margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px; font-family: 'Outfit', sans-serif;
    font-size: 1rem; color: var(--text-main);
    backdrop-filter: blur(10px);
}
.global-badge i { color: var(--neon-cyan); font-size: 1.2rem; }

.hero-actions { display: flex; gap: 20px; justify-content: center; }

.btn-primary, .btn-outline {
    padding: 16px 40px; font-weight: 700; font-family: 'Outfit', sans-serif;
    font-size: 1rem; text-transform: uppercase; letter-spacing: 2px;
    border-radius: 5px; transition: var(--transition);
    position: relative; overflow: hidden; z-index: 1; display: inline-block;
}
.btn-primary {
    background: var(--neon-cyan); color: var(--deep-navy);
    box-shadow: 0 0 20px rgba(60, 165, 200, 0.4); border: none;
}
.btn-primary:hover {
    transform: translateY(-5px); box-shadow: 0 15px 30px rgba(60, 165, 200, 0.6);
    background: white; color: var(--deep-navy);
}
.btn-outline {
    background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    border-color: white; transform: translateY(-5px); background: rgba(255,255,255,0.1);
}

/* Animated Waves */
.wave-container {
    position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0;
    z-index: 10;
}
.waves {
    position: relative; width: 100%; height: 100px; margin-bottom: -7px; min-height: 100px; max-height: 150px;
}
.parallax > use { animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; }
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }
@keyframes move-forever { 0% { transform: translate3d(-90px,0,0); } 100% { transform: translate3d(85px,0,0); } }

/* Sections */
section { padding: 120px 0; position: relative; z-index: 10; }

.neon-subtitle {
    color: var(--neon-cyan); text-transform: uppercase; letter-spacing: 4px;
    font-size: 1rem; margin-bottom: 10px; display: block;
}

.creative-about { background: var(--deep-navy); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 3rem; margin-bottom: 25px; line-height: 1.1; }
.about-text p { 
    font-size: 1.15rem; 
    line-height: 1.8; 
    color: var(--text-dim); 
    margin-bottom: 45px; 
    padding-right: 20px;
}

.slogan-box {
    background: linear-gradient(90deg, rgba(60, 165, 200, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--neon-cyan);
    padding: 25px 30px; 
    border-radius: 0 15px 15px 0; 
    display: flex; 
    gap: 20px; 
    align-items: flex-start;
    margin-top: 20px;
}
.slogan-box i {
    font-size: 2rem;
    color: var(--neon-cyan);
    opacity: 0.6;
}
.slogan-box p { 
    margin: 0; 
    font-size: 1.15rem; 
    color: white; 
    line-height: 1.6;
    font-weight: 600;
}

.image-frame { position: relative; }
.floating-img {
    width: 100%; border-radius: 20px; position: relative; z-index: 2;
    animation: float 6s ease-in-out infinite; border: 1px solid rgba(60, 165, 200,0.2);
}
.floating-img-slow {
    width: 100%; border-radius: 20px; position: relative; z-index: 2;
    animation: float 8s ease-in-out infinite reverse; border: 1px solid rgba(60, 165, 200,0.2);
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.glow-orb {
    position: absolute; top: -20%; right: -10%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(60, 165, 200,0.3) 0%, transparent 70%);
    z-index: 1; filter: blur(40px);
}
.glow-orb.blue { background: radial-gradient(circle, rgba(41, 114, 144,0.3) 0%, transparent 70%); left: -10%; }

/* Bento Grid Services */
.creative-services { background: linear-gradient(to bottom, var(--deep-navy), var(--navy-light)); }
.section-header { text-align: center; margin-bottom: 70px; }
.massive-title { font-size: 4rem; letter-spacing: 5px; color: white; text-transform: uppercase; }

.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(200px, auto);
    gap: 20px;
}
.bento-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 40px; position: relative; overflow: hidden;
    transition: var(--transition); backdrop-filter: blur(15px); cursor: pointer;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; justify-content: flex-start; }

.bento-item::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(60, 165, 200,0.15), transparent 50%);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
    z-index: 0;
}
.bento-content { position: relative; z-index: 1; }

.bento-item:hover { 
    transform: translateY(-8px) scale(1.02); 
    border-color: rgba(60, 165, 200,0.4); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(60, 165, 200, 0.1); 
}
.bento-item:hover::before { opacity: 1; }

.bento-content i { 
    font-size: 2rem; color: var(--neon-cyan); 
    margin-bottom: 25px; 
    display: inline-flex; align-items: center; justify-content: center;
    width: 65px; height: 65px;
    background: rgba(60, 165, 200, 0.05);
    border: 1px solid rgba(60, 165, 200, 0.2);
    border-radius: 16px;
    transition: var(--transition);
}
.bento-item:hover i {
    background: var(--neon-cyan);
    color: var(--deep-navy);
    box-shadow: 0 0 20px rgba(60, 165, 200, 0.5);
    transform: scale(1.1);
}
.bento-content h3 { font-size: 1.6rem; margin-bottom: 15px; font-weight: 700; }
.bento-content p { color: var(--text-dim); line-height: 1.6; }

/* Inspection */
.creative-inspection { background: var(--deep-navy); }
.inspection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.hex-frame img { clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%); border-radius: 0; }
.inspection-text h2 { font-size: 3rem; margin-bottom: 40px; }

.tech-list { list-style: none; }
.tech-list li { display: flex; gap: 25px; margin-bottom: 30px; }
.tech-icon {
    min-width: 60px; height: 60px; background: rgba(60, 165, 200,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--neon-cyan); font-size: 1.5rem; border: 1px solid rgba(60, 165, 200,0.2);
}
.tech-list li div strong { display: block; font-size: 1.2rem; color: white; font-family: 'Outfit'; margin-bottom: 5px; }
.tech-list li div span { color: var(--text-dim); line-height: 1.5; }

/* Clients Carousel */
.creative-clients { padding: 80px 0; background: var(--navy-light); border-top: 1px solid rgba(255,255,255,0.05); }
.scrolling-wrapper { overflow: hidden; white-space: nowrap; position: relative; margin-top: 40px; }
.scrolling-wrapper::before, .scrolling-wrapper::after {
    content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none;
}
.scrolling-wrapper::before { left: 0; background: linear-gradient(to right, var(--navy-light), transparent); }
.scrolling-wrapper::after { right: 0; background: linear-gradient(to left, var(--navy-light), transparent); }

.clients-track {
    display: inline-block; animation: scroll 20s linear infinite;
}
.clients-track img {
    height: 60px; margin: 0 40px; filter: grayscale(100%) brightness(200%); opacity: 0.5; transition: var(--transition);
}
.clients-track img:hover { filter: grayscale(0%) brightness(100%); opacity: 1; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Footer */
.creative-footer {
    background: #01060d; padding: 100px 0 30px; position: relative; overflow: hidden;
}
.footer-glow {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 200px; background: radial-gradient(ellipse at bottom, rgba(60, 165, 200,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.brand-col p { color: var(--text-dim); margin: 20px 0; max-width: 300px; }
.footer-logo { height: 140px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }

.footer-col h3 { font-size: 1.6rem; margin-bottom: 30px; color: white; }

/* Contact Form */
.glass-form {
    display: flex; flex-direction: column; gap: 15px;
}
.glass-form .input-group {
    display: flex; gap: 15px;
}
.glass-form input, .glass-form textarea {
    width: 100%; padding: 12px 15px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white; font-family: 'Space Grotesk', sans-serif;
    outline: none; transition: var(--transition);
}
.glass-form input::placeholder, .glass-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.glass-form input:focus, .glass-form textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(60, 165, 200, 0.2);
}
.glass-form button {
    cursor: pointer; width: 100%; font-size: 0.9rem; padding: 14px;
}

.form-status {
    display: none; padding: 12px 15px; border-radius: 8px; font-size: 0.95rem; text-align: center; margin-top: 5px;
}
.form-status.visible { display: block; animation: fade-in-up 0.5s ease forwards; }
.form-status.success { background: rgba(0, 229, 130, 0.1); border: 1px solid rgba(0, 229, 130, 0.3); color: #00e582; }
.form-status.error { background: rgba(255, 60, 60, 0.1); border: 1px solid rgba(255, 60, 60, 0.3); color: #ff3c3c; }

.contact-item { display: flex; gap: 20px; align-items: center; margin-bottom: 25px; }
.contact-item i { color: var(--neon-cyan); font-size: 1.5rem; }
.contact-item span, .contact-item a { color: var(--text-main); font-size: 1.1rem; transition: var(--transition); }
.contact-item a:hover { color: var(--neon-cyan); }

.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 50%; margin-right: 15px;
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); color: white;
}
.social-links a:hover { background: var(--neon-cyan); color: var(--deep-navy); border-color: var(--neon-cyan); transform: translateY(-3px); }

.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; color: var(--text-dim); }

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-80px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(80px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .inspection-grid { grid-template-columns: 1fr; }
    .creative-hero h1 { font-size: 4rem; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-item.wide { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 80px 0; }
}
@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .creative-hero h1 { font-size: 3rem; }
    .hero-bg-text { font-size: 15vw; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--navy-light); flex-direction: column; padding: 20px 0; text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }
    .lang-selector { justify-content: center; margin-top: 10px; }
    .nav-links.active { display: flex; }
    .mobile-menu-toggle { display: block; }
    .glass-form .input-group { flex-direction: column; }
    section { padding: 60px 0; }
}
@media (max-width: 576px) {
    .creative-hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; gap: 15px; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .massive-title { font-size: 2.5rem; }
    .about-text h2, .inspection-text h2 { font-size: 2rem; }
}


/* Impact Stats */
.impact-stats {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(60, 165, 200, 0.05) 0%, transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative; z-index: 2;
}
.stats-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 30px; padding: 0 5%;
}
.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px; padding: 40px 20px;
    text-align: center; backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-cyan);
}
.stat-icon {
    font-size: 2.5rem; color: var(--neon-cyan);
    margin-bottom: 20px; opacity: 0.8;
}
.stat-card h3 {
    font-size: 3.5rem; font-family: 'Space Grotesk', sans-serif;
    color: white; display: inline-block; margin: 0;
}
.stat-card .stat-plus {
    font-size: 2.5rem; color: var(--neon-cyan);
    font-weight: bold; vertical-align: top; margin-left: 5px;
}
.stat-card p {
    color: var(--text-dim); font-size: 1.1rem;
    margin-top: 10px; font-weight: 500;
}

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