/* ═══════════════════════════════════════════════
   VITCHCRAFT STUDIO — Premium Agency CSS (FIXED)
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg: #0a0a12;
  --bg-2: #131321;
  --bg-3: #1a1a28;
  --text: #f5f5f7;
  --text-muted: #a8aac1;
  --text-dim: #78788a;
  --primary: #00ff88;
  --primary-light: #4dffab;
  --accent: #818cf8;
  --border: #312e48;
  --border-hover: #4a4466;
  --gradient: linear-gradient(90deg, #00ff88 0%, #00d966 100%);
  --gradient-text: linear-gradient(90deg, #818cf8 0%, #06b6d4 50%, #00ff88 100%);
  --green: #10b981;
  --yellow: #fbbf24;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

::selection { background: rgba(0, 255, 136, 0.2); color: #fff; }

/* ── Container & Sections ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 80px 0;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
  white-space: nowrap;
}

.about-content .section-tag {
  display: inline-flex;
}

.about-content .section-title {
  text-align: left;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 600px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleInRotate {
  from { opacity: 0; transform: scale(0.7) rotate(-5deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes morphGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes orb-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(30px, -30px); }
  50% { transform: translate(0, 50px); }
  75% { transform: translate(-30px, 30px); }
  100% { transform: translate(0, 0); }
}

@keyframes glitch-in {
  0% {
    opacity: 0;
    text-shadow: -2px 0 #00ffff, 2px 0 #ff00ff;
    transform: translate(-4px, 0);
  }
  20% {
    opacity: 0.5;
    text-shadow: 2px 2px #00ffff, -2px -2px #ff00ff;
    transform: translate(2px, -2px);
  }
  40% {
    opacity: 0.7;
    text-shadow: -3px 1px #00ffff, 3px -1px #ff00ff;
    transform: translate(-3px, 3px);
  }
  60% {
    opacity: 0.9;
    text-shadow: 2px -2px #00ffff, -2px 2px #ff00ff;
    transform: translate(1px, -1px);
  }
  80% {
    opacity: 0.95;
    text-shadow: -1px 1px #00ffff, 1px -1px #ff00ff;
    transform: translate(-1px, 1px);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 #00ffff, 0 0 #ff00ff;
    transform: translate(0, 0);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes spin-loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: visible;
  min-height: 44px;
  user-select: none;
  -webkit-user-select: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.btn:hover::before { opacity: 1; }

.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--gradient);
  color: #030805;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.5);
}

.btn-primary.loading {
  position: relative;
  color: transparent;
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin-loader 0.8s linear infinite;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1.5px solid rgba(99, 102, 241, 0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(99, 102, 241, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius);
  min-height: 48px;
}

.btn-full { width: 100%; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  outline-offset: 2px;
  flex-shrink: 0;
}

.logo:hover { opacity: 0.85; }

.logo:focus { outline: 2px solid var(--primary); }

.logo-icon {
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  animation: spin 8s linear infinite;
}

.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline-offset: 2px;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link:focus {
  outline: 2px solid var(--primary);
  color: var(--primary-light);
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  outline-offset: 2px;
  flex-shrink: 0;
}

.hamburger:focus {
  outline: 2px solid var(--primary);
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(8, 8, 15, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline-offset: 2px;
}

.mobile-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-link:focus {
  outline: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-cta-btn { margin-top: 12px; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: morphGradient 15s ease-in-out infinite;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
  animation: slideInDown 0.8s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  word-spacing: 0.1em;
}

.title-line {
  display: block;
  animation: fadeInUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  word-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: floatIn 0.8s ease-out 0.6s both;
  justify-content: center;
}

.hero-actions .btn {
  animation: scaleInRotate 0.7s ease-out forwards;
  opacity: 0;
}

.hero-actions .btn:nth-child(1) {
  animation-delay: 0.65s;
}

.hero-actions .btn:nth-child(2) {
  animation-delay: 0.8s;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}

.stat:nth-child(odd) {
  animation-delay: 0s;
}

.stat:nth-child(even) {
  animation-delay: 1.5s;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
}

.stat-label { font-size: 0.8rem; color: var(--text-dim); font-weight: 500; }

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent 70%);
  top: -100px;
  right: -50px;
  animation: orb-shift 8s ease-in-out infinite;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
  bottom: -50px;
  left: 100px;
  animation: orb-shift 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
  top: 50%;
  right: 10%;
  animation: orb-shift 12s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-section {
  padding: 20px 0;
  background: linear-gradient(90deg, var(--bg), var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
}

.marquee-track { overflow: hidden; width: 100%; }

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 0;
}

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

.marquee-dot {
  color: var(--primary);
  font-size: 0.6rem;
}

/* ════════════════════════════════════════
   TRUSTED BY
════════════════════════════════════════ */
.trusted-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  width: 100%;
}

