*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --purple-50: #faf5ff; --purple-100: #f3e8ff; --purple-200: #e9d5ff; --purple-300: #d8b4fe;
    --purple-400: #c084fc; --purple-500: #a855f7; --purple-600: #9333ea; --purple-700: #7e22ce;
    --purple-800: #6b21a8; --purple-900: #581c87;
    --black: #0a0a0a; --black-light: #111111; --black-card: #161616; --black-border: #222222;
    --white: #ffffff; --gray-100: #f3f4f6; --gray-300: #d1d5db; --gray-400: #9ca3af;
    --gray-500: #6b7280; --gray-600: #4b5563; --gray-700: #374151;
    --gradient-purple: linear-gradient(135deg, #a855f7, #7c3aed, #6d28d9);
    --gradient-text: linear-gradient(135deg, #c084fc, #a855f7, #8b5cf6);
    --gradient-glow: radial-gradient(ellipse at center, rgba(168,85,247,0.15) 0%, transparent 70%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--purple-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-500); }

/* ===================== CURSOR GLOW ===================== */
.cursor-glow {
    position: fixed; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, transparent 70%);
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
}

/* ===================== PRELOADER ===================== */
.preloader {
    position: fixed; inset: 0; background: var(--black); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    font-size: 2.2rem; font-weight: 900; letter-spacing: -0.04em;
    background: var(--gradient-text); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: pPulse 1.5s ease-in-out infinite;
}
.preloader-bar { width: 200px; height: 2px; background: var(--black-border); border-radius: 2px; overflow: hidden; }
.preloader-bar-inner {
    height: 100%; width: 0%; background: var(--gradient-purple);
    border-radius: 2px; animation: pFill 1.8s ease-in-out forwards;
}
@keyframes pPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes pFill { 0% { width: 0; } 100% { width: 100%; } }

/* ===================== NAVIGATION ===================== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; height: 80px; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; z-index: 1001; }
.nav-logo-icon {
    width: 38px; height: 38px; background: var(--gradient-purple); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 13px; color: white; letter-spacing: -0.02em;
}
.nav-logo-image{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.nav-logo-text { font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--purple-400); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--gray-400); font-size: 0.875rem;
    font-weight: 500; letter-spacing: 0.01em; transition: color 0.3s;
    position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gradient-purple); border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    padding: 10px 24px !important; background: var(--gradient-purple); color: white !important;
    border-radius: 10px; font-weight: 600; font-size: 0.875rem;
    transition: all 0.3s !important; box-shadow: 0 4px 20px rgba(168,85,247,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(168,85,247,0.4); }
.nav-cta.active { box-shadow: 0 4px 25px rgba(168,85,247,0.5); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    z-index: 1001; background: none; border: none; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed; inset: 0; background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px); z-index: 999;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 32px; opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a { text-decoration: none; color: var(--gray-400); font-size: 1.5rem; font-weight: 600; transition: color 0.3s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--purple-400); }

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 120px 40px 80px; overflow: hidden;
}
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(168,85,247,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(168,85,247,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbF 8s ease-in-out infinite; }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(168,85,247,0.12); top: -100px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(124,58,237,0.08); bottom: -50px; left: -100px; animation-delay: -4s; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(192,132,252,0.06); top: 40%; left: 50%; animation-delay: -2s; }
@keyframes orbF {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content { max-width: 900px; text-align: center; position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 8px; background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.2); border-radius: 100px;
    font-size: 0.8rem; font-weight: 500; color: var(--purple-300);
    margin-bottom: 32px; opacity: 0; transform: translateY(20px);
}
.hero-badge-dot {
    width: 8px; height: 8px; background: var(--purple-500); border-radius: 50%;
    animation: dotP 2s ease-in-out infinite;
}
@keyframes dotP {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(168,85,247,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(168,85,247,0); }
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.1;
    letter-spacing: -0.04em; margin-bottom: 24px; opacity: 0; transform: translateY(30px);
}
.hero-title .line { display: block; min-height: 1.2em; }
.hero-title .gradient { background: var(--gradient-text); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-title .outline { -webkit-text-stroke: 1.5px var(--purple-500); -webkit-text-fill-color: transparent; }

.hero-desc {
    font-size: 1.1rem; line-height: 1.75; color: var(--gray-400);
    max-width: 640px; margin: 0 auto 40px; font-weight: 400;
    opacity: 0; transform: translateY(30px);
}
.hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(30px);
}

/* Typing cursor */
.type-cursor {
    display: inline-block; width: 3px; height: 0.85em;
    background: var(--purple-500); margin-left: 4px; vertical-align: text-bottom;
    animation: blink 0.7s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeUp 1s 2.5s forwards;
}
.hero-scroll-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-500); }
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--purple-500), transparent);
    animation: sLine 2s ease-in-out infinite;
}
@keyframes sLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp { to { opacity: 1; } }

#particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.floating-icons { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.float-icon { position: absolute; color: rgba(168,85,247,0.12); animation: fIcon 12s ease-in-out infinite; }
.float-icon:nth-child(1) { top: 15%; left: 8%; font-size: 28px; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 25%; right: 12%; font-size: 24px; animation-delay: -3s; }
.float-icon:nth-child(3) { bottom: 30%; left: 15%; font-size: 32px; animation-delay: -6s; }
.float-icon:nth-child(4) { bottom: 20%; right: 8%; font-size: 26px; animation-delay: -9s; }
.float-icon:nth-child(5) { top: 50%; left: 5%; font-size: 20px; animation-delay: -2s; }
.float-icon:nth-child(6) { top: 10%; right: 30%; font-size: 22px; animation-delay: -5s; }
@keyframes fIcon {
    0%, 100% { transform: translateY(0) rotate(0); opacity: 0.12; }
    25% { transform: translateY(-15px) rotate(5deg); opacity: 0.22; }
    50% { transform: translateY(-25px) rotate(-3deg); opacity: 0.12; }
    75% { transform: translateY(-10px) rotate(3deg); opacity: 0.18; }
}

/* ===================== BUTTONS ===================== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--gradient-purple); color: white;
    border: none; border-radius: 12px; font-size: 0.95rem; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 4px 25px rgba(168,85,247,0.35); font-family: inherit;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(168,85,247,0.5); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: transparent; color: var(--white);
    border: 1px solid var(--black-border); border-radius: 12px;
    font-size: 0.95rem; font-weight: 500; cursor: pointer;
    text-decoration: none; transition: all 0.3s; font-family: inherit;
}
.btn-secondary:hover { border-color: var(--purple-700); background: rgba(168,85,247,0.05); transform: translateY(-2px); }

.magnetic { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* ===================== SECTIONS ===================== */
.section { padding: 120px 40px; position: relative; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--purple-400); margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--purple-500); }
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 20px;
}
.section-desc { font-size: 1.05rem; color: var(--gray-400); line-height: 1.75; max-width: 700px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================== MARQUEE ===================== */
.marquee-section {
    padding: 40px 0; border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border); overflow: hidden;
}
.marquee-track { display: flex; gap: 60px; animation: marq 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: flex; align-items: center; gap: 12px; color: var(--gray-500);
    font-size: 1rem; font-weight: 500; white-space: nowrap; transition: color 0.3s;
}
.marquee-item:hover { color: var(--purple-400); }
.marquee-item iconify-icon { font-size: 24px; }
@keyframes marq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================== SERVICES ===================== */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 60px; }
.service-card {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 20px; padding: 32px 24px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden; text-align: center;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-purple); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(168,85,247,0.3); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(168,85,247,0.08); }
.service-icon {
    width: 60px; height: 60px; background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.15); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--purple-400); margin: 0 auto 20px; transition: all 0.3s;
}
.service-card:hover .service-icon { background: rgba(168,85,247,0.15); border-color: rgba(168,85,247,0.3); transform: scale(1.08); }
.service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.service-card p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.65; }

