/* ═══════════════════════════════════════════════════════════════
   DESIGN FLOW — Premium Agency CSS
   Palette: Obsidian + Electric Violet + Warm Off-White + Gold
   Fonts: Syne (display) + Bricolage Grotesque (body)
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:          #080810;
  --bg-2:        #0D0D1A;
  --bg-3:        #12121F;
  --surface:     #16162A;
  --surface-2:   #1E1E35;
  --border:      rgba(123, 92, 240, 0.15);
  --border-2:    rgba(240, 237, 232, 0.08);

  --violet:      #7B5CF0;
  --violet-light:#9B82F5;
  --violet-dim:  rgba(123, 92, 240, 0.12);
  --gold:        #C9A84C;
  --gold-dim:    rgba(201, 168, 76, 0.15);

  --text:        #F0EDE8;
  --text-2:      #A8A4B8;
  --text-3:      #6B6880;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(123, 92, 240, 0.2);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Bricolage Grotesque', sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 2px; }

/* ── SELECTION ───────────────────────────────────────────────── */
::selection { background: var(--violet); color: #fff; }

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--violet);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(123, 92, 240, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; background: var(--gold); }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 52px; height: 52px; border-color: var(--gold); }

/* ── UTILITY ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-dim);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: 4rem;
}
.section-header .section-sub { margin-top: 0.75rem; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 4px 24px rgba(123, 92, 240, 0.35);
}
.btn--primary:hover {
  background: var(--violet-light);
  box-shadow: 0 6px 32px rgba(123, 92, 240, 0.55);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--violet);
  color: var(--violet-light);
  background: var(--violet-dim);
}
.btn--nav {
  background: var(--violet-dim);
  color: var(--violet-light);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
}
.btn--nav:hover {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
}
.btn--lg { padding: 0.85rem 1.8rem; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.45s; }

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-2);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--text); background: var(--surface); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8, 8, 16, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
  padding: 1.5rem 2rem 2rem;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.5rem; }
.nav__mobile a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-2);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--text); }
.nav__mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: calc(var(--nav-h) + 5rem) 2rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 92, 240, 0.25) 0%, rgba(123, 92, 240, 0.05) 50%, transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
  filter: blur(1px);
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  top: auto; bottom: -150px;
  left: auto; right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.97); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 92, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 92, 240, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--violet-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__headline-outline {
  -webkit-text-stroke: 2px var(--text-3);
  color: transparent;
  display: inline-block;
  transition: var(--transition-slow);
}
.hero__headline-outline:hover {
  -webkit-text-stroke-color: var(--violet);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero__stat { text-align: left; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero__stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--violet);
}
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-2);
}

/* Hero Visual / Mockup */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero__mockup {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
  animation: mockupFloat 6s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}
.hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-2);
}
.hero__mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero__mockup-bar span:nth-child(1) { background: #FF5F57; }
.hero__mockup-bar span:nth-child(2) { background: #FFBD2E; }
.hero__mockup-bar span:nth-child(3) { background: #28CA41; }
.hero__mockup-screen { padding: 1.5rem; }
.hero__mockup-nav {
  height: 8px;
  background: var(--surface-2);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  width: 60%;
}
.hero__mockup-hero-block {
  background: linear-gradient(135deg, var(--bg-3), var(--surface-2));
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.hero__mockup-headline {
  height: 14px;
  background: linear-gradient(90deg, var(--violet-dim), transparent);
  border-radius: 4px;
  margin-bottom: 0.6rem;
  width: 80%;
  animation: shimmer 2s ease-in-out infinite;
}
.hero__mockup-sub {
  height: 8px;
  background: var(--surface-2);
  border-radius: 4px;
  margin-bottom: 0.4rem;
  width: 65%;
}
.hero__mockup-cta {
  height: 28px;
  background: var(--violet);
  border-radius: var(--radius-sm);
  width: 40%;
  margin-top: 1rem;
  box-shadow: 0 4px 16px rgba(123, 92, 240, 0.4);
}
.hero__mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.hero__mockup-card {
  height: 60px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-2);
  animation: shimmer 2s ease-in-out infinite;
}
.hero__mockup-card:nth-child(2) { animation-delay: 0.3s; }
.hero__mockup-card:nth-child(3) { animation-delay: 0.6s; }
@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Floating badges */
.hero__floating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.hero__floating--1 {
  top: 10%;
  right: -5%;
  animation: floatBadge1 5s ease-in-out infinite;
}
.hero__floating--2 {
  bottom: 15%;
  left: -8%;
  animation: floatBadge2 6s ease-in-out infinite;
}
@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════════ */
.marquee-wrap {
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-2);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee { overflow: hidden; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
.marquee__dot { color: var(--violet) !important; font-size: 0.5rem !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee__track { animation-play-state: paused; }

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.services {
  padding: 8rem 0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  pointer-events: none;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 2.5rem;
  position: relative;
  transition: background var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--violet-dim), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { background: var(--bg-2); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--violet-dim);
  border-color: var(--violet);
  transform: scale(1.05);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}
.service-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   WORK
══════════════════════════════════════════════════════════════ */
.work {
  padding: 8rem 0;
  background: var(--bg-2);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.work-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 40px rgba(123, 92, 240, 0.1);
}
.work-card--large { grid-column: 1 / 2; grid-row: 1 / 2; }
.work-card--wide { grid-column: 1 / -1; }
.work-card__image {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card--large .work-card__image { height: 280px; }
.work-card--wide .work-card__image { height: 200px; }
.work-card__mockup {
  width: 85%;
  background: rgba(0,0,0,0.4);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.work-card__mockup--sm { width: 80%; }
.wm-bar {
  display: flex;
  gap: 5px;
  padding: 0.5rem 0.75rem;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wm-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.wm-content { padding: 0.75rem; }
.wm-nav {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  width: 50%;
  margin-bottom: 0.75rem;
}
.wm-hero { padding: 0.5rem; }
.wm-h1 {
  height: 10px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  margin-bottom: 0.4rem;
  width: 75%;
}
.wm-h2 {
  height: 7px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  width: 55%;
  margin-bottom: 0.5rem;
}
.wm-btn {
  height: 18px;
  border-radius: 4px;
  width: 30%;
  background: rgba(123, 92, 240, 0.7);
}
.wm-hero--warm .wm-h1 { background: rgba(201, 168, 76, 0.4); }
.wm-hero--warm .wm-btn { background: rgba(201, 168, 76, 0.7); }
.wm-hero--green .wm-h1 { background: rgba(184, 243, 105, 0.4); }
.wm-hero--green .wm-btn { background: rgba(184, 243, 105, 0.7); }
.wm-hero--blue .wm-h1 { background: rgba(168, 196, 224, 0.4); }
.wm-hero--blue .wm-btn { background: rgba(46, 80, 144, 0.8); }
.work-card__info { padding: 1.75rem; }
.work-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  display: block;
  margin-bottom: 0.6rem;
}
.work-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.work-card__info p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.work-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet-light);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.work-card__link:hover { color: var(--gold); gap: 0.5rem; }

/* ══════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════ */
.process {
  padding: 8rem 0;
  position: relative;
}
.process__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process__line {
  position: absolute;
  left: 2.5rem;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--violet), rgba(123, 92, 240, 0.1));
}
.process__step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-2);
  position: relative;
}
.process__step:last-child { border-bottom: none; }
.process__step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--violet);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process__step:hover .process__step-num {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
  box-shadow: 0 0 20px rgba(123, 92, 240, 0.4);
}
.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.process__step-content p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1rem;
}
.process__step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.process__step-list li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border-2);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 8rem 0;
  background: var(--bg-2);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.testi-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border-color: var(--border);
  position: relative;
  overflow: hidden;
}
.testi-card--featured::before {
  content: '"';
  position: absolute;
  top: -1rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 10rem;
  color: var(--violet-dim);
  line-height: 1;
  pointer-events: none;
}
.testi-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testi-card blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-card--featured blockquote {
  font-size: 1.15rem;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.testi-card__author span {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
}

/* ══════════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════════ */
.cta-band {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0820 0%, #120D2A 50%, #0D0820 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band__orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 92, 240, 0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbFloat 7s ease-in-out infinite;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.cta-band__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta-band__text p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 440px;
  line-height: 1.7;
}
.cta-band__actions { flex-shrink: 0; text-align: center; }
.cta-band__note {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq { padding: 8rem 0; }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--border-2);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--violet-light); }
.faq__question[aria-expanded="true"] { color: var(--violet-light); }
.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-3);
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  color: var(--violet);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer.open { max-height: 200px; }
.faq__answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact {
  padding: 8rem 0;
  background: var(--bg-2);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact__text .section-title { margin-bottom: 1rem; }
.contact__text p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact__details { display: flex; flex-direction: column; gap: 0.75rem; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-2);
}

/* Form */
.contact__form {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B6880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(123, 92, 240, 0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-2);
  padding: 5rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 260px;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--violet-dim);
  border-color: var(--violet);
  color: var(--violet-light);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text); }
.footer__col p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.65;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-2);
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: var(--text-3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 4rem);
  }
  .hero__sub { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .work-card--large,
  .work-card--wide { grid-column: 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testi-card--featured { grid-column: 1; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__text p { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .process__step { grid-template-columns: 3.5rem 1fr; gap: 1rem; }
  .process__line { left: 1.75rem; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__stats { flex-direction: column; gap: 1.5rem; }
  .hero__stat-divider { width: 40px; height: 1px; }
  .footer__links { grid-template-columns: 1fr; }
  .contact__form { padding: 1.5rem; }
  .trust-bar { gap: 1rem; }
  .trust-bar__item { font-size: 0.8rem; }
}