/* =============================================
   WEB MARKETING ARMY — Premium Dark Theme CSS
   ============================================= */

/* ---- FONTS & VARIABLES ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #060C12;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(16,185,129,0.5);
  --text-primary: #F0F9F4;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent-purple: #10B981;
  --accent-blue: #0EA5E9;
  --accent-cyan: #14B8A6;
  --accent-pink: #F97316;
  --accent-amber: #F59E0B;
  --gradient-main: linear-gradient(135deg, #059669 0%, #0891B2 50%, #0EA5E9 100%);
  --gradient-hero: linear-gradient(135deg, #060C12 0%, #081A14 40%, #060C12 100%);
  --gradient-service: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(14,165,233,0.08) 100%);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(16,185,129,0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 3px; }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent-purple);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(16,185,129,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
}
@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

/* ---- LOADER ---- */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 2px;
  width: 0;
  transition: width 0.1s;
}
.loader-text { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.1em; }

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,12,18,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding-top: 0; padding-bottom: 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
}
.logo-text span { color: var(--accent-purple); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem; font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(16,185,129,0.1);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent-purple);
  border-radius: 50%;
}
.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--gradient-main);
  color: white;
  font-weight: 600; font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(16,185,129,0.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
  background: transparent;
  transition: var(--transition);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(6,12,18,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; }
.mobile-menu-inner ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.mobile-link {
  display: block; padding: 0.75rem 2rem;
  font-size: 1.5rem; font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-link:hover { color: var(--text-primary); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--gradient-main);
  color: white;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 50px;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(16,185,129,0.4); }
.btn-glow {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary:hover .btn-glow { left: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600; font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover { color: var(--text-primary); border-color: rgba(16,185,129,0.5); background: rgba(16,185,129,0.08); }
.btn-full { width: 100%; justify-content: center; border-radius: 12px; }
.btn-icon { transition: transform 0.3s; }
.btn-primary:hover .btn-icon { transform: translateX(4px) rotate(-30deg); }

/* ---- GLASS CARD ---- */
.glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

/* ---- SECTION HELPERS ---- */
.section-badge {
  display: inline-flex; align-items: center;
  padding: 0.4rem 1rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50px;
  color: var(--accent-purple);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header .section-subtitle { margin: 0 auto; }
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--gradient-hero);
  padding: 120px 2rem 60px;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(16,185,129,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(14,165,233,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(20,184,166,0.08) 0%, transparent 60%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 400px; height: 400px;
  background: rgba(16,185,129,0.15);
  top: -10%; left: -5%;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px; height: 300px;
  background: rgba(14,165,233,0.12);
  top: 40%; right: -5%;
  animation-delay: -3s;
}
.orb-3 {
  width: 250px; height: 250px;
  background: rgba(20,184,166,0.1);
  bottom: -5%; left: 40%;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50px;
  color: var(--accent-purple);
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.title-line { display: block; }
.hero-desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-desc strong { color: var(--text-primary); }
.hero-actions {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 2.5rem;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-num + span {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: fadeIn 1s 1s ease both;
}
.scroll-line {
  width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, var(--accent-purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- STATS TICKER ---- */
.stats-ticker {
  background: rgba(16,185,129,0.08);
  border-top: 1px solid rgba(16,185,129,0.15);
  border-bottom: 1px solid rgba(16,185,129,0.15);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}
.stats-ticker::before, .stats-ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2;
}
.stats-ticker::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.stats-ticker::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.ticker-track {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem; font-weight: 500;
}
.ticker-item i { color: var(--accent-purple); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- ABOUT ---- */
.about {
  padding: 3rem 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
}
.about-card-main {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  width: 65%;
}
.about-icon-wrap {
  width: 50px; height: 50px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
  margin-bottom: 1rem;
}
.about-card-main h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-card-main p { color: var(--text-secondary); font-size: 0.875rem; }
.about-card-float {
  position: absolute;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  animation: cardFloat 4s ease-in-out infinite;
}
.about-card-float-1 { top: 10%; right: 0; animation-delay: 0s; }
.about-card-float-2 { bottom: 10%; right: 5%; animation-delay: -2s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-experience-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 900;
  color: white; line-height: 1;
}
.exp-label {
  display: block;
  font-size: 0.75rem; color: rgba(255,255,255,0.8);
  margin-top: 0.3rem; line-height: 1.3;
}

.about-content { padding-right: 1rem; }
.about-desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-desc em { color: var(--text-primary); font-style: normal; font-weight: 600; }
.about-features { margin: 2rem 0; display: flex; flex-direction: column; gap: 0.85rem; }
.about-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.feature-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--accent-purple);
  margin-top: 0.1rem;
}
.about-feature > span { color: var(--text-secondary); font-size: 0.95rem; }

/* ---- SERVICES ---- */
.services {
  padding: 3rem 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(16,185,129,0.05) 0%, transparent 70%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  cursor: default;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-service);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(16,185,129,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(16,185,129,0.15);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  position: relative;
}
.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent-purple);
  margin-bottom: 1.25rem;
  transition: var(--transition);
  position: relative;
}
.service-card:hover .service-icon-wrap {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 20px rgba(16,185,129,0.4);
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}
.service-desc {
  color: var(--text-secondary);
  font-size: 0.9rem; line-height: 1.7;
  flex: 1;
  position: relative;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin: 1.25rem 0 1rem;
  position: relative;
}
.service-tags span {
  padding: 0.2rem 0.6rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 4px;
  font-size: 0.75rem; color: var(--text-muted);
}
.service-link {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--accent-purple);
  font-size: 0.875rem; font-weight: 600;
  transition: var(--transition);
  position: relative;
  width: fit-content;
}
.service-link i { transition: transform 0.3s; }
.service-link:hover { gap: 0.75rem; }
.service-link:hover i { transform: translateX(4px); }

/* ---- NUMBERS SECTION ---- */
.numbers-section {
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.numbers-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(14,165,233,0.08) 50%, rgba(20,184,166,0.06) 100%);
  border-top: 1px solid rgba(16,185,129,0.15);
  border-bottom: 1px solid rgba(16,185,129,0.15);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
  position: relative;
}
.number-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
}
.number-value {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.number-label {
  color: var(--text-secondary);
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- TEAM ---- */
.team { padding: 3rem 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 25px 50px rgba(16,185,129,0.2);
}
.team-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo { transform: scale(1.05); }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,18,0.9) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-photo-overlay { opacity: 1; }
.team-socials {
  display: flex; gap: 0.6rem;
  transform: translateY(10px);
  transition: transform 0.3s 0.1s;
}
.team-card:hover .team-socials { transform: translateY(0); }
.team-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: white;
  transition: var(--transition);
}
.team-socials a:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  transform: translateY(-3px);
}
.team-info {
  padding: 1.25rem 1.25rem 1.5rem;
}
.team-name {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.825rem;
  color: var(--accent-purple);
  font-weight: 500;
}

/* ---- WHY US ---- */
.why-us {
  padding: 3rem 0;
  background: radial-gradient(ellipse 80% 50% at 80% 50%, rgba(14,165,233,0.06) 0%, transparent 70%);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-us-points { display: flex; flex-direction: column; gap: 1.75rem; margin: 2rem 0 0; }
.why-point {
  display: flex; align-items: flex-start; gap: 1rem;
}
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent-purple);
  margin-top: 0.2rem;
  transition: var(--transition);
}
.why-point:hover .why-icon {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
}
.why-point h4 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.3rem;
}
.why-point p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }

/* ---- MARKETING RING ---- */
.why-us-visual { display: flex; align-items: center; justify-content: center; }
.marketing-ring { position: relative; width: 360px; height: 360px; }
.ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ring-outer { animation: ringRotate 20s linear infinite; }
.ring-inner {
  inset: 60px;
  animation: ringRotate 14s linear infinite reverse;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ring-dot {
  position: absolute;
  width: 44px; height: 44px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent-purple);
}
.ring-dot-1 { top: -22px; left: calc(50% - 22px); }
.ring-dot-2 { right: -22px; top: calc(50% - 22px); }
.ring-dot-3 { bottom: -22px; left: calc(50% - 22px); }
.ring-dot-4 { left: -22px; top: calc(50% - 22px); }
.ring-dot-5 { top: -22px; left: calc(50% - 22px); }
.ring-dot-6 { bottom: -22px; left: calc(50% - 22px); }
/* Counter-rotate dots so icons stay upright */
.ring-outer .ring-dot { animation: ringRotate 20s linear infinite reverse; }
.ring-inner .ring-dot { animation: ringRotate 14s linear infinite; }
.ring-center {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.ring-center span {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ring-center small {
  color: var(--text-muted); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ---- CONTACT ---- */
.contact { padding: 3rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.75rem;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--accent-purple);
}
.contact-info-item h4 {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.contact-info-item a, .contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem; line-height: 1.55;
}
.contact-info-item a:hover { color: var(--accent-purple); }
.contact-social {
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.contact-social h4 {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.social-links { display: flex; gap: 0.6rem; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-secondary);
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent-purple); border-color: var(--accent-purple); color: white; transform: translateY(-3px); }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.825rem; font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-purple);
  background: rgba(16,185,129,0.05);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select option {
  background: #081A14;
  color: var(--text-primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  flex-direction: column; align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px;
  color: #10B981;
  gap: 0.5rem;
}
.form-success i { font-size: 2rem; }
.form-success p { font-size: 0.9rem; margin: 0; }
.form-success.visible { display: flex; }

.form-error {
  display: none;
  flex-direction: column; align-items: center;
  text-align: center;
  padding: 1.25rem;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  color: #F87171;
  gap: 0.5rem;
}
.form-error i { font-size: 1.75rem; }
.form-error p { font-size: 0.9rem; margin: 0; line-height: 1.5; }
.form-error.visible { display: flex; }

/* ---- FOOTER ---- */
.footer { background: rgba(0,0,0,0.4); border-top: 1px solid var(--border); }
.footer-top { padding: 2.5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem; line-height: 1.65;
  margin: 1.25rem 0 1.5rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a, .footer-col ul li span {
  color: var(--text-muted); font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-purple); }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.footer-contact-list i {
  color: var(--accent-purple); font-size: 0.8rem;
  margin-top: 0.2rem; flex-shrink: 0;
}
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-bottom .container {
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  color: var(--text-muted); font-size: 0.85rem;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gradient-main);
  color: white;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
  z-index: 500;
  box-shadow: 0 5px 20px rgba(16,185,129,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(16,185,129,0.5); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { 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; }

/* ---- HERO VISUAL IMAGE STACK ---- */
.hero-visual {
  position: relative;
  height: 520px;
}
.hero-img-stack {
  position: absolute;
  inset: 0;
}
.hero-img-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-card--main {
  width: 72%; height: 70%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-color: rgba(16,185,129,0.3);
  box-shadow: 0 0 60px rgba(16,185,129,0.2), 0 25px 60px rgba(0,0,0,0.55);
  animation: heroImgFloat 7s ease-in-out infinite;
}
.hero-img-card--a {
  width: 44%; height: 46%;
  top: 4%; right: 0;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  animation: heroImgFloatA 7s ease-in-out infinite;
  animation-delay: -2.5s;
}
.hero-img-card--b {
  width: 40%; height: 40%;
  bottom: 4%; left: 0;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  animation: heroImgFloatB 7s ease-in-out infinite;
  animation-delay: -5s;
}
.hero-img-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 55%);
  pointer-events: none;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}
@keyframes heroImgFloatA {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-10px); }
}
@keyframes heroImgFloatB {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-8px); }
}
.hero-visual-stat {
  position: absolute;
  bottom: 20px; right: -12px;
  z-index: 10;
  padding: 0.9rem 1.25rem;
  border-radius: 16px;
  display: flex; align-items: center; gap: 0.875rem;
  background: rgba(6,12,18,0.92) !important;
  border: 1px solid rgba(16,185,129,0.3) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: cardFloat 5s ease-in-out infinite;
  white-space: nowrap;
}
.hero-vs-icon {
  width: 38px; height: 38px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem; flex-shrink: 0;
}
.hero-vs-num {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.hero-vs-label {
  font-size: 0.7rem; color: var(--text-muted);
  margin-top: 0.15rem; line-height: 1.3;
}
.hero-visual-dot {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-visual-dot-1 {
  width: 240px; height: 240px;
  background: rgba(16,185,129,0.1);
  filter: blur(55px);
  top: -50px; right: -30px; z-index: 0;
}
.hero-visual-dot-2 {
  width: 160px; height: 160px;
  background: rgba(14,165,233,0.09);
  filter: blur(40px);
  bottom: 20px; left: -20px; z-index: 0;
}

/* ---- HERO BENTO GRID ---- */
.hero-bento {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.875rem;
  height: 520px;
}
.hero-bento-large {
  grid-row: span 2;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16,185,129,0.3);
  box-shadow: 0 0 55px rgba(16,185,129,0.18), 0 25px 55px rgba(0,0,0,0.5);
  position: relative;
}
.hero-bento-large img,
.hero-bento-small img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.hero-bento-large:hover img { transform: scale(1.04); }
.hero-bento-small {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, border-color 0.3s;
}
.hero-bento-small:hover {
  border-color: rgba(16,185,129,0.3);
  transform: scale(1.025);
}
.hero-bento-small:hover img { transform: scale(1.07); }

/* ---- ABOUT IMAGE ---- */
.about-img-main {
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(16,185,129,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.about-img-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6,12,18,0.88) 0%, rgba(6,12,18,0.25) 45%, transparent 70%),
    linear-gradient(135deg, rgba(6,12,18,0.4) 0%, transparent 50%);
}
.about-img-quote {
  position: absolute;
  bottom: 2rem; left: 1.75rem; right: 1.75rem;
  z-index: 2;
}
.about-img-quote::before {
  content: '';
  display: block;
  width: 30px; height: 2.5px;
  background: var(--accent-purple);
  border-radius: 2px;
  margin-bottom: 0.65rem;
}
.about-img-quote-text {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  display: block;
}