.trusted-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 36px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  transition: var(--transition);
  cursor: default;
  opacity: 0.5;
}

.logo-item:hover { opacity: 1; color: var(--text); }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-section {
  background: var(--bg);
  padding: 80px 0;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-height: fit-content;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.15);
}

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

.card-glow {
  background: radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.04), transparent 60%), var(--bg-2);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(184, 160, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color, var(--primary));
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-icon-wrap {
  background: rgba(184, 160, 255, 0.18);
  box-shadow: 0 0 20px rgba(184, 160, 255, 0.2);
}

.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

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

.service-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  color: #fff;
  gap: 8px;
}

/* ════════════════════════════════════════
   WORK / PORTFOLIO
════════════════════════════════════════ */
.work-section {
  background: var(--bg-2);
  padding: 80px 0;
  width: 100%;
}

.work-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  min-height: 40px;
}

.filter-btn:hover {
  border-color: rgba(0, 255, 136, 0.4);
  color: var(--text);
  background: rgba(0, 255, 136, 0.05);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0a0a12;
  font-weight: 600;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-3);
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-height: auto;
}

.work-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.work-card.hidden { display: none; }

.work-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.work-card:hover .work-img { transform: scale(1.03); }

.work-preview {
  position: absolute;
  inset: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.wp-bar {
  height: 24px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
}

.wp-bar::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 100, 100, 0.6);
  border-radius: 50%;
}

.wp-bar::after {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 200, 50, 0.6);
  border-radius: 50%;
  box-shadow: 11px 0 0 rgba(80, 200, 80, 0.6);
}

.wp-content { padding: 14px; }

.wp-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  margin-bottom: 8px;
}

.wp-line.long { width: 80%; }
.wp-line.medium { width: 60%; }
.wp-line.short { width: 40%; }

.wp-blocks { display: flex; gap: 8px; margin-top: 14px; }

.wp-block {
  flex: 1;
  height: 70px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.wp-products { display: flex; gap: 8px; margin-top: 14px; }

.wp-product {
  flex: 1;
  height: 90px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.wp-product::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.wp-phone {
  width: 80px;
  height: 140px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  margin: 20px auto;
  overflow: hidden;
}

.wp-phone-screen { padding: 8px 6px; height: 100%; }

.wp-app-bar {
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}

.wp-chart {
  height: 40px;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05));
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.wp-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(16, 185, 129, 0.6);
}

.wp-app-cards { display: flex; flex-direction: column; gap: 4px; }

.wp-app-card {
  height: 20px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

.wp-brand-showcase { padding: 14px; text-align: center; }

.wp-logo-big {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(255, 100, 50, 0.8);
  line-height: 1;
  margin-bottom: 12px;
}

.wp-brand-colors { display: flex; gap: 6px; justify-content: center; margin-bottom: 10px; }

.wpc {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.wpc.c1 { background: rgba(234, 88, 12, 0.7); }
.wpc.c2 { background: rgba(255, 200, 100, 0.7); }
.wpc.c3 { background: rgba(30, 30, 30, 0.7); border: 1px solid rgba(255, 255, 255, 0.1); }

.wp-dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }

.wp-dash-item {
  height: 40px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 6px;
}

.wp-dash-item.big {
  grid-column: span 2;
  height: 50px;
}

.wp-hero-block {
  height: 80px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  margin-bottom: 12px;
}

.work-info { padding: 24px; }

.work-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.work-tags span {
  padding: 3px 10px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.work-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.work-cta-wrap { text-align: center; margin-top: 56px; }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-section {
  background: var(--bg);
  padding: 80px 0;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.1);
}

.about-img.placeholder {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-hover);
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.placeholder-icon { font-size: 64px; opacity: 0.5; }

.placeholder-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.abf-icon { font-size: 1.8rem; }

.abf-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.abf-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-exp-card {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
}

.aec-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.aec-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-top: 4px;
}

.about-content { display: flex; flex-direction: column; }

.about-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }

.value-item { display: flex; align-items: flex-start; gap: 16px; }

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
.process-section {
  background: var(--bg-2);
  padding: 80px 0;
  width: 100%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.step-connector {
  position: absolute;
  top: 44px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), rgba(99, 102, 241, 0.1));
  z-index: 0;
}

.step-connector:last-of-type { display: none; }

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
}

.step-icon { font-size: 2.2rem; margin-bottom: 16px; }

.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-section {
  background: var(--bg);
  padding: 80px 0;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0, 255, 136, 0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(168, 85, 247, 0.05));
  border-color: rgba(0, 255, 136, 0.2);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.t-stars {
  font-size: 0.9rem;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.t-quote {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.t-author { display: flex; align-items: center; gap: 14px; }

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }

.t-role { font-size: 0.8rem; color: var(--text-dim); margin-top: 2px; }

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing-section {
  background: var(--bg-2);
  padding: 80px 0;
  width: 100%;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-save {
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.toggle-switch.active {
  background: var(--primary);
  border-color: var(--primary);
}

.toggle-thumb {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.toggle-switch.active .toggle-thumb { left: calc(100% - 24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}

.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(160deg, rgba(184, 160, 255, 0.06), rgba(255, 215, 0, 0.03), var(--bg-3));
  border-color: rgba(184, 160, 255, 0.25);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(184, 160, 255, 0.08);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  transition: var(--transition);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.pf-check::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pf-x { opacity: 0.45; }

.pf-x::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

/* ════════════════════════════════════════
   TECH STACK
════════════════════════════════════════ */
.tech-section {
  background: var(--bg);
  padding: 80px 0;
  width: 100%;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tech-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  cursor: default;
}

.tech-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tech-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--bg-3);
  border: 1px solid var(--border);
}

.react-icon { color: #61dafb; }
.node-icon { color: #68a063; }
.ts-icon { color: #3178c6; font-size: 0.9rem; }
.py-icon { font-size: 1.3rem; }
.figma-icon { color: #a259ff; }
.aws-icon { color: #ff9900; }
.docker-icon { font-size: 1.3rem; }
.shopify-icon { color: #96bf48; }
.db-icon { font-size: 1.3rem; }

.tech-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-section {
  background: var(--bg-2);
  padding: 80px 0;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  max-width: 20ch;
  line-height: 1.08;
  text-wrap: balance;
  text-align: left;
}

.contact-desc {
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }

.contact-detail { display: flex; align-items: flex-start; gap: 16px; }

.cd-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cd-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.cd-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

a.cd-value:hover { color: var(--primary-light); }

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 42px;
  height: 42px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  outline-offset: 2px;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

.social-link:focus {
  outline: 2px solid var(--primary);
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.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; position: relative; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.12), 0 0 0 1px rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.01);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: var(--green);
}

.form-group select { cursor: pointer; appearance: none; padding-right: 32px; }

.form-group select option {
  background: var(--bg-2);
  color: var(--text);
  padding: 12px 16px;
}

.form-group select option:hover {
  background: var(--primary);
  color: #0a0a12;
}

.form-group select option:checked {
  background: linear-gradient(var(--primary), var(--primary));
  color: #0a0a12;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.checkbox-item:hover {
  border-color: var(--primary);
  background: rgba(0, 255, 136, 0.05);
}

.checkbox-item:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.12);
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  flex-shrink: 0;
  padding: 0;
  border: none;
  cursor: pointer;
}

.checkbox-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 500;
  animation: slideInUp 0.4s ease;
}

.form-success.show { display: flex; }

.success-icon {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 280px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-links-group a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  outline-offset: 2px;
}

.footer-links-group a:hover { color: var(--text); }

.footer-links-group a:focus {
  outline: 2px solid var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.825rem;
  color: var(--text-dim);
  margin: 0;
}

.footer-credits { color: var(--text-dim); }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: #0a0a12;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
  outline-offset: 2px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover { transform: translateY(-4px); }

.back-to-top:focus { outline: 2px solid #fff; }

/* ════════════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .work-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; max-width: 600px; margin: 0 auto; }
  .step-connector { display: none; }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); line-height: 1.2; margin-bottom: 20px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 28px; max-width: 500px; }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 400px;
  }

  .hero-stats { gap: 16px; flex-direction: column; align-items: center; }
  .stat { width: 100%; text-align: center; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.3rem, 5vw, 2.2rem); text-align: center; }
  .section-tag { font-size: 0.58rem; padding: 2px 8px; margin-bottom: 12px; }

  .contact-form-wrap { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .service-checkboxes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  
  .hero { padding: 80px 16px 50px; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .hero-subtitle { font-size: 0.9rem; }

  .section-title { font-size: clamp(1.3rem, 5vw, 2rem); text-align: center; }
  .section-tag { font-size: 0.6rem; padding: 3px 10px; }
  .section-subtitle { font-size: 0.85rem; text-align: center; }
  .btn { min-height: 44px; padding: 12px 20px; font-size: 0.9rem; }
  .btn-lg { min-height: 48px; padding: 14px 24px; }

  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .service-checkboxes { grid-template-columns: 1fr; }

  .process-step { padding: 0; }
  .testimonial-card, .service-card { padding: 24px; }
  .pricing-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 14px; }
  
  .hero { padding: 60px 14px 40px; }
  .hero-title { font-size: 1.4rem; line-height: 1.2; }
  .hero-actions { gap: 10px; max-width: 100%; margin-bottom: 40px; }
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
  .hero-subtitle { font-size: 0.85rem; line-height: 1.6; }

  .section-title { font-size: 1.3rem; }
  .section-tag { font-size: 0.55rem; padding: 2px 6px; margin-bottom: 10px; }
  .section-subtitle { font-size: 0.8rem; line-height: 1.6; }

  .btn { padding: 10px 16px; min-height: 40px; font-size: 0.85rem; }
  .btn-lg { padding: 12px 20px; min-height: 44px; }

  .tech-grid { grid-template-columns: 1fr; }
  .service-checkboxes { grid-template-columns: 1fr; }
  .footer-top { gap: 20px; }

  .nav-link { font-size: 0.8rem; padding: 6px 10px; }
  .contact-form-wrap { padding: 16px; }
  .testimonial-card, .service-card, .pricing-card { padding: 16px; }
  
  .about-exp-card { position: static; margin-top: -16px; display: inline-block; right: auto; }
  .back-to-top { width: 40px; height: 40px; font-size: 1rem; bottom: 16px; right: 16px; }
}

/* Additional UI/UX refinement layer */
:root {
  --bg-soft: #101725;
  --surface: rgba(17, 24, 39, 0.72);
  --surface-strong: rgba(20, 28, 46, 0.9);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.22);
  --shadow-glow: 0 18px 50px rgba(0, 255, 136, 0.12);
}

html {
  scroll-padding-top: 96px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(0, 255, 136, 0.08), transparent 30%),
    linear-gradient(180deg, #07111c 0%, #0a0a12 26%, #09111c 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
  opacity: 0.18;
  z-index: 0;
}

.site-tech-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.tech-grid-layer,
.tech-beam,
.tech-node,
.tech-scanline {
  position: absolute;
}

.tech-grid-layer {
  inset: -15%;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  transform: perspective(1200px) rotateX(76deg) scale(1.2);
  transform-origin: center top;
  opacity: 0.35;
  animation: tech-grid-drift 22s linear infinite;
}

.tech-beam {
  width: 42vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.55), rgba(96, 165, 250, 0.6), transparent);
  filter: blur(0.4px);
  opacity: 0.4;
}

.tech-beam-1 {
  top: 24%;
  left: -15%;
  transform: rotate(-12deg);
  animation: tech-beam-shift-1 16s ease-in-out infinite;
}

.tech-beam-2 {
  top: 67%;
  right: -18%;
  transform: rotate(8deg);
  animation: tech-beam-shift-2 18s ease-in-out infinite;
}

.tech-node {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(0, 255, 136, 0.75) 45%, rgba(0, 255, 136, 0) 75%);
  box-shadow:
    0 0 0 8px rgba(0, 255, 136, 0.05),
    0 0 24px rgba(0, 255, 136, 0.35);
  opacity: 0.75;
}

.tech-node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.24), transparent);
  transform-origin: left center;
}

