/* ── Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #08060F;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
input, textarea {
  font-family: inherit;
  outline: none;
  background: none;
  border: none;
  color: #fff;
  width: 100%;
}
::selection { background: #8B5CF6; color: #fff; }

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --primary: #8B5CF6;
  --primary-light: #a78bfa;
  --bg: #08060F;
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.10);
  --muted: rgba(255,255,255,0.50);
  --muted-dim: rgba(255,255,255,0.35);
}

/* ── Utility ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (min-width: 768px)  { .container { padding-inline: 3rem; } }
@media (min-width: 1280px) { .container { padding-inline: 5rem; } }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  transition: border-color .3s, box-shadow .3s;
}
.glass-card:hover {
  border-color: rgba(139,92,246,.4);
  box-shadow: 0 0 30px rgba(139,92,246,.15);
}

.glowing-btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  transition: box-shadow .3s, transform .15s;
}
.glowing-btn:hover {
  box-shadow: 0 0 30px rgba(139,92,246,.55);
  transform: translateY(-1px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border-radius: 9999px;
}
.badge .dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
.badge span { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.8); letter-spacing: .1em; text-transform: uppercase; }

.dot-grid-overlay {
  background-image: radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes float-up   { 0%,100% { transform: translateY(0); }  50% { transform: translateY(-10px); } }
@keyframes float-down { 0%,100% { transform: translateY(0); }  50% { transform: translateY(10px);  } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes navSlide { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes strikeGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left  { opacity: 0; transform: translateX(-30px); transition: opacity .65s ease, transform .65s ease; }
.fade-in-left.visible  { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity .65s ease, transform .65s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Orbs ──────────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
}

/* ── Hero outer section needs relative positioning for orbs ── */
#top {
  position: relative;
  overflow: hidden;
}

/* ── Manifesto inner content must sit above the bg "47" watermark ── */
#manifesto .inner {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════ */
/*  NAVBAR                                                 */
/* ═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: padding .3s, background .3s, border-color .3s;
  animation: navSlide .8s cubic-bezier(.16,1,.3,1) both;
}
#navbar.scrolled {
  padding: 1rem 0;
  background: rgba(8,6,15,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
#navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
}
.nav-logo img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.nav-logo-text { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; }

nav.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,.05);
  padding: .5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
@media (min-width: 768px) { nav.desktop-nav { display: flex; } }

nav.desktop-nav button {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
nav.desktop-nav button:hover { color: #fff; }

.nav-cta {
  padding: .625rem 1.5rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* Mobile menu */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: .5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }
.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); }
@media (min-width: 768px) { .hamburger { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,6,15,.95);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu button {
  text-align: left;
  padding: .875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s, background .2s;
}
.mobile-menu button:hover { color: #fff; background: rgba(255,255,255,.05); }

/* ═══════════════════════════════════════════════════════ */
/*  HERO                                                   */
/* ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 7rem;
}
@media (min-width: 768px) { #hero { padding-top: 10rem; padding-bottom: 8rem; } }

#hero .orb-1 { top: 10%; left: 10%; width: 45vw; height: 45vw; background: rgba(109,40,217,.20); }
#hero .orb-2 { bottom: 5%; right: 5%; width: 28vw; height: 28vw; background: rgba(192,38,211,.15); }
#hero .orb-3 { top: 5%; right: 25%; width: 18vw; height: 18vw; background: rgba(79,70,229,.10); filter: blur(90px); }

#hero .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { #hero .grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

#hero .left { display: flex; flex-direction: column; align-items: flex-start; }
#hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
#hero h1 .gradient {
  background: linear-gradient(90deg, #fff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 440px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.75;
}
@media (min-width: 1280px) { #hero p { font-size: 1.125rem; } }

.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-btns .btn-primary { padding: .875rem 1.75rem; border-radius: 9999px; font-size: .875rem; font-weight: 700; letter-spacing: .04em; }
.hero-btns .btn-ghost {
  padding: .875rem 1.75rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  transition: background .2s;
}
.hero-btns .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* Stat cards */
.stat-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) { .stat-grid { display: grid; } }

.stat-card {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.stat-card.float-up   { animation: float-up   5s ease-in-out infinite; }
.stat-card.float-down { animation: float-down 5.5s ease-in-out infinite; }
.stat-card.float-up-2   { animation: float-up   4.5s ease-in-out infinite .6s; }
.stat-card.float-down-2 { animation: float-down 6s   ease-in-out infinite .9s; }

.stat-card .stat-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}
.stat-card .stat-dot { width: .5rem; height: .5rem; border-radius: 50%; flex-shrink: 0; }
.stat-card .stat-label span { font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.stat-card .stat-value { font-family: 'Outfit', sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; }
@media (min-width: 1280px) { .stat-card .stat-value { font-size: 2.75rem; } }

/* Hero fade */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to top, #08060F, transparent);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════ */
/*  MARQUEE                                                */
/* ═══════════════════════════════════════════════════════ */
#marquee-strip {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
#marquee-strip .fade-l {
  position: absolute; left: 0; top: 0; height: 100%; width: 6rem;
  background: linear-gradient(to right, #08060F, transparent);
  z-index: 2; pointer-events: none;
}
#marquee-strip .fade-r {
  position: absolute; right: 0; top: 0; height: 100%; width: 6rem;
  background: linear-gradient(to left, #08060F, transparent);
  z-index: 2; pointer-events: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 2rem;
  flex-shrink: 0;
  color: rgba(255,255,255,.4);
  transition: color .3s;
  cursor: default;
}
.marquee-item:hover { color: rgba(255,255,255,.8); }
.marquee-item svg { color: rgba(255,255,255,.3); width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.marquee-item .name { font-size: .875rem; font-weight: 500; letter-spacing: .04em; white-space: nowrap; }
.marquee-item .sep { margin-left: 2rem; color: rgba(255,255,255,.15); font-size: 1.25rem; font-weight: 200; }

/* ═══════════════════════════════════════════════════════ */
/*  MANIFESTO                                              */
/* ═══════════════════════════════════════════════════════ */
#manifesto {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) { #manifesto { padding-top: 7rem; padding-bottom: 6rem; } }

#manifesto .orb-c {
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60vw; height: 60vw;
  background: rgba(109,40,217,.10);
  filter: blur(160px);
}
#manifesto .orb-r { top: 10%; right: 5%; width: 20vw; height: 20vw; background: rgba(192,38,211,.10); filter: blur(100px); }

.manifesto-bg47 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.manifesto-bg47 span {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  font-size: clamp(200px, 35vw, 500px);
}

#manifesto .inner { position: relative; z-index: 1; }
#manifesto .badge-wrap { display: flex; justify-content: center; margin-bottom: 2.5rem; }

#manifesto h2 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.strike-word {
  position: relative;
  display: inline-block;
}
.strike-word .grad-text {
  background: linear-gradient(90deg, #a78bfa, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.strike-line {
  position: absolute;
  left: 0; top: 50%;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #a78bfa, #e879f9);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .5s ease .3s;
}
.strike-word.struck .strike-line { transform: scaleX(1); }

.results-grad {
  background: linear-gradient(90deg, #fff, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#manifesto .sub {
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 4rem;
  line-height: 1.75;
}
@media (min-width: 768px) { #manifesto .sub { font-size: 1.125rem; } }

/* Stats row */
.manifesto-stats {
  display: flex;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto 4rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
}
.mstat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.05);
}
.mstat:last-child { border-right: none; }
.mstat .val { font-family: 'Outfit', sans-serif; font-size: 1.875rem; font-weight: 900; color: #fff; margin-bottom: .25rem; }
.mstat .lbl { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; text-align: center; }

/* Pillar cards */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .pillar-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }

.pillar-card {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pillar-card .top-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.pillar-card .pdot { width: .625rem; height: .625rem; border-radius: 50%; }
.pillar-card .pnum { font-family: monospace; font-size: .75rem; color: rgba(255,255,255,.2); }
.pillar-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.3; color: #fff; transition: color .3s; }
.pillar-card:hover h3 { color: #c4b5fd; }
.pillar-card p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; }

#manifesto::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.1), transparent);
}

/* ═══════════════════════════════════════════════════════ */
/*  WORK SHOWCASE                                          */
/* ═══════════════════════════════════════════════════════ */
#services {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 8rem;
}
@media (min-width: 768px) { #services { padding-top: 7rem; padding-bottom: 9rem; } }

#services .orb-c { top: 20%; left: 50%; width: 40vw; height: 40vw; background: rgba(109,40,217,.10); filter: blur(140px); }

.showcase-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .showcase-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.showcase-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.showcase-header h2 .gradient {
  background: linear-gradient(90deg, #fff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.showcase-header .side-text {
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  max-width: 17rem;
  font-weight: 300;
  line-height: 1.65;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px)  { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }

.work-card {
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, box-shadow .4s;
}
.work-card:hover { border-color: rgba(139,92,246,.4); box-shadow: 0 0 40px rgba(139,92,246,.12); }

.work-card .accent-glow {
  position: absolute;
  top: 0; left: 0;
  width: 12rem; height: 12rem;
  border-radius: 50%;
  filter: blur(2rem);
  opacity: .6;
  pointer-events: none;
}
.work-card .card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.work-card .icon-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.work-card .icon-box {
  width: 2.5rem; height: 2.5rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: color .3s;
}
.work-card .icon-box svg { width: 1.5rem; height: 1.5rem; }
.work-card:hover .icon-box { color: #fff; }
.work-card .category { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.work-card .metric-block { text-align: right; }
.work-card .metric-val { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; }
.work-card .metric-lbl { font-size: .75rem; color: rgba(255,255,255,.35); line-height: 1.3; }

.work-card .card-body { position: relative; z-index: 1; }
.work-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.125rem; color: #fff; margin-bottom: .5rem; transition: color .3s; }
.work-card:hover h3 { color: #c4b5fd; }
.work-card p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; }

.work-card .tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .5rem; }
.work-card .tag {
  font-family: monospace;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: .25rem .625rem;
  border-radius: 9999px;
}

#services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.1), transparent);
}

/* ═══════════════════════════════════════════════════════ */
/*  PLATFORMS STRIP                                        */
/* ═══════════════════════════════════════════════════════ */
#platforms {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.platforms-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .platforms-inner { flex-direction: row; justify-content: space-between; } }
.platforms-label { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.platforms-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 3rem; }
@media (min-width: 768px) { .platforms-list { justify-content: flex-end; } }
.platform-item { display: flex; align-items: center; gap: .75rem; }
.platform-item .pdot { width: .5rem; height: .5rem; border-radius: 50%; background: rgba(139,92,246,.8); flex-shrink: 0; }
.platform-item span { font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 600; color: rgba(255,255,255,.9); }

/* ═══════════════════════════════════════════════════════ */
/*  PROCESS                                                */
/* ═══════════════════════════════════════════════════════ */
#process { padding: 6rem 0; }

#process .section-head { margin-bottom: 4rem; text-align: center; }
@media (min-width: 1024px) { #process .section-head { text-align: left; } }
#process h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; margin-bottom: 1rem; }
#process .sub { font-size: 1.125rem; color: rgba(255,255,255,.6); font-weight: 300; max-width: 32rem; margin: 0 auto; }
@media (min-width: 1024px) { #process .sub { margin: 0; } }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.process-card .bg-num {
  position: absolute;
  top: -2.5rem; right: -2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  user-select: none;
  transition: color .3s;
}
.process-card:hover .bg-num { color: rgba(255,255,255,.10); }
.process-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-top: 2rem; margin-bottom: .75rem; position: relative; z-index: 1; }
.process-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; position: relative; z-index: 1; }

#process .divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.1), transparent);
  margin-top: 8rem;
}

/* ═══════════════════════════════════════════════════════ */
/*  CONTACT                                                */
/* ═══════════════════════════════════════════════════════ */
#contact { padding: 6rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-left h2 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.contact-left p { font-size: 1.125rem; color: rgba(255,255,255,.6); font-weight: 300; margin-bottom: 3rem; max-width: 26rem; line-height: 1.65; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item .ci-label { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem; }
.contact-info-item a, .contact-info-item p { font-size: 1.125rem; color: #fff; transition: color .2s; }
.contact-info-item a:hover { color: var(--primary-light); }

.contact-form {
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field label { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.7); }
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .9375rem;
  color: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input { height: 3rem; }
.form-field textarea { min-height: 120px; resize: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,92,246,.2);
}

.btn-submit {
  width: 100%;
  height: 3rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════ */
/*  FOOTER                                                 */
/* ═══════════════════════════════════════════════════════ */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }

.footer-logo { display: flex; align-items: center; gap: .75rem; }
.footer-logo img { width: 2rem; height: 2rem; object-fit: contain; border-radius: .375rem; opacity: .8; filter: grayscale(1); }
.footer-logo span { font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 700; color: rgba(255,255,255,.9); }

.footer-copy { font-size: .875rem; color: rgba(255,255,255,.4); }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #fff; }