/* ===================== ABOUT ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-visual { position: relative; height: 480px; border-radius: 24px; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.about-visual:hover img { transform: scale(1.03); }
.about-visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(168,85,247,0.15), transparent 60%); }
.about-visual-border { position: absolute; inset: 0; border: 1px solid rgba(168,85,247,0.2); border-radius: 24px; }
.about-text-block { margin-bottom: 24px; }
.about-text-block h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; color: var(--purple-300); }
.about-text-block p { font-size: 0.95rem; color: var(--gray-400); line-height: 1.8; }

/* ===================== TEAM ===================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.team-card {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 24px; overflow: hidden; transition: all 0.4s; text-align: center;
}
.team-card:hover { border-color: rgba(168,85,247,0.3); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(168,85,247,0.08); }
.team-avatar-wrap { position: relative; height: 260px; overflow: hidden; }
.team-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.team-card:hover .team-avatar-wrap img { transform: scale(1.05); }
.team-avatar-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--black-card), transparent 50%); }
.team-info { padding: 24px 20px 28px; }
.team-info h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.team-info .team-role { font-size: 0.85rem; color: var(--purple-400); font-weight: 500; margin-bottom: 8px; }
.team-info p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* ===================== GLOBAL REFERENCE ===================== */
.global-ref { padding: 100px 40px; position: relative; overflow: hidden; }
.global-ref-box {
    max-width: 1000px; margin: 0 auto; padding: 70px 60px;
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 32px; text-align: center; position: relative; overflow: hidden;
}
.global-ref-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: var(--gradient-glow); animation: ctaG 6s ease-in-out infinite;
}
@keyframes ctaG { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(10%, 10%); } }
.global-ref-box > * { position: relative; z-index: 2; }
.global-stats { display: flex; justify-content: center; gap: 60px; margin-top: 40px; flex-wrap: wrap; }
.global-stat { text-align: center; }
.global-stat-num {
    font-size: 3rem; font-weight: 900; background: var(--gradient-text);
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em; line-height: 1.1;
}
.global-stat-label { font-size: 0.85rem; color: var(--gray-500); margin-top: 8px; font-weight: 500; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px; background: var(--black-card);
    border: 1px solid var(--black-border); border-radius: 16px; transition: all 0.3s;
}
.contact-info-card:hover { border-color: rgba(168,85,247,0.3); transform: translateX(4px); }
.contact-info-icon {
    width: 44px; height: 44px; background: rgba(168,85,247,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-400); font-size: 20px; flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.contact-info-value { font-size: 0.95rem; font-weight: 500; margin-top: 2px; }
.contact-info-value a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.contact-info-value a:hover { color: var(--purple-400); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--gray-400); }
.form-group input, .form-group textarea, .form-group select {
    padding: 12px 16px; background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 12px; color: var(--white); font-family: inherit; font-size: 0.9rem;
    transition: all 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--purple-500); box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black-card); }
.form-alert { padding: 12px 16px; border-radius: 12px; font-size: 0.85rem; font-weight: 500; }
.form-alert.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #4ade80; }
.form-alert.error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #f87171; }

.map-container { border-radius: 20px; overflow: hidden; border: 1px solid var(--black-border); height: 300px; margin-top: 40px; position: relative; }
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(1) contrast(0.85) brightness(0.7); }
.map-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    display: flex; align-items: center; gap: 12px;
}
.map-pin { color: var(--purple-400); font-size: 22px; }
.map-text { font-size: 0.9rem; font-weight: 500; }

/* ===================== FOOTER ===================== */
.footer { padding: 80px 40px 40px; border-top: 1px solid var(--black-border); background: var(--black-light); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social {
    width: 40px; height: 40px; border-radius: 10px; background: var(--black-card);
    border: 1px solid var(--black-border); display: flex; align-items: center;
    justify-content: center; color: var(--gray-400); text-decoration: none; transition: all 0.3s; font-size: 18px;
}
.footer-social:hover { background: var(--gradient-purple); border-color: transparent; color: white; transform: translateY(-2px); }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 20px; }
.footer-col a { display: block; color: var(--gray-500); text-decoration: none; font-size: 0.9rem; padding: 6px 0; transition: all 0.3s; }
.footer-col a:hover { color: var(--purple-400); transform: translateX(4px); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding-top: 32px; border-top: 1px solid var(--black-border);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-600); }

/* ===================== UTILITY ===================== */
.count-up { display: inline-block; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .section { padding: 80px 20px; }
    .nav { padding: 0 20px; }
    .hero { padding: 100px 20px 60px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .global-ref { padding: 60px 20px; }
    .global-ref-box { padding: 40px 24px; }
    .global-stats { gap: 30px; }
    .global-stat-num { font-size: 2.2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }