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

:root {
  --bg: #050508;
  --bg2: #0a0a12;
  --surface: #0f0f1a;
  --surface2: #16162a;
  --border: rgba(255,255,255,0.07);
  --text: #e8e8f0;
  --muted: #6b6b85;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --grad: linear-gradient(135deg, #7c3aed, #2563eb);
  --grad2: linear-gradient(135deg, #a78bfa, #06b6d4);
  --radius: 16px;
  --shadow: 0 0 40px rgba(124,58,237,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
h1,h2,h3 { font-family: 'Space Grotesk', sans-serif; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-light); background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.3); padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* NAV */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: background .3s, -webkit-backdrop-filter .3s, backdrop-filter .3s; }
#navbar.scrolled { background: rgba(5,5,8,.85); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1180px; 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; }
.logo-mark { width: 36px; height: 36px; background: var(--grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: white; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav { background: var(--grad) !important; color: white !important; padding: 8px 20px !important; border-radius: 8px; transition: opacity .2s !important; }
.btn-nav:hover { opacity: .85; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 16px 24px 20px; background: var(--bg2); border-top: 1px solid var(--border); }
.mobile-menu a { color: var(--text); text-decoration: none; padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--border); }
.btn-mobile { background: var(--grad); color: white !important; border-radius: 8px; padding: 12px 0 !important; text-align: center; border: none !important; margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* HERO */
#hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
#heroCanvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; pointer-events: none; opacity: 0; transition: opacity 1.2s ease; }
#heroCanvas.loaded { opacity: 1; }
/* Ambient color glows underneath canvas */
.hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(124,58,237,.25) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 80% 40%, rgba(37,99,235,.2) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 50% 80%, rgba(6,182,212,.15) 0%, transparent 60%); pointer-events: none; }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: .8rem; font-weight: 500; color: var(--muted); margin-bottom: 28px; }
.badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 8px #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.5} }
#hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.btn-primary { background: var(--grad); color: white; text-decoration: none; padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: .95rem; box-shadow: 0 0 30px rgba(124,58,237,.4); transition: transform .2s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(124,58,237,.6); }
.btn-ghost { color: var(--text); text-decoration: none; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: .95rem; border: 1px solid var(--border); transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: var(--purple-light); background: rgba(124,58,237,.08); }
.hero-stats { display: flex; align-items: center; gap: 40px; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 2rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .78rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-indicator { width: 24px; height: 40px; border: 2px solid var(--border); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-indicator span { width: 4px; height: 8px; background: var(--purple-light); border-radius: 2px; animation: scrollDown 1.6s infinite; }
@keyframes scrollDown { 0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(12px)} }

/* STACK */
#stack { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.stack-label { text-align: center; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 24px; }
.stack-ticker { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); }
.ticker-track { display: flex; gap: 12px; width: max-content; animation: ticker 28s linear infinite; }
@keyframes ticker { from{transform:translateX(0)}to{transform:translateX(-50%)} }
.tech-badge { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 8px 18px; font-size: .85rem; font-weight: 500; white-space: nowrap; color: var(--text); }

/* SERVICES */
#services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; transition: border-color .3s, transform .3s; }
.service-card:hover { border-color: rgba(124,58,237,.4); transform: translateY(-4px); }
.service-card.featured { border-color: rgba(124,58,237,.5); background: linear-gradient(145deg, rgba(124,58,237,.08), var(--surface)); box-shadow: var(--shadow); }
.service-icon { width: 32px; height: 32px; margin-bottom: 16px; display: block; object-fit: contain; }
.service-tag { position: absolute; top: 20px; right: 20px; background: var(--grad); color: white; font-size: .7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.service-list li { font-size: .83rem; color: var(--muted); padding-left: 16px; position: relative; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--purple-light); }
.service-price { font-size: .88rem; font-weight: 700; color: var(--purple-light); }

/* WORK */
#work { padding: 100px 0; background: var(--bg2); }
.work-grid { display: flex; flex-direction: column; gap: 80px; }
.work-card,
a.work-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
a.work-card:hover { opacity: 0.98; }
.work-card.reverse,
a.work-card.reverse { direction: rtl; }
.work-card.reverse > *,
a.work-card.reverse > * { direction: ltr; }
.work-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  min-height: 320px;
  height: 100%;
  display: block;
}

/* Pin card theme (ChatG-PDF / Port-Update PinContainer) */
.work-pin {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  perspective: 900px;
}
.work-pin-perspective {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotateX(0deg) translateZ(0);
  transform-style: preserve-3d;
  transform-origin: center center;
  pointer-events: none;
  transition: transform 0.35s ease;
}
.work-pin.is-hovered .work-pin-perspective,
.work-pin.is-active .work-pin-perspective {
  transform: rotateX(42deg) translateZ(0);
}
.work-pin-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.12s ease-out;
  pointer-events: auto;
}
.work-pin-card {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #1a1a2e 0%, #13162d 55%, #0d0f1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  padding: 12px;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.work-pin.is-hovered .work-pin-card {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(56, 189, 248, 0.08);
}
.work-pin-media {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #13162d;
}
.work-pin-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  z-index: 0;
}
.work-pin-video--am { object-position: center 18%; }
.work-pin-video--leila { object-position: center 22%; }
.work-pin-video--prime { object-position: center 12%; }
.work-pin-media-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 8, 0.08) 0%,
    rgba(5, 5, 8, 0.2) 45%,
    rgba(5, 5, 8, 0.55) 100%
  );
}
.work-pin-fx {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s;
}
.work-pin.is-hovered .work-pin-fx { opacity: 1; }
.work-pin-pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  z-index: 3;
}
.work-pin-rings {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11.25rem;
  height: 11.25rem;
  pointer-events: none;
}
.work-pin-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  animation: work-pin-ring 6s ease-in-out infinite;
}
.work-pin-rings span:nth-child(2) { animation-delay: 2s; }
.work-pin-rings span:nth-child(3) { animation-delay: 4s; }
@keyframes work-pin-ring {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  25% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1); }
  75% { opacity: 0; transform: scale(1.05); }
}
.work-pin-beams {
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(1.5px, 14px);
  pointer-events: none;
}
.work-pin-beam {
  display: block;
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, #06b6d4);
  filter: blur(2px);
  transition: height 0.5s;
}
.work-pin-beam-sharp {
  position: absolute;
  left: 0;
  top: 0;
  filter: none;
  opacity: 0.9;
}
.work-pin.is-hovered .work-pin-beam { height: 10rem; }
.work-pin-beam-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0891b2;
  filter: blur(3px);
  transform: translate(-1px, 14px);
}
.work-pin-beam-dot::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #67e8f9;
  left: 1px;
  top: 0;
  filter: none;
}