.tech-node-1 {
  top: 18%;
  left: 10%;
  animation: tech-node-float 10s ease-in-out infinite;
}

.tech-node-1::after {
  transform: rotate(18deg);
}

.tech-node-2 {
  top: 32%;
  right: 12%;
  animation: tech-node-float 13s ease-in-out infinite reverse;
}

.tech-node-2::after {
  width: 220px;
  transform: rotate(-26deg);
}

.tech-node-3 {
  bottom: 24%;
  left: 18%;
  animation: tech-node-float 12s ease-in-out infinite 1.2s;
}

.tech-node-3::after {
  width: 200px;
  transform: rotate(-8deg);
}

.tech-node-4 {
  bottom: 16%;
  right: 16%;
  animation: tech-node-float 14s ease-in-out infinite 0.7s reverse;
}

.tech-node-4::after {
  width: 190px;
  transform: rotate(32deg);
}

.tech-scanline {
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.06), transparent);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: tech-scan 14s linear infinite;
}

@keyframes tech-grid-drift {
  0% { transform: perspective(1200px) rotateX(76deg) translateY(0) scale(1.2); }
  50% { transform: perspective(1200px) rotateX(76deg) translateY(24px) scale(1.22); }
  100% { transform: perspective(1200px) rotateX(76deg) translateY(0) scale(1.2); }
}

