/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07070f;
  --bg-2: #0d0d1a;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --text: #f0f0fa;
  --text-muted: rgba(240,240,250,0.55);
  --text-faint: rgba(240,240,250,0.3);
  --accent-1: #a78bfa;
  --accent-2: #818cf8;
  --accent-3: #38bdf8;
  --grad: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #38bdf8 100%);
  --grad-btn: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

/* ===========================
   ANIMATED BG ORBS
   =========================== */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #8b5cf6, transparent);
  top: -200px; left: -200px;
  animation-duration: 22s;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1, transparent);
  top: 30%; right: -200px;
  animation-duration: 18s;
  animation-delay: -6s;
}
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #38bdf8, transparent);
  bottom: -100px; left: 30%;
  animation-duration: 25s;
  animation-delay: -12s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

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

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--grad-btn);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #fff;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link.nav-cta {
  background: var(--grad-btn);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-link.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.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; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,92,246,0.5); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-hover); background: var(--surface-hover); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   GRADIENT TEXT
   =========================== */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   SECTION COMMONS
   =========================== */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.25);
  color: var(--accent-1);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
  animation: fadeSlideDown 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
  animation: fadeSlideUp 0.7s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat-plus { font-size: 22px; font-weight: 800; color: var(--accent-1); margin-left: 2px; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideLeft 0.8s ease 0.2s both;
}
.main-card {
  width: 100%;
  max-width: 400px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca41; }
.card-mockup { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mock-nav {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  width: 100%;
}
.mock-hero-block {
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(99,102,241,0.1));
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}
.mock-line.long { width: 80%; }
.mock-line.medium { width: 60%; }
.mock-line.short { width: 40%; }
.mock-btn-row { display: flex; gap: 8px; margin-top: 6px; }
.mock-btn-fill {
  height: 22px;
  width: 70px;
  border-radius: 50px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}
.mock-btn-outline {
  height: 22px;
  width: 60px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}
.mock-cards { display: flex; gap: 8px; }
.mock-card-item {
  flex: 1;
  height: 50px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.floating-badge svg { width: 20px; height: 20px; color: var(--accent-1); flex-shrink: 0; }
.floating-badge strong { display: block; font-size: 14px; font-weight: 700; line-height: 1; color: var(--text); }
.floating-badge span { font-size: 11px; color: var(--text-muted); }
.badge-top { top: -20px; right: -20px; animation: floatBadge1 5s ease-in-out infinite; }
.badge-bottom { bottom: 30px; left: -30px; animation: floatBadge2 5.5s ease-in-out infinite 1s; }
@keyframes floatBadge1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatBadge2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ===========================
   MARQUEE
   =========================== */
.marquee-section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}
.marquee-content span {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: -0.5px;
  transition: color var(--transition);
}
.marquee-content span:hover { color: var(--text-muted); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   ABOUT
   =========================== */
.about {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.about-img-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.about-avatar {
  position: relative;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--grad) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: rotateSpin 6s linear infinite;
}
@keyframes rotateSpin { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }
.avatar-inner {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.about-tools { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tool-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.tool-chip:hover { border-color: var(--accent-1); color: var(--accent-1); }
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}
.about-desc strong { color: var(--text); }
.about-skills { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.skill-bar { position: relative; }
.skill-bar::before {
  content: attr(data-skill);
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.skill-bar::after {
  content: '';
  display: block;
  height: 6px;
  border-radius: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.skill-fill {
  height: 6px;
  border-radius: 50px;
  background: var(--grad);
  margin-top: -7px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}

/* ===========================
   SERVICES
   =========================== */
.services {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.03), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
  z-index: 0;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(167,139,250,0.3); box-shadow: 0 20px 60px rgba(139,92,246,0.15); }
.service-card > * { position: relative; z-index: 1; }
.service-card.featured {
  border-color: rgba(167,139,250,0.35);
  background: rgba(139,92,246,0.08);
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-1);
  transition: all var(--transition);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon { background: rgba(167,139,250,0.15); border-color: rgba(167,139,250,0.3); }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.service-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-1);
  margin-top: auto;
}

/* ===========================
   WORK / PORTFOLIO
   =========================== */
.work {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.work-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); border-color: rgba(167,139,250,0.3); }
.work-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.work-mockup { width: 80%; height: 85%; position: relative; }

/* SaaS mockup */
.saas-mock { display: flex; flex-direction: column; background: rgba(0,0,0,0.3); border-radius: 8px; overflow: hidden; }
.saas-topbar { height: 20px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.saas-body { display: flex; flex: 1; }
.saas-sidebar { width: 30%; background: rgba(255,255,255,0.04); }
.saas-content { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.saas-row { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.15); }
.saas-row.w80 { width: 80%; }
.saas-row.w60 { width: 60%; }
.saas-cards-row { display: flex; gap: 6px; margin-top: 6px; }
.saas-mini-card { flex: 1; height: 40px; border-radius: 6px; background: rgba(255,255,255,0.08); }

/* Ecomm mockup */
.ecomm-mock { display: flex; flex-direction: column; background: rgba(0,0,0,0.3); border-radius: 8px; height: 100%; overflow: hidden; padding: 10px; gap: 8px; }
.ecomm-hero-strip { height: 40px; border-radius: 6px; background: rgba(255,255,255,0.15); }
.ecomm-product-row { display: flex; gap: 6px; flex: 1; }
.ecomm-product { flex: 1; border-radius: 6px; background: rgba(255,255,255,0.1); }
.ecomm-footer-bar { height: 12px; border-radius: 4px; background: rgba(255,255,255,0.07); }

/* Mobile mockup */
.mobile-mock { display: flex; justify-content: center; }
.mobile-screen {
  width: 70px; height: 130px;
  background: rgba(0,0,0,0.5);
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.15);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-status { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.15); width: 50%; margin: 0 auto; }
.mobile-card-big { height: 35px; border-radius: 8px; background: rgba(255,255,255,0.15); }
.mobile-list { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-list-item { height: 10px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.mobile-bottom-nav { height: 12px; border-radius: 4px; background: rgba(255,255,255,0.06); }

.work-info { padding: 24px; }
.work-tags { display: flex; gap: 8px; margin-bottom: 12px; }
.work-tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-1);
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  padding: 3px 10px;
  border-radius: 50px;
}
.work-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.work-info p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-1);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--transition);
}
.work-link svg { width: 16px; height: 16px; }
.work-link:hover { gap: 10px; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(99,102,241,0.04), transparent);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(167,139,250,0.25); }
.stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; }
.testimonial-card > p { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ===========================
   CONTACT
   =========================== */
.contact {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.contact-card {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.contact-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.contact-form { text-align: left; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(167,139,250,0.5);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}
.form-group select option { background: #1a1a2e; color: var(--text); }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.form-success.show { display: flex; }
.form-success svg {
  width: 56px; height: 56px;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border-radius: 50%;
  padding: 12px;
}
.form-success h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; }
.form-success p { color: var(--text-muted); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll animation utility */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
  .hero-subtitle { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: flex; justify-content: center; }
  .about-img-card { max-width: 360px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(7,7,15,0.97); backdrop-filter: blur(20px); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 24px; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 20px; }
}
