/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #e0e0e6;
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== ANIMATED BACKGROUND ===== */
.bg-glow {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-glow .orb {
    position: absolute; border-radius: 50%;
    filter: blur(120px); opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}
.bg-glow .orb:nth-child(1) { width: 600px; height: 600px; background: #6c5ce7; top: -10%; left: -5%; }
.bg-glow .orb:nth-child(2) { width: 500px; height: 500px; background: #00cec9; top: 40%; right: -10%; animation-delay: -7s; }
.bg-glow .orb:nth-child(3) { width: 450px; height: 450px; background: #e17055; bottom: -10%; left: 30%; animation-delay: -14s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.1); }
    50% { transform: translate(-30px, 60px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* ===== GRID OVERLAY ===== */
.grid-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 0;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER / NAV ===== */
header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 16px 0;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
header.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(108, 92, 231, 0.08);
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
    font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px;
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo span { font-weight: 400; opacity: 0.7; }
nav ul { display: flex; gap: 32px; }
nav a {
    font-size: 0.9rem; font-weight: 500; color: #a0a0b0;
    transition: color 0.3s; position: relative;
}
nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    transition: width 0.3s;
}
nav a:hover { color: #fff; }
nav a:hover::after { width: 100%; }
nav a.active { color: #fff; }
nav a.active::after { width: 100%; }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: #e0e0e6; transition: 0.3s; }

/* ===== SECTIONS ===== */
section { position: relative; z-index: 1; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; }
.hero-content { max-width: 720px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(108, 92, 231, 0.12); border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: 50px; padding: 6px 18px;
    font-size: 0.82rem; font-weight: 500; color: #a78bfa;
    margin-bottom: 28px; animation: fadeUp 0.8s ease-out;
}
.hero-badge .dot { width: 8px; height: 8px; background: #6c5ce7; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 900;
    line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 24px;
    animation: fadeUp 0.8s ease-out 0.15s both;
}
.hero h1 .gradient-text {
    background: linear-gradient(135deg, #6c5ce7, #00cec9, #6c5ce7);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero p { font-size: 1.15rem; color: #8888a0; max-width: 540px; margin-bottom: 40px; animation: fadeUp 0.8s ease-out 0.3s both; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s ease-out 0.45s both; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px;
    font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none;
    transition: transform 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, #6c5ce7, #5a4bd1); color: #fff;
    box-shadow: 0 4px 25px rgba(108, 92, 231, 0.35);
}
.btn-primary:hover { box-shadow: 0 8px 35px rgba(108, 92, 231, 0.5); }
.btn-secondary {
    background: rgba(255,255,255,0.06); color: #e0e0e6;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero-stats { display: flex; gap: 48px; margin-top: 64px; animation: fadeUp 0.8s ease-out 0.6s both; }
.hero-stats .stat h3 {
    font-size: 2rem; font-weight: 800;
    background: linear-gradient(135deg, #fff, #a0a0b0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stats .stat p { font-size: 0.85rem; color: #666680; margin-bottom: 0; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION HEADING ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; color: #6c5ce7; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.section-header p { color: #8888a0; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== SERVICES ===== */
.services { padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 36px;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(108,92,231,0.06), transparent);
    opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(108, 92, 231, 0.3); box-shadow: 0 20px 60px rgba(108, 92, 231, 0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px; position: relative; z-index: 1;
}
.service-icon.purple { background: rgba(108, 92, 231, 0.15); }
.service-icon.teal { background: rgba(0, 206, 201, 0.15); }
.service-icon.orange { background: rgba(225, 112, 85, 0.15); }
.service-icon.pink { background: rgba(232, 67, 147, 0.15); }
.service-icon.blue { background: rgba(9, 132, 227, 0.15); }
.service-icon.green { background: rgba(0, 184, 148, 0.15); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { font-size: 0.92rem; color: #8888a0; line-height: 1.6; position: relative; z-index: 1; }

/* ===== ABOUT ===== */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
    position: relative; height: 420px; border-radius: 24px; overflow: hidden;
    background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.1));
    border: 1px solid rgba(255,255,255,0.06);
}
.about-visual .floating-card {
    position: absolute; background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 20px; animation: floatCard 6s ease-in-out infinite;
}
.about-visual .floating-card:nth-child(1) { top: 30px; left: 30px; }
.about-visual .floating-card:nth-child(2) { top: 50%; right: 20px; transform: translateY(-50%); animation-delay: -2s; }
.about-visual .floating-card:nth-child(3) { bottom: 30px; left: 50%; transform: translateX(-50%); animation-delay: -4s; }
.floating-card .fc-icon { font-size: 1.8rem; margin-bottom: 8px; }
.floating-card .fc-label { font-size: 0.8rem; color: #8888a0; }
.floating-card .fc-value { font-size: 1.3rem; font-weight: 700; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.about-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
.about-content > p { color: #8888a0; margin-bottom: 32px; font-size: 1.05rem; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature .af-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(108, 92, 231, 0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.2rem;
}
.about-feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.about-feature p { font-size: 0.88rem; color: #8888a0; }

/* ===== STATS BAR ===== */
.stats-bar { padding: 80px 0; }
.stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box {
    text-align: center; padding: 32px 20px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; transition: transform 0.3s, border-color 0.3s;
}
.stat-box:hover { transform: translateY(-4px); border-color: rgba(108,92,231,0.3); }
.stat-box h3 {
    font-size: 2.4rem; font-weight: 800;
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 8px;
}
.stat-box p { font-size: 0.9rem; color: #8888a0; }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; }
.cta-box {
    background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(0,206,201,0.1));
    border: 1px solid rgba(108,92,231,0.2); border-radius: 28px;
    padding: 72px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(108,92,231,0.08) 0%, transparent 60%);
    animation: rotateBg 15s linear infinite;
}
@keyframes rotateBg { to { transform: rotate(360deg); } }
.cta-box h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-box p { color: #8888a0; font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-box .btn { position: relative; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; color: #a0a0b0; }
.form-group input,
.form-group textarea {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; color: #e0e0e6;
    font-family: 'Inter', sans-serif; font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(108, 92, 231, 0.5);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.contact-info > p { color: #8888a0; font-size: 1rem; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ii-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(108, 92, 231, 0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.2rem;
}
.info-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.info-item p { font-size: 0.88rem; color: #8888a0; }

/* ===== FOOTER ===== */
footer {
    position: relative; z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(108,92,231,0.04) 30%, rgba(10,10,18,1) 100%);
    margin-top: 40px;
}
.footer-top-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108,92,231,0.4), rgba(0,206,201,0.4), transparent);
}
.footer-main {
    padding: 72px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 20px; display: inline-block; font-size: 1.6rem; }
.footer-brand > p {
    font-size: 0.9rem; color: #7a7a90; max-width: 300px;
    line-height: 1.7; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.footer-social a:hover {
    background: rgba(108,92,231,0.15); border-color: rgba(108,92,231,0.3);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: #e0e0e6; margin-bottom: 24px;
    position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
    font-size: 0.88rem; color: #7a7a90; transition: color 0.3s, padding-left 0.3s;
}
.footer-col a:hover { color: #a78bfa; padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item .fci-icon { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { font-size: 0.88rem; color: #7a7a90; line-height: 1.5; }

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.footer-bottom {
    padding: 28px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: #555568; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
    font-size: 0.82rem; color: #555568;
    transition: color 0.3s;
    position: relative;
}
.footer-legal a:hover { color: #a78bfa; }
.footer-legal a:not(:last-child)::after {
    content: ''; position: absolute; right: -14px; top: 50%;
    transform: translateY(-50%); width: 3px; height: 3px;
    background: #333345; border-radius: 50%;
}

/* ===== PARTICLES ===== */
.particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.particle {
    position: absolute; width: 3px; height: 3px;
    background: rgba(108, 92, 231, 0.4); border-radius: 50%;
    animation: particleDrift linear infinite;
}
@keyframes particleDrift {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; } 90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900; letter-spacing: -1px; margin-bottom: 16px;
    animation: fadeUp 0.8s ease-out;
}
.page-hero p {
    font-size: 1.1rem; color: #8888a0; max-width: 600px; margin: 0 auto;
    animation: fadeUp 0.8s ease-out 0.15s both;
}
.page-hero .breadcrumb {
    margin-bottom: 24px; font-size: 0.85rem; color: #666680;
    animation: fadeUp 0.8s ease-out;
}
.page-hero .breadcrumb a { color: #6c5ce7; transition: color 0.3s; }
.page-hero .breadcrumb a:hover { color: #a78bfa; }

/* ===== LEGAL / POLICY PAGES ===== */
.legal-content {
    position: relative; z-index: 1;
    padding: 0 0 100px;
}
.legal-content .container { max-width: 800px; }
.legal-content h2 {
    font-size: 1.5rem; font-weight: 700; margin: 48px 0 16px;
    color: #e0e0e6;
}
.legal-content h3 {
    font-size: 1.15rem; font-weight: 600; margin: 32px 0 12px;
    color: #c0c0d0;
}
.legal-content p {
    color: #8888a0; margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8;
}
.legal-content ul {
    list-style: disc; padding-left: 24px; margin-bottom: 16px;
}
.legal-content ul li {
    color: #8888a0; font-size: 0.95rem; line-height: 1.8; margin-bottom: 6px;
}
.legal-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 40px;
    margin-bottom: 32px;
}
.legal-meta {
    display: flex; gap: 24px; flex-wrap: wrap;
    padding: 20px 0; margin-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem; color: #666680;
}

/* ===== ABOUT PAGE EXTRAS ===== */
.team-section { padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 40px 32px; text-align: center;
    transition: transform 0.35s, border-color 0.35s;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(108,92,231,0.3); }
.value-card .vc-icon { font-size: 2.4rem; margin-bottom: 20px; }
.value-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: #8888a0; line-height: 1.6; }

.timeline { padding: 80px 0; }
.timeline-items { position: relative; padding-left: 40px; }
.timeline-items::before {
    content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, #6c5ce7, #00cec9);
    border-radius: 2px;
}
.timeline-item {
    position: relative; margin-bottom: 48px; padding-left: 24px;
}
.timeline-item::before {
    content: ''; position: absolute; left: -32px; top: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: #6c5ce7; border: 3px solid #0a0a0f;
    box-shadow: 0 0 0 2px #6c5ce7;
}
.timeline-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.timeline-item .tl-year { font-size: 0.82rem; color: #6c5ce7; font-weight: 600; margin-bottom: 8px; }
.timeline-item p { font-size: 0.9rem; color: #8888a0; }

/* ===== CONTACT PAGE MAP ===== */
.map-section {
    position: relative; z-index: 1; padding: 0 0 80px;
}
.map-container {
    border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: none; filter: invert(0.9) hue-rotate(180deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 300px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr 1fr; }
    .hero-stats { flex-direction: column; gap: 24px; }
    nav ul {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px);
        flex-direction: column; padding: 24px; gap: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    nav ul.open { display: flex; }
    .menu-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .cta-box { padding: 48px 24px; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
}

.count-up { display: inline-block; }