.work-mockup { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.mockup-bar { display: flex; gap: 6px; padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--border); }
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-content { padding: 20px; }
.mockup-line { height: 8px; border-radius: 4px; background: var(--border); margin-bottom: 10px; }
.w80 { width: 80%; }
.w70 { width: 70%; }
.w75 { width: 75%; }
.w60 { width: 60%; }
.mockup-chat { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.chat-bubble { padding: 10px 14px; border-radius: 10px; font-size: .75rem; line-height: 1.4; max-width: 85%; }
.chat-bubble.user { background: var(--grad); color: white; align-self: flex-end; }
.chat-bubble.ai { background: var(--surface); border: 1px solid var(--border); color: var(--muted); align-self: flex-start; }
.mockup-score { display: flex; align-items: center; gap: 20px; margin-top: 12px; }
.score-ring { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.score-ring svg { transform: rotate(-90deg); }
.score-ring span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; color: var(--purple-light); }
.score-labels { display: flex; flex-direction: column; gap: 6px; }
.score-item { display: flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--muted); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot.green { background: #22c55e; }
.dot.blue { background: #3b82f6; }
.dot.purple { background: var(--purple-light); }
.mockup-3d { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 12px; }
.garment-preview { position: relative; width: 80px; height: 70px; }
.garment-body { position: absolute; left: 50%; transform: translateX(-50%); width: 48px; height: 60px; background: #0f3460; border-radius: 4px 4px 8px 8px; top: 10px; }
.garment-sleeve { position: absolute; width: 16px; height: 32px; background: #0f3460; border-radius: 4px; top: 10px; }
.garment-sleeve.left { left: 4px; border-radius: 4px 0 4px 4px; }
.garment-sleeve.right { right: 4px; border-radius: 0 4px 4px 4px; }
.garment-decal { position: absolute; width: 20px; height: 20px; background: var(--grad); border-radius: 3px; top: 24px; left: 50%; transform: translateX(-50%); }
.color-swatches { display: flex; gap: 8px; }
.color-swatches span { width: 20px; height: 20px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: .2s; }
.color-swatches span.active { border-color: white; }
.work-v1 { background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(6,182,212,.05)); padding: 24px; }
.work-v2 { background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(124,58,237,.05)); padding: 24px; }
.work-v3 { background: linear-gradient(135deg, rgba(6,182,212,.08), rgba(37,99,235,.05)); padding: 24px; }
.work-info {}
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.work-tags span { background: var(--surface2); border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px; font-size: .73rem; font-weight: 500; color: var(--muted); }
.work-info h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.work-info p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.work-metrics { display: flex; gap: 24px; margin-bottom: 24px; }
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric-val { font-size: .88rem; font-weight: 700; color: var(--purple-light); }
.metric-lbl { font-size: .73rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.work-link { color: var(--purple-light); font-weight: 600; font-size: .9rem; border-bottom: 1px solid rgba(167,139,250,.3); padding-bottom: 2px; display: inline-block; transition: border-color .2s; }
a.work-card:hover .work-link { border-color: var(--purple-light); }

/* PRICING */
#pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: transform .3s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: rgba(124,58,237,.6); box-shadow: var(--shadow); background: linear-gradient(145deg, rgba(124,58,237,.1), var(--surface)); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: white; font-size: .73rem; font-weight: 700; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-header h3 { font-size: 1.1rem; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.pricing-amount { font-size: 2.8rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; line-height: 1; margin-bottom: 8px; }
.currency { font-size: 1.4rem; vertical-align: top; margin-top: 6px; display: inline-block; color: var(--muted); }
.pricing-header p { font-size: .83rem; color: var(--muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-features li { font-size: .84rem; color: var(--text); }
.pricing-features li.muted { color: var(--muted); }
.btn-pricing { display: block; text-align: center; padding: 13px; border-radius: 10px; font-weight: 600; font-size: .9rem; text-decoration: none; border: 1px solid var(--border); color: var(--text); transition: .2s; }
.btn-pricing:hover { border-color: var(--purple); color: var(--purple-light); }
.btn-pricing.featured { background: var(--grad); border: none; color: white; box-shadow: 0 0 20px rgba(124,58,237,.4); }
.btn-pricing.featured:hover { box-shadow: 0 0 30px rgba(124,58,237,.6); }
.pricing-note { text-align: center; margin-top: 32px; color: var(--muted); font-size: .88rem; }
.pricing-note a { color: var(--purple-light); text-decoration: none; }

/* WHY */
#why { padding: 100px 0; background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.why-text > p { color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.why-globe-wrap { position: relative; width: 100%; min-height: 320px; margin-top: 8px; overflow: hidden; }
.why-globe { position: absolute; inset: 0; pointer-events: none; }
.why-globe-canvas { display: block; width: 100% !important; height: 100% !important; pointer-events: none; }
.why-globe-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(to bottom, transparent, var(--bg2)); pointer-events: none; z-index: 1; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { font-size: .8rem; font-weight: 700; color: var(--purple-light); background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content { padding-bottom: 4px; }
.step-content strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.step-content p { color: var(--muted); font-size: .83rem; line-height: 1.5; }
.step-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(124,58,237,.4), rgba(124,58,237,.1)); margin-left: 17px; }

/* CONTACT */
#contact { padding: 100px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.contact-text > p { color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 12px; font-size: .9rem; }
.contact-method a { color: var(--purple-light); text-decoration: none; }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; color: var(--text); font-family: 'Inter', sans-serif; font-size: .88rem; outline: none; transition: border-color .2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--grad); border: none; border-radius: 10px; color: white; font-weight: 600; font-size: .95rem; cursor: pointer; transition: opacity .2s, transform .2s; }
.btn-submit:hover { opacity: .9; transform: translateY(-1px); }
.form-success { margin-top: 16px; padding: 12px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); border-radius: 8px; font-size: .88rem; color: #4ade80; text-align: center; }
.hidden { display: none; }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: .85rem; margin-top: 12px; max-width: 240px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.footer-col a { color: var(--muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .78rem; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .work-card, .work-card.reverse,
  a.work-card, a.work-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .work-visual { min-height: 280px; }
  .why-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.5rem; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
