/* =========================================================
   SHTAYA LLC — Main Stylesheet
   ========================================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0a14;
  color: #e2e2f0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --blue: #3b82f6;
  --blue-light: #93c5fd;
  --cyan: #06b6d4;
  --bg: #0a0a14;
  --bg-card: #111127;
  --bg-card2: #16162e;
  --border: rgba(124, 58, 237, 0.15);
  --border-light: rgba(255, 255, 255, 0.06);
  --text: #e2e2f0;
  --text-muted: #8888aa;
  --text-faint: #555575;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 40px rgba(0,0,0,0.4);
  --glow: 0 0 60px rgba(124, 58, 237, 0.2);
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--sm { padding: 8px 18px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(124,58,237,0.4);
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section base ── */
.section { padding: 120px 0; }
.section__header { text-align: center; margin-bottom: 72px; }
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.logo-text { font-weight: 700; }
.logo-accent { color: var(--purple-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links li a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav__links li a:hover { color: #fff; background: rgba(255,255,255,0.05); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}
.hero__glow--2 {
  width: 500px; height: 500px;
  bottom: -50px; left: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
  animation: pulse 10s ease-in-out infinite reverse;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 28px;
}
.badge__dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat__plus { color: var(--purple-light); font-size: 1.5rem; font-weight: 800; }
.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 4px;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--purple-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  background: rgba(124,58,237,0.03);
}
.marquee { overflow: hidden; }
.marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee__track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.marquee__track .sep {
  color: var(--purple);
  font-size: 0.65rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(59,130,246,0.1));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.service-card__tags li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 50px;
  color: var(--purple-light);
  letter-spacing: 0.04em;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-light);
  transition: gap 0.2s;
  display: inline-block;
}
.service-card__link:hover { color: #fff; }

/* =========================================================
   WORK / PORTFOLIO
   ========================================================= */
.work { background: linear-gradient(180deg, var(--bg) 0%, #0d0d20 100%); }
.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}
.project-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--glow);
}
.project-card--large { grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; }

.project-card__visual {
  position: relative;
  padding: 40px 40px 0;
  background: linear-gradient(135deg,
    hsla(calc(var(--hue)), 70%, 10%, 0.8),
    hsla(calc(var(--hue) + 40), 60%, 8%, 0.6));
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.project-card__visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, hsla(var(--hue), 80%, 60%, 0.15), transparent 70%);
}
.project-card__info { padding: 28px 32px; }
.project-card__type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  display: block;
  margin-bottom: 10px;
}
.project-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.project-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.project-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.project-card__tech span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  color: var(--text-muted);
}

/* ── Browser Mockup ── */
.mockup--browser {
  width: 100%;
  max-width: 500px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.browser-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-faint);
  flex: 1;
  text-align: center;
}
.browser-content {
  display: flex;
  height: 200px;
  padding: 12px;
  gap: 10px;
}
.mock-sidebar {
  width: 60px;
  background: linear-gradient(180deg, rgba(124,58,237,0.15), rgba(59,130,246,0.1));
  border-radius: 6px;
  flex-shrink: 0;
}
.mock-main { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.mock-chart {
  flex: 1;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1));
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.mock-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 60%;
  background: linear-gradient(135deg, rgba(124,58,237,0.3) 0%, rgba(6,182,212,0.2) 100%);
  clip-path: polygon(0% 60%, 20% 40%, 40% 55%, 60% 20%, 80% 35%, 100% 10%, 100% 100%, 0% 100%);
}
.mock-cards { display: flex; gap: 8px; }
.mock-card {
  flex: 1;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

.mockup--sm { max-width: 340px; }
.browser-bar--sm { padding: 8px 12px; }
.browser-content--sm { height: 140px; padding: 10px; }
.mock-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.mock-product {
  height: 54px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── Phone Mockup ── */
.mockup--phone {
  width: 130px;
  margin: 0 auto;
}
.phone-screen {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  height: 220px;
  display: flex;
  flex-direction: column;
}
.phone-status {
  height: 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.phone-content { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.phone-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-lines { display: flex; flex-direction: column; gap: 5px; }
.phone-line { height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; }
.phone-line--short { width: 60%; }
.phone-list { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.phone-list-item { height: 28px; background: rgba(255,255,255,0.04); border-radius: 6px; border: 1px solid rgba(255,255,255,0.05); }
.phone-map { flex: 1; background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(59,130,246,0.1)); border-radius: 8px; position: relative; overflow: hidden; }
.phone-map::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(124,58,237,0.25);
}
.phone-card-bottom { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.phone-btn { height: 22px; background: linear-gradient(135deg, var(--purple), var(--blue)); border-radius: 6px; }

.work__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.work__cta p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--bg); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover { border-color: rgba(124,58,237,0.3); box-shadow: var(--glow); }
.process-step__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(124,58,237,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step__connector {
  position: absolute;
  top: 44px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(124,58,237,0.3), transparent);
  z-index: 1;
}
.process-step:last-child .process-step__connector { display: none; }
.process-step__content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.process-step__content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: linear-gradient(180deg, #0d0d20 0%, var(--bg) 100%); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content .section__title { margin-bottom: 20px; }
.about__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  width: 36px; height: 36px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.value-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Code Window ── */
.code-window {
  background: #0d0d1a;
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
}
.code-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.code-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.code-dot--red { background: #ff5f57; }
.code-dot--yellow { background: #febc2e; }
.code-dot--green { background: #28c840; }
.code-window__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-left: 4px;
}
.code-window__body {
  padding: 24px;
  overflow-x: auto;
}
.code-window__body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.85;
}
.c-key  { color: #c084fc; }
.c-var  { color: #60a5fa; }
.c-prop { color: #a78bfa; }
.c-str  { color: #4ade80; }
.c-bool { color: #fb923c; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--bg); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section__title { margin-bottom: 20px; }
.contact__info > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.contact__link:hover { color: var(--purple-light); }
.contact__link-icon {
  width: 36px; height: 36px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
}

/* ── Contact Form ── */
.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.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(124,58,237,0.5);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238888aa' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #16162e; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  font-size: 0.875rem;
  color: #86efac;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #070710;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 32px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer__brand {
  max-width: 260px;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-top: 14px;
  line-height: 1.6;
}
.footer__links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.875rem;
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--purple-light); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 8px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process-step__connector { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav__links { display: none; position: fixed; inset: 0; background: rgba(10,10,20,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 16px; font-size: 1.4rem; z-index: 99; }
  .nav__links.open { display: flex; }
  .nav__links li a { font-size: 1.2rem; padding: 12px 24px; }
  .nav__toggle { display: flex; z-index: 100; }

  .hero { padding: 100px 0 60px; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero__stats { gap: 16px; }
  .stat__num { font-size: 1.8rem; }

  .services__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .project-card--large { grid-column: span 1; grid-template-columns: 1fr; }

  .process__steps { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__links { gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .about__inner { gap: 40px; }
}
