/* ============================================================
   ZeeTech Solutions Pvt. Ltd. — Premium Agency Styles
   Futuristic Enterprise | Apple × Stripe Aesthetic
   ============================================================ */

:root {
  --z-black: #000000;
  --z-dark: #050505;
  --z-charcoal: #0a0a0a;
  --z-blue: #0062ff;
  --z-blue-glow: rgba(0, 98, 255, 0.3);
  --z-silver: #e2e2e2;
  --z-white: #f5f5f7;
  --z-muted: #86868b;
  --z-glass: rgba(255, 255, 255, 0.04);
  --z-glass-border: rgba(255, 255, 255, 0.08);
  --z-radius: 16px;
  --z-transition: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: auto;
  background: var(--z-black);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--z-black);
  color: var(--z-silver);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

a, button, input, textarea, select {
  cursor: none;
}

::selection {
  background: var(--z-blue);
  color: var(--z-white);
}

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

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--z-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--z-transition), height 0.2s var(--z-transition), background 0.2s var(--z-transition);
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--z-transition), height 0.4s var(--z-transition), border-color 0.3s var(--z-transition), background 0.3s var(--z-transition);
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--z-blue);
  background: rgba(0, 98, 255, 0.08);
}

.cursor-dot.hover {
  width: 10px;
  height: 10px;
  background: var(--z-white);
  mix-blend-mode: normal;
}

.cursor-ring.click {
  width: 30px;
  height: 30px;
  border-color: var(--z-blue);
  background: rgba(0, 98, 255, 0.15);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--z-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99995;
  transition: opacity 0.8s var(--z-transition), visibility 0.8s var(--z-transition);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--z-white);
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.preloader-logo .logo-dot {
  width: 12px; height: 12px;
  background: var(--z-blue);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--z-blue);
  border-radius: 4px;
  transition: width 0.3s var(--z-transition);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--z-black);
  z-index: 99990;
  pointer-events: none;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ============================================================
   NAVIGATION — Glassmorphism Sticky
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--z-glass-border);
  transition: background 0.4s var(--z-transition);
}

.nav-scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--z-white);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 32px; height: 32px;
  background: var(--z-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 8px;
  color: var(--z-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--z-white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--z-blue);
  border-radius: 2px;
}

.nav-cta {
  padding: 8px 22px;
  background: var(--z-blue);
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #0055e0;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: none;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--z-white);
  border-radius: 2px;
  transition: transform 0.3s var(--z-transition);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 1rem;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--z-transition), opacity 0.4s var(--z-transition);
    border-bottom: 1px solid var(--z-glass-border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 120px 24px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--z-blue);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--z-blue);
}

.section-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--z-white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--z-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--z-black);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  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;
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 98, 255, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 98, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--z-muted);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  font-weight: 700;
  color: var(--z-white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  max-width: 100%;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--z-blue) 0%, #4a9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--z-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS — Premium
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  overflow: hidden;
  transition: transform 0.3s var(--z-transition), box-shadow 0.3s var(--z-transition);
  will-change: transform;
}

.btn-primary {
  background: var(--z-blue);
  color: white;
  box-shadow: 0 0 20px rgba(0, 98, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 98, 255, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--z-white);
  border: 1px solid var(--z-glass-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--z-silver);
  padding: 14px 20px;
}

.btn-ghost:hover {
  color: var(--z-white);
}

.btn .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted-by {
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid var(--z-glass-border);
  border-bottom: 1px solid var(--z-glass-border);
}

.trusted-by-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--z-muted);
  margin-bottom: 2rem;
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logo {
  height: 28px;
  opacity: 0.25;
  filter: grayscale(1);
  transition: opacity 0.4s var(--z-transition), filter 0.4s var(--z-transition);
}

.trusted-logo:hover {
  opacity: 0.6;
  filter: grayscale(0);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 80px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--z-glass-border);
}

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--z-muted);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.marquee-item .tech-icon {
  width: 24px; height: 24px;
  object-fit: contain;
  opacity: 0.5;
  display: inline-block;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FEATURED WORK GRID
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 3rem;
}

.work-card {
  position: relative;
  border-radius: var(--z-radius);
  overflow: hidden;
  background: var(--z-charcoal);
  border: 1px solid var(--z-glass-border);
  transition: transform 0.5s var(--z-transition), border-color 0.4s var(--z-transition);
  cursor: none;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 98, 255, 0.2);
}

.work-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.work-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 98, 255, 0.1);
  color: var(--z-blue);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--z-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.work-card-desc {
  font-size: 0.9rem;
  color: var(--z-muted);
  line-height: 1.6;
}

.work-card.featured {
  grid-column: 1 / -1;
}

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

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

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.process-step {
  padding: 2rem;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-glass-border);
  background: var(--z-charcoal);
  position: relative;
  transition: transform 0.4s var(--z-transition), border-color 0.4s var(--z-transition);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 98, 255, 0.2);
}

