:root {
  --navy: #14183b;
  --navy-deep: #0b1028;
  --ink: #171b3d;
  --purple: #7b3cff;
  --violet: #8b5cf6;
  --blue: #3b82f6;
  --cyan: #38bdf8;
  --grad: linear-gradient(135deg, #7b3cff 0%, #6366f1 48%, #2563eb 100%);
  --grad-soft: linear-gradient(120deg, rgba(123, 60, 255, 0.16), rgba(59, 130, 246, 0.12));
  --bg: #f3f5fb;
  --white: #ffffff;
  --muted: #5d6490;
  --line: rgba(20, 24, 59, 0.1);
  --shadow: 0 20px 50px rgba(20, 24, 59, 0.08);
  --radius: 22px;
  --header: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1360px, calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3, .display {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #eef1f8;
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader img {
  width: min(280px, 70vw);
  animation: logoFloat 2.4s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(59, 130, 246, 0.18));
}
.preloader-bar {
  width: 180px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 99px;
  background: rgba(20, 24, 59, 0.08);
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  animation: loadBar 1.35s var(--ease) forwards;
}

/* Cursor */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  display: none;
}
.cursor {
  width: 42px; height: 42px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.grow { width: 72px; height: 72px; background: rgba(255,255,255,0.12); }
@media (pointer: fine) {
  .cursor, .cursor-dot { display: block; }
  body, a, button { cursor: none; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(243, 245, 251, 0.88);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 24, 59, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header);
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
  animation: logoPulse 5s ease-in-out infinite;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav > a, .nav-item > button {
  padding: 10px 14px;
  border: 0;
  background: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.nav > a:hover, .nav-item > button:hover, .nav > a.active {
  color: var(--purple);
  background: rgba(123, 60, 255, 0.06);
}
.nav-item { position: relative; }
.nav-item > button {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item > button svg { width: 12px; height: 12px; transition: transform 0.25s; }
.nav-item:hover > button svg, .nav-item.open > button svg { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: calc(100% + 8px);
  right: -40px;
  width: min(860px, 78vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s var(--ease);
}
.nav-item:hover .mega, .nav-item.open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega h4 {
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--purple);
}
.mega a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.mega a:hover { color: var(--ink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.phone-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}
.phone-chip span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: ping 1.8s infinite;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20,24,59,0.2); }
.btn-grad {
  background: var(--grad);
  box-shadow: 0 10px 24px rgba(123, 60, 255, 0.28);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-light { background: #fff; color: var(--navy); }
.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 18px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  background: radial-gradient(1200px 600px at 80% -10%, rgba(123,60,255,0.35), transparent 55%),
              radial-gradient(900px 500px at 10% 90%, rgba(37,99,235,0.32), transparent 50%),
              linear-gradient(180deg, #0c1230 0%, #141a42 100%);
  color: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
}
.circuit path {
  fill: none;
  stroke: url(#circuitGrad);
  stroke-width: 1.4;
  stroke-dasharray: 8 14;
  animation: dash 18s linear infinite;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: orbFloat 10s ease-in-out infinite;
}
.orb-1 { width: 280px; height: 280px; background: #7b3cff; top: 12%; left: 8%; }
.orb-2 { width: 340px; height: 340px; background: #2563eb; right: -60px; bottom: 8%; animation-delay: -4s; }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  padding: 80px 0 100px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 74px);
  max-width: 16ch;
  margin-bottom: 18px;
}
.hero p.lead {
  max-width: 52ch;
  color: rgba(255,255,255,0.74);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 70px;
  gap: 20px;
}
.socials { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 700; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  transition: 0.25s;
}
.socials a:hover { background: #fff; color: var(--navy); }
.slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}
.slider-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  transition: 0.25s;
}
.slider-nav button:hover { background: #fff; color: var(--navy); }
.slides { position: relative; min-height: 280px; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s var(--ease);
  pointer-events: none;
}
.slide.active { opacity: 1; transform: none; position: relative; pointer-events: auto; }
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-hint i {
  width: 1px; height: 38px;
  background: linear-gradient(#fff, transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}

/* Marquee */
.marquee {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee span {
  padding: 16px 36px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Sections */
.section { padding: 96px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 42px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 48px); max-width: 18ch; }
.kicker {
  color: var(--purple);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.muted { color: var(--muted); line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-photo {
  height: 168px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.08); }
.service-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.icon-badge {
  width: 48px; height: 48px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad);
  color: #fff;
  margin-bottom: 18px;
}
.icon-badge svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 22px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.service-card .more {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 800;
  font-size: 13px;
  color: var(--purple);
}
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.2s ease-out infinite;
  transition: transform 0.25s var(--ease);
}
.wa-float svg { width: 34px; height: 34px; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float b {
  position: absolute;
  right: 74px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: 0.25s var(--ease);
}
.wa-float:hover b { opacity: 1; transform: none; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.stat {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 48px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--muted); font-weight: 700; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.logo-stage {
  background: #fff;
  border-radius: 36px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.logo-stage.bare {
  background: transparent;
  box-shadow: none;
  padding: 8px 0;
  overflow: visible;
}
.logo-stage.bare::before,
.logo-stage.bare::after { display: none; }
.logo-stage img {
  width: min(420px, 100%);
  margin: 0 auto;
  animation: logoFloat 4s ease-in-out infinite;
}
.logo-stage::before, .logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  animation: orbFloat 8s ease-in-out infinite;
}
.logo-stage::before { width: 160px; height: 160px; background: rgba(123,60,255,0.25); top: -30px; left: -20px; }
.logo-stage::after { width: 180px; height: 180px; background: rgba(37,99,235,0.22); right: -30px; bottom: -40px; }

.cta-band {
  margin: 0 20px 40px;
  border-radius: 36px;
  padding: 56px 48px;
  background:
    radial-gradient(520px 240px at 92% 20%, rgba(123,60,255,0.38), transparent 58%),
    radial-gradient(420px 220px at 8% 110%, rgba(37,99,235,0.28), transparent 55%),
    linear-gradient(135deg, #0b1028 0%, #151a45 52%, #1a1248 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(11, 16, 40, 0.18);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(28px, 4vw, 46px); max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 42ch; margin-top: 12px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.split-contact {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  margin: 0 20px 18px;
  border-radius: 36px;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.split-left, .split-right { padding: 56px 48px; }
.split-left {
  background:
    radial-gradient(420px 280px at 0% 0%, rgba(123,60,255,0.35), transparent 60%),
    radial-gradient(340px 240px at 100% 100%, rgba(37,99,235,0.28), transparent 58%),
    linear-gradient(160deg, #10153a 0%, #14183b 48%, #0d1230 100%);
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
.split-left::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.split-right { background: #fff; }
.split-left h2, .split-right h2 { font-size: clamp(28px, 4.2vw, 46px); margin-bottom: 12px; }
.split-lead {
  color: rgba(255,255,255,0.68);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-cards { display: grid; gap: 12px; }
.contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: 0.25s var(--ease);
}
a.contact-chip:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.contact-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 18px rgba(123,60,255,0.28);
}
.contact-ico svg { width: 18px; height: 18px; }
.contact-chip small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 800;
  margin-bottom: 2px;
}
.contact-chip b { font-size: 15px; font-weight: 800; }
.split-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.contact-line { font-size: 22px; font-weight: 800; margin: 10px 0; }
.form { display: grid; gap: 14px; margin-top: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field span { font-size: 12px; font-weight: 800; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #f7f8fd;
  outline: none;
  transition: 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(123,60,255,0.12);
}
.check { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.form-submit {
  width: 100%;
  padding: 16px 22px;
  margin-top: 4px;
}
.form-msg { display: none; padding: 12px 14px; border-radius: 12px; background: #ecfdf3; color: #166534; font-weight: 700; }
.form-msg.show { display: block; }

/* Page hero */
.page-hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(36px, 6vw, 64px); max-width: 18ch; }
.crumbs { color: var(--muted); font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.crumbs a:hover { color: var(--purple); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}
.step em {
  font-style: normal;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  color: var(--purple);
}

.cards-2, .cards-3 {
  display: grid;
  gap: 18px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: 1fr 1fr; }
.info-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.3s var(--ease);
  padding: 22px;
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.footer {
  background: #0b1024;
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.footer .brand img {
  height: 64px;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 8px 12px;
}
.footer h5 { color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer a { display: block; padding: 5px 0; font-size: 14px; color: rgba(255,255,255,0.68); }
.footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  font-size: 13px;
}

.reveal { opacity: 0; transform: translateY(28px); transition: 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  z-index: 80;
  display: none;
}
.toast.show { display: block; animation: fadeUp 0.4s var(--ease); }

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 8px 16px rgba(123, 60, 255, 0.18)); }
}
@keyframes loadBar { to { width: 100%; } }
@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
@keyframes dash { to { stroke-dashoffset: -400; } }
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -18px) scale(1.08); }
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header) 16px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    box-shadow: var(--shadow);
    max-height: calc(100svh - var(--header) - 24px);
    overflow: auto;
  }
  .nav.open { display: flex; }
  .mega {
    position: static;
    width: 100%;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 8px 8px 12px;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-item.open .mega { display: grid; }
  .phone-chip { display: none; }
  .services-grid, .cards-3, .process, .stats, .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .split-contact, .cta-band { grid-template-columns: 1fr; }
  .cta-band, .split-left, .split-right { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-grid, .cards-3, .cards-2, .process, .stats, .footer-grid { grid-template-columns: 1fr; }
  .header-actions .btn { padding: 11px 14px; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .wa-float b { display: none; }
}
