/* ═══════════════════════════════════════════
   SEZ MARKET — REDESIGN V3
   Premium Dark Space Theme
   ═══════════════════════════════════════════ */

/* ───── DESIGN TOKENS ───── */
:root {
  --bg:       #08090b;
  --surface:  #111318;
  --surface2: #181c24;
  --border:   rgba(255 255 255 / .07);
  --text:     #eef0f5;
  --muted:    #8b8f9a;
  --accent:   #7c6aff;
  --accent2:  #a78bfa;
  --neon:     #00e5a0;
  --neon2:    #36e6da;
  --warm:     #ff6b4a;
  --gold:     #fbbf24;
  --radius:   20px;
  --radius-lg: 32px;
  --font:     'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

/* ───── RESET ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ───── GRAIN ───── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───── MOUSE GLOW ───── */
.mouse-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,106,255,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: opacity .4s;
  will-change: transform;
}

/* ═══════════════ HEADER ═══════════════ */
#header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 3vw;
  right: 3vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 24px;
  background: rgba(17, 19, 24, .72);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(24px) saturate(1.4);
  transition: transform .35s, box-shadow .35s;
}
#header.scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transform: translateY(-4px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo em { font-style: normal; color: var(--muted); font-weight: 500; }
.logo-icon {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  transform: rotate(45deg);
}
.logo-icon i {
  display: block;
  border-radius: 3px;
  transition: transform .3s;
}
.logo:hover .logo-icon i { transform: scale(.85); }
.logo-icon i:nth-child(1) { background: var(--accent); }
.logo-icon i:nth-child(2) { background: var(--warm); }
.logo-icon i:nth-child(3) { background: var(--gold); }
.logo-icon i:nth-child(4) { background: var(--neon); }

/* Nav */
nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
}
nav a {
  position: relative;
  color: var(--muted);
  transition: color .25s;
}
nav a:hover { color: var(--text); }
nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width .3s;
}
nav a:hover::after { width: 100%; }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 14px var(--neon);
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 14px var(--neon); }
  50% { opacity: .4; box-shadow: 0 0 6px var(--neon); }
}
.header-phone {
  padding: 12px 20px;
  background: var(--accent);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: background .25s, transform .25s;
}
.header-phone:hover { background: var(--accent2); transform: translateY(-2px); }

/* Burger */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--accent);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 5vw 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid background */
.hero-bg-grid {
  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: 70px 70px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
  pointer-events: none;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(124, 106, 255, .15);
  top: -100px;
  right: -200px;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 229, 160, .1);
  bottom: -100px;
  left: 10%;
  animation: orb-drift 10s ease-in-out 2s infinite alternate-reverse;
}
.orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(255, 107, 74, .08);
  top: 30%;
  left: 40%;
  animation: orb-drift 14s ease-in-out 4s infinite alternate;
}
@keyframes orb-drift {
  to { transform: translate(60px, 40px) scale(1.15); }
}

/* Hero content layout */
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5vw;
  align-items: center;
}

.hero-left { max-width: 720px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 20px var(--neon);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.06em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--neon) 50%, var(--neon2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.055em;
}
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 30px 0 35px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-arrow { font-size: 20px; transition: transform .3s; }
.btn:hover .btn-arrow { transform: translate(3px, -3px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent2);
  box-shadow: 0 8px 30px rgba(124,106,255,.35);
  transform: translateY(-3px);
}
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}
.btn-cta {
  background: #fff;
  color: var(--bg);
  min-width: 260px;
}
.btn-cta:hover {
  background: var(--neon);
  box-shadow: 0 8px 35px rgba(0,229,160,.3);
  transform: translateY(-3px);
}

/* ───── HUD CARD ───── */
.hero-right { position: relative; }
.hud-card {
  background: rgba(17, 19, 24, .85);
  border: 1px solid rgba(124,106,255,.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  transform: rotate(3deg);
  animation: card-float 6s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-14px); }
}
.hud-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}
.hud-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hud-dots i:nth-child(1) { background: var(--warm); }
.hud-dots i:nth-child(2) { background: var(--gold); }
.hud-dots i:nth-child(3) { background: var(--neon); }

.hud-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hud-display {
  position: relative;
  height: 260px;
  margin: 20px 0;
  background: radial-gradient(circle at 50% 40%, rgba(124,106,255,.12) 0%, transparent 70%);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.scanner-line {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,229,160,.12), transparent);
  animation: scan 3.5s linear infinite;
  pointer-events: none;
}
@keyframes scan { to { top: 120%; } }