.process-step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 98, 255, 0.5);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--z-white);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--z-muted);
  line-height: 1.6;
}

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

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

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem 2rem;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-glass-border);
  background: var(--z-charcoal);
  transition: transform 0.4s var(--z-transition), border-color 0.4s var(--z-transition), box-shadow 0.4s var(--z-transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 98, 255, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 98, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 98, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--z-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--z-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.8rem;
  color: var(--z-silver);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '→';
  color: var(--z-blue);
  font-weight: 600;
}

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

/* ============================================================
   MOCKUP FRAMES (MacBook, Phone)
   ============================================================ */
.mockup-macbook {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.mockup-macbook-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10.5;
  background: var(--z-charcoal);
  border-radius: 12px;
  border: 1px solid var(--z-glass-border);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.mockup-macbook-screen .screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-muted);
  font-size: 0.9rem;
  padding: 2rem;
}

.mockup-macbook-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: var(--z-dark);
  border-radius: 0 0 4px 4px;
}

.mockup-macbook-base {
  width: 112%;
  height: 18px;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  margin: -2px auto 0;
  border-radius: 0 0 12px 12px;
  position: relative;
  left: -6%;
}

.mockup-macbook-base::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #222;
  border-radius: 4px;
}

.mockup-phone {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.mockup-phone-body {
  position: relative;
  width: 100%;
  aspect-ratio: 9/19;
  background: var(--z-dark);
  border-radius: 32px;
  border: 1px solid var(--z-glass-border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 8px;
}

.mockup-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-muted);
  font-size: 0.8rem;
  padding: 1rem;
}

.mockup-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: var(--z-dark);
  border-radius: 0 0 12px 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 24px 40px;
  border-top: 1px solid var(--z-glass-border);
  background: var(--z-dark);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--z-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--z-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--z-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-links a:hover {
  color: var(--z-white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--z-glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--z-muted);
}

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

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

/* ============================================================
   ABOUT GLOBAL FOOTPRINT
   ============================================================ */
.global-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.global-card {
  padding: 2rem;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-glass-border);
  background: var(--z-charcoal);
  text-align: center;
  transition: transform 0.4s var(--z-transition);
}

.global-card:hover {
  transform: translateY(-4px);
}

.global-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.global-country {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--z-white);
  margin-bottom: 0.25rem;
}

.global-city {
  font-size: 0.85rem;
  color: var(--z-muted);
}

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

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

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--z-white);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--z-glass-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--z-white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--z-blue);
  background: rgba(0, 98, 255, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--z-muted);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%2386868b'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--z-dark);
  color: var(--z-white);
}

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

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9995;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--z-transition), box-shadow 0.3s var(--z-transition);
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   GLASSMORPHISM UTILITIES
   ============================================================ */
.glass {
  background: var(--z-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--z-glass-border);
}

.glass-strong {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--z-glass-border);
}

.glow-blue {
  box-shadow: 0 0 30px rgba(0, 98, 255, 0.15);
}

.glow-blue-strong {
  box-shadow: 0 0 60px rgba(0, 98, 255, 0.25);
}

.text-gradient {
  background: linear-gradient(135deg, var(--z-blue) 0%, #4a9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NEON BORDER
   ============================================================ */
.neon-border {
  position: relative;
}

.neon-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent, var(--z-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.neon-border:hover::after {
  opacity: 1;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--z-black);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   MISC
   ============================================================ */
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-muted { color: var(--z-muted); }
.text-white { color: var(--z-white); }

@media (max-width: 1024px) {
  .work-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .hero-glow,
  .hero-glow-2 {
    width: 300px;
    height: 300px;
  }

  .hero canvas {
    display: none;
  }

  .work-grid {
    grid-template-columns: 1fr !important;
  }

  .work-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .work-card-image {
    aspect-ratio: 16/10;
    padding: 1.25rem;
  }

  .work-card-image .work-card-title {
    font-size: 1.3rem !important;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }

  .process-step {
    padding: 1.25rem;
  }

  .process-step-number {
    font-size: 2rem;
  }

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

  .global-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }

  .global-card {
    padding: 1.25rem;
  }

  .global-flag img {
    width: 48px !important;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .trusted-by-logos {
    gap: 1.5rem;
  }

  .trusted-logo {
    height: 22px;
    font-size: 0.9rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .marquee-item {
    font-size: 0.85rem;
  }

  .marquee-item .tech-icon {
    width: 20px;
    height: 20px;
  }

  .mockup-phone {
    max-width: 160px;
  }

  .mockup-macbook {
    max-width: 100%;
  }

  .whatsapp-fab {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }

  .mobile-hide {
    display: none !important;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }

  .stats-grid > div {
    padding: 1rem;
  }

  .section-label {
    font-size: 0.65rem;
  }

  /* Override inline grid layouts that break on mobile */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  [style*="grid-template-columns:1.2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Mockup phones centered on mobile */
  .mockup-phone {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 16px;
  }

  .hero {
    padding: 80px 16px 40px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .process-grid {
    grid-template-columns: 1fr !important;
  }

  .global-grid {
    grid-template-columns: 1fr !important;
  }

  .process-step {
    padding: 1rem;
  }

  .work-card-image {
    aspect-ratio: 4/3;
    padding: 1rem;
  }

  .mockup-phone {
    max-width: 120px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .footer {
    padding: 40px 16px 24px;
  }

  .trusted-by-logos {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