/* ---- GALLERY STRIP ---- */
.gallery-strip {
  padding: 2.5rem 0 2rem;
  overflow: hidden;
  position: relative;
}
.gallery-strip-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.gallery-subtitle {
  margin: 0.75rem auto 0;
  max-width: 500px;
}
.gallery-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.gallery-marquee::before,
.gallery-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 140px; z-index: 2;
  pointer-events: none;
}
.gallery-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}
.gallery-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}
.gallery-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: galleryScroll 50s linear infinite;
  padding: 0.75rem 0;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.gallery-item {
  position: relative;
  width: 340px; height: 230px;
  border-radius: var(--radius-lg);
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.3s, box-shadow 0.4s;
}
.gallery-item:hover {
  border-color: rgba(16,185,129,0.45);
  box-shadow: 0 20px 50px rgba(16,185,129,0.18);
  transform: scale(1.04) translateY(-5px);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,18,0.9) 0%, rgba(6,12,18,0.25) 50%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: white;
  font-size: 0.875rem; font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 0.5rem;
}
.gallery-item-overlay span::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent-purple);
  border-radius: 50%; flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .why-us-inner { gap: 3rem; }
  .marketing-ring { width: 280px; height: 280px; }
  .hero-content { gap: 2.5rem; }
  .hero-visual { height: 420px; }
  .hero-bento { height: 420px; gap: 0.625rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 100%; aspect-ratio: 4/3; margin-bottom: 2rem; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-visual { order: -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .gallery-item { width: 280px; height: 190px; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-card-float { display: none; }
}