.ring-container { position: relative; width: 180px; height: 180px; }
.ring-svg { width: 100%; height: 100%; }
.ring-track {
  fill: none;
  stroke: rgba(255,255,255,.05);
  stroke-width: 4;
}
.ring-progress {
  fill: none;
  stroke: url(#ring-grad);
  stroke: var(--neon);
  stroke-width: 4;
  stroke-dasharray: 553;
  stroke-dashoffset: 80;
  stroke-linecap: round;
  animation: ring-fill 2s ease-out forwards;
  transform: rotate(-90deg);
  transform-origin: center;
}
@keyframes ring-fill {
  from { stroke-dashoffset: 553; }
  to { stroke-dashoffset: 80; }
}
.ring-inner {
  fill: none;
  stroke: rgba(255,255,255,.03);
  stroke-width: 1;
  stroke-dasharray: 4 8;
}
.ring-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  place-content: center;
  text-align: center;
}
.ring-center strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--neon);
}
.ring-center small {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 700;
}

/* HUD Metrics */
.hud-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.metric {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.metric small {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 700;
}
.metric b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--neon);
}
.bar {
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  margin: 8px 0;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--accent), var(--neon));
  border-radius: 2px;
  animation: bar-grow 1.5s ease-out forwards;
}
@keyframes bar-grow {
  from { width: 0; }
}

/* HUD Terminal */
.hud-terminal {
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Space Grotesk', monospace;
}
.term-prompt { color: var(--neon); margin-right: 8px; }
.cursor-blink { animation: blink 1s steps(2) infinite; color: var(--neon); }
@keyframes blink { 50% { opacity: 0; } }

/* Floating chips */
.float-chip {
  position: absolute;
  background: rgba(17, 19, 24, .9);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  animation: chip-bob 4s ease-in-out infinite;
  z-index: 3;
}
.chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--neon);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
}
.chip-1 { top: 10%; right: -20px; }
.chip-2 { bottom: 15%; left: -30px; animation-delay: -2s; }
@keyframes chip-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 700px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.stat span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}
.scroll-hint small {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(135deg, var(--accent), #5b4abf);
  transform: rotate(-1deg) scale(1.02);
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  animation: marquee-slide 25s linear infinite;
}
.marquee-track i {
  font-style: normal;
  color: rgba(255,255,255,.4);
}
@keyframes marquee-slide { to { transform: translateX(-50%); } }

/* ═══════════════ SECTIONS ═══════════════ */
.section {
  padding: 140px 5vw;
  position: relative;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 24px;
}
.section-header {
  margin-bottom: 70px;
  max-width: 850px;
}
.section-desc {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 500px;
  font-size: 15px;
}

/* ═══════════════ SERVICES ═══════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}
.svc-card {
  position: relative;
  min-height: 440px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,106,255,.3), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.svc-card:hover::before { opacity: 1; }

.svc-featured {
  background: linear-gradient(145deg, var(--accent), #5b4abf);
  border-color: transparent;
}
.svc-featured::before { display: none; }
.svc-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(80px);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.svc-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,.4);
  position: absolute;
  top: 24px;
  right: 24px;
}

.svc-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.svc-icon-wrap svg { width: 32px; height: 32px; color: #fff; }
.svc-card:not(.svc-featured) .svc-icon-wrap {
  background: rgba(0,229,160,.1);
  border-color: rgba(0,229,160,.2);
}
.svc-card:not(.svc-featured) .svc-icon-wrap svg { color: var(--neon); }

.pulse-line {
  stroke: var(--neon);
  stroke-dasharray: 60;
  animation: dash-pulse 2.2s linear infinite;
}
@keyframes dash-pulse { from { stroke-dashoffset: 60; } to { stroke-dashoffset: -60; } }

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 24px 0 12px;
}
.svc-card p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.7;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}
.svc-tags li {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}
.svc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
  font-weight: 700;
  transition: color .25s;
}
.svc-link:hover { color: var(--neon); }
.svc-link span { font-size: 18px; transition: transform .3s; }
.svc-link:hover span { transform: translate(4px, -4px); }

/* ═══════════════ ABOUT ═══════════════ */
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: saturate(.2) brightness(.8) contrast(1.1);
  transition: filter .5s;
}
.about-visual:hover img {
  filter: saturate(.5) brightness(.9) contrast(1.05);
}
.about-badge {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 12px 30px rgba(124,106,255,.35);
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 24px;
}
.about-badge span {
  font-size: 9px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .8;
}