@keyframes tech-beam-shift-1 {
  0%, 100% { transform: translateX(0) rotate(-12deg); opacity: 0.18; }
  50% { transform: translateX(28vw) rotate(-12deg); opacity: 0.52; }
}

@keyframes tech-beam-shift-2 {
  0%, 100% { transform: translateX(0) rotate(8deg); opacity: 0.14; }
  50% { transform: translateX(-24vw) rotate(8deg); opacity: 0.46; }
}

@keyframes tech-node-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(14px, -18px, 0) scale(1.08); }
}

@keyframes tech-scan {
  0% { top: -14%; }
  100% { top: 108%; }
}

section,
.footer {
  position: relative;
  z-index: 1;
}

.section {
  padding: 108px 0;
}

.section-header {
  margin-bottom: 72px;
}

.section-tag {
  align-self: flex-start;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(129, 140, 248, 0.24);
  color: #c7d2fe;
  backdrop-filter: blur(14px);
}

.process-section .section-tag,
.services-section .section-tag,
.work-section .section-tag,
.testimonials-section .section-tag,
.pricing-section .section-tag,
.tech-section .section-tag {
  align-self: center;
}

.testimonials-section .section-tag {
  margin-inline: auto;
}

.pricing-section .section-tag {
  margin-inline: auto;
}

.tech-section .section-tag {
  margin-inline: auto;
}

.section-title {
  max-width: 14ch;
}

.section-subtitle {
  font-size: 1.02rem;
  max-width: 720px;
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  box-shadow: 0 12px 34px rgba(0, 255, 136, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 16px 42px rgba(0, 255, 136, 0.3);
}

.btn-ghost,
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.navbar {
  padding-top: 20px;
}

.nav-inner {
  background: rgba(7, 12, 22, 0.66);
  border: 1px solid rgba(129, 140, 248, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 12px 18px;
}

.navbar.scrolled {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  padding-top: 12px;
  padding-bottom: 0;
}

.navbar.scrolled .nav-inner {
  background: rgba(7, 12, 22, 0.88);
}

.nav-link {
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  min-height: 108vh;
  padding-top: 172px;
  padding-bottom: 110px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(4, 8, 14, 0.92));
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.62);
  border: 1px solid rgba(129, 140, 248, 0.18);
  color: #dbe4ff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #7cf3be);
  box-shadow: 0 0 0 6px rgba(0, 255, 136, 0.08);
}

.hero-title {
  max-width: 12ch;
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.08rem;
}

.hero-actions {
  margin-bottom: 28px;
}

.hero-proof-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 38px;
}

.proof-item {
  text-align: left;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 28, 46, 0.78), rgba(11, 16, 29, 0.9));
  border: 1px solid rgba(129, 140, 248, 0.14);
  box-shadow: var(--shadow-soft);
}

.proof-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.45;
}

.proof-label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats {
  width: 100%;
  gap: 18px;
  margin-top: 0;
  padding: 18px;
  border-radius: 28px;
  background: rgba(8, 12, 23, 0.72);
  border: 1px solid rgba(129, 140, 248, 0.14);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.stat {
  min-width: 160px;
  flex: 1;
  padding: 16px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-divider {
  display: none;
}

.scroll-indicator {
  bottom: 28px;
}

.marquee-section,
.trusted-section,
.services-section,
.work-section,
.about-section,
.process-section,
.testimonials-section,
.pricing-section,
.tech-section,
.contact-section,
.footer {
  background: transparent;
}

.trusted-section {
  padding-top: 52px;
  padding-bottom: 32px;
}

.trusted-logos {
  gap: 18px;
}

.logo-item {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(129, 140, 248, 0.1);
}

.service-card,
.work-card,
.testimonial-card,
.pricing-card,
.tech-item,
.contact-form-wrap {
  background: linear-gradient(180deg, rgba(20, 28, 46, 0.84), rgba(9, 14, 25, 0.94));
  border-color: rgba(129, 140, 248, 0.12);
  box-shadow: var(--shadow-soft);
}

.service-card,
.work-card,
.testimonial-card,
.pricing-card {
  border-radius: 28px;
}

.service-card:hover,
.work-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.tech-item:hover {
  border-color: rgba(0, 255, 136, 0.22);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.service-card::after,
.work-card::after,
.pricing-card::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.18), transparent 45%, rgba(0, 255, 136, 0.12));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.service-icon-wrap,
.value-icon,
.cd-icon,
.tech-icon {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.service-desc,
.work-info p,
.pricing-desc,
.contact-desc,
.about-desc,
.t-quote {
  color: #b5bfd1;
}

.work-filter {
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.filter-btn.active {
  box-shadow: 0 8px 26px rgba(0, 255, 136, 0.2);
}

.work-img {
  height: 250px;
}

.work-preview {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-grid,
.contact-grid {
  gap: 72px;
}

.about-img-wrap {
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.about-img {
  filter: brightness(0.88) saturate(1.05);
}

.about-exp-card {
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 255, 136, 0.22);
}

.value-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(129, 140, 248, 0.1);
}

.value-item:last-child {
  border-bottom: none;
}

.process-steps {
  gap: 20px;
}

.process-step {
  padding: 28px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20, 28, 46, 0.76), rgba(9, 14, 25, 0.94));
  border: 1px solid rgba(129, 140, 248, 0.12);
  box-shadow: var(--shadow-soft);
}

.step-connector {
  opacity: 0.4;
}

.testimonial-card.featured,
.pricing-card.featured {
  border-color: rgba(0, 255, 136, 0.24);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(0, 255, 136, 0.08), var(--shadow-glow);
}

.pricing-toggle {
  padding: 12px 18px;
  width: fit-content;
  margin: 0 auto 56px;
  background: rgba(8, 12, 23, 0.65);
  border: 1px solid rgba(129, 140, 248, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.contact-form-wrap {
  border-radius: 32px;
}

.contact-detail {
  padding: 16px 0;
  border-bottom: 1px solid rgba(129, 140, 248, 0.12);
}

.contact-detail:last-child {
  border-bottom: none;
}

.form-group input,
.form-group select,
.form-group textarea,
.checkbox-item {
  border-radius: 16px;
}

.footer {
  padding-top: 96px;
}

.footer-top {
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(16, 23, 38, 0.78), rgba(8, 12, 22, 0.94));
  border: 1px solid rgba(129, 140, 248, 0.1);
  box-shadow: var(--shadow-soft);
}

.footer-bottom {
  margin-top: 22px;
  border-top-color: rgba(129, 140, 248, 0.12);
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 148px;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    border-radius: 26px;
  }
}

@media (max-width: 768px) {
  .tech-grid-layer {
    background-size: 64px 64px;
    opacity: 0.24;
  }

  .tech-node::after,
  .tech-beam {
    opacity: 0.22;
  }

  .section {
    padding: 84px 0;
  }

  .nav-inner {
    padding: 10px 14px;
  }

  .mobile-menu {
    margin: 12px 16px 0;
    border: 1px solid rgba(129, 140, 248, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
  }

  .hero {
    padding-top: 124px;
    padding-bottom: 76px;
  }

  .hero-title,
  .section-title {
    max-width: none;
  }

  .hero-stats {
    padding: 12px;
  }

  .stat {
    min-width: 0;
    width: 100%;
  }

  .proof-item {
    padding: 16px 18px;
  }

  .footer-top {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .tech-node-2,
  .tech-node-4,
  .tech-beam-2 {
    display: none;
  }

  .tech-scanline {
    opacity: 0.24;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: left;
  }

  .hero-proof-strip {
    gap: 12px;
  }

  .service-card,
  .work-card,
  .pricing-card,
  .testimonial-card {
    border-radius: 22px;
  }

  .contact-form-wrap,
  .footer-top {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body::before,
  .site-tech-bg,
  .scroll-indicator,
  .logo-icon {
    animation: none !important;
  }
}