.about-text > p {
  color: var(--muted);
  line-height: 1.8;
  margin: 28px 0 40px;
  max-width: 550px;
}
.principles {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.principle {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.prin-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent2);
  padding-top: 2px;
  min-width: 24px;
}
.principle strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}
.principle p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ═══════════════ PROCESS ═══════════════ */
.process { padding-bottom: 160px; }
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.steps-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}
.steps-progress {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  border-radius: 2px;
  transition: width 1.8s cubic-bezier(.2,.7,.2,1);
}
.steps-line.active .steps-progress { width: 100%; }

.step {
  position: relative;
  padding-top: 75px;
}
.step-marker {
  position: absolute;
  top: 10px;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: border-color .4s, background .4s;
}
.step:hover .step-marker {
  border-color: var(--accent);
  background: var(--accent);
}
.step-marker span {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  transition: color .4s;
}
.step:hover .step-marker span { color: #fff; }

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 220px;
}

/* ═══════════════ CTA ═══════════════ */
.cta {
  margin: 0 3vw 20px;
  min-height: 750px;
  border-radius: var(--radius-lg);
  padding: 100px 5vw 60px;
  background: linear-gradient(145deg, var(--accent), #4a35c7);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--neon);
  filter: blur(200px);
  opacity: .12;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-orb-2 {
  background: var(--warm);
  top: auto;
  bottom: -200px;
  opacity: .08;
}
.cta h2 {
  font-size: clamp(52px, 8vw, 120px);
  position: relative;
}
.cta .outline-text { -webkit-text-stroke-color: #fff; }
.cta-desc {
  max-width: 520px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 24px 0 30px;
  position: relative;
}

/* Contact cards */
.contact-cards {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 32px;
  position: relative;
}
.contact-card {
  text-align: left;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  transition: background .3s, transform .3s;
}
.contact-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.contact-card small {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  font-weight: 700;
}
.contact-card span {
  font-size: 14px;
  font-weight: 700;
}

/* ═══════════════ FOOTER ═══════════════ */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 5vw 50px;
  font-size: 12px;
  color: var(--muted);
}
footer p { font-size: 12px; }
.footer-top {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  transition: color .25s;
}
.footer-top:hover { color: var(--accent); }

/* ═══════════════ ANIMATIONS ═══════════════ */
.anim-up {
  opacity: 0;
  transform: translateY(40px);
  animation: enter .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.anim-up:nth-child(1) { animation-delay: 0s; }
.anim-up:nth-child(2) { animation-delay: .12s; }
.anim-up:nth-child(3) { animation-delay: .24s; }
.anim-up:nth-child(4) { animation-delay: .36s; }
.hero-right.anim-up { animation-delay: .3s; }

@keyframes enter {
  to { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1100px) {
  nav, .header-right { display: none; }
  .burger { display: flex; }

  #header.menu-open nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(17, 19, 24, .95);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 8px;
    backdrop-filter: blur(24px);
  }
  #header.menu-open nav a {
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 12px;
    color: var(--text);
  }
  #header.menu-open nav a:hover {
    background: rgba(255,255,255,.05);
  }

  .hero-content { grid-template-columns: 1fr; }
  .hero-right { margin-top: 40px; max-width: 480px; }
  .float-chip { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-featured { grid-column: 1 / -1; }

  .about { grid-template-columns: 1fr; }
  .about-visual { max-width: 550px; }
}

@media (max-width: 650px) {
  #header { top: 10px; left: 12px; right: 12px; }
  .hero { padding: 130px 20px 60px; }
  h1 { font-size: clamp(44px, 12vw, 55px); }
  .hero-desc { font-size: 15px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .scroll-hint { display: none; }

  .hud-card { transform: none; }
  .hud-display { height: 200px; }
  .ring-container { width: 140px; height: 140px; }

  .section { padding: 90px 20px; }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .services-grid { grid-template-columns: 1fr; }
  .svc-featured { grid-column: auto; }
  .svc-card { min-height: 360px; }
  .svc-tags { display: none; }

  .about { gap: 60px; }
  .about-badge { right: -10px; bottom: -10px; width: 95px; height: 95px; }
  .about-badge strong { font-size: 18px; }

  .steps { grid-template-columns: 1fr; gap: 8px; }
  .steps-line {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .steps-progress { width: 100% !important; height: 0; }
  .steps-line.active .steps-progress { height: 100%; width: 100% !important; }
  .step { padding: 0 0 40px 65px; }
  .step-marker { top: 0; }

  .cta { margin: 0 12px 12px; min-height: 780px; padding: 70px 20px 40px; border-radius: 24px; }
  .cta h2 { font-size: clamp(44px, 12vw, 55px); }
  .contact-cards { grid-template-columns: 1fr; gap: 10px; }

  footer { flex-direction: column; gap: 20px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .anim-up { opacity: 1; transform: none; }
}
