:root {
  --bg: #04050a;
  --bg-soft: #09101d;
  --bg-soft-2: #0d1730;
  --panel: rgba(10, 17, 30, 0.72);
  --panel-2: rgba(15, 24, 42, 0.84);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f7ff;
  --muted: #aab5cd;
  --muted-2: #7d8cab;
  --blue: #1900ff;
  --blue-soft: #3e69ff;
  --purple: #4212a3;
  --cyan: #58a6ff;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  --max: 1260px;
  --transition: 260ms cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(66,18,163,0.18), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(25,0,255,0.14), transparent 24%),
    linear-gradient(180deg, #030409 0%, #07111f 35%, #09182c 68%, #0d2240 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

body.is-loading { overflow: hidden; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.98), transparent 85%);
  pointer-events: none;
  z-index: -4;
}

.bg-noise {
  position: fixed;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.45) 0.5px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.28) 0.5px, transparent 1px),
    radial-gradient(circle at 45% 75%, rgba(255,255,255,.22) 0.5px, transparent 1px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  pointer-events: none;
  z-index: -5;
}

.bg-gradient-mesh {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(66,18,163,0.12), transparent 22%),
    radial-gradient(circle at 72% 25%, rgba(25,0,255,0.1), transparent 20%),
    radial-gradient(circle at 52% 82%, rgba(88,166,255,0.08), transparent 22%);
  filter: blur(18px);
  animation: meshFloat 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -6;
}

@keyframes meshFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(0, -18px, 0) scale(1.03); }
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
  z-index: -7;
  opacity: 0.55;
}

.orb-1 { top: -80px; left: -70px; background: rgba(66,18,163,0.45); }
.orb-2 { top: 18%; right: -110px; background: rgba(25,0,255,0.28); }
.orb-3 { bottom: -140px; left: 34%; background: rgba(88,166,255,0.18); }

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(88,166,255,0.1), rgba(88,166,255,0.03), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
  transition: transform 80ms linear;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(66,18,163,0.18), transparent 22%),
    linear-gradient(180deg, #030409 0%, #07111f 100%);
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  width: min(90vw, 280px);
  text-align: center;
  position: relative;
}

.loader-logo {
  width: 76px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  animation: pulseLogo 1.8s ease-in-out infinite;
}

.loader-ring {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  position: absolute;
  inset: -18px 0 0 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 10px rgba(255,255,255,0.01);
  animation: ringPulse 2s ease-in-out infinite;
}

.loader-line {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.loader-line span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
  animation: loadingBar 1.2s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%,100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes ringPulse {
  0%,100% { transform: translateX(-50%) scale(0.96); opacity: 0.55; }
  50% { transform: translateX(-50%) scale(1.04); opacity: 0.95; }
}

@keyframes loadingBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(18px);
  background: rgba(4, 6, 12, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.site-header.scrolled {
  background: rgba(4, 6, 12, 0.82);
  border-bottom-color: rgba(255,255,255,0.1);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(62, 105, 255, 0.22));
}

.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-sub {
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: color var(--transition), transform var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.lang-btn {
  min-width: 42px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn:hover { color: var(--text); }

.lang-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 10px 25px rgba(25, 0, 255, 0.22);
}

.section {
  position: relative;
  padding: 112px 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b79cff;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(183,156,255,0), rgba(183,156,255,1));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.narrow { max-width: 700px; }

.section-heading h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero {
  padding-top: 92px;
  padding-bottom: 96px;
  overflow: clip;
}

.hero-spotlight {
  position: absolute;
  inset: auto auto 10% 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(66,18,163,0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 38px;
  align-items: center;
}

.hero-copy h1 {
  margin: 16px 0 16px;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 700px;
}

.hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

.hero-kicker-pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  color: #d6dcff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-text {
  max-width: 620px;
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 16px 40px rgba(25,0,255,0.28);
}

.btn-secondary,
.btn-nav {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-nav:hover {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.06);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -120%;
  width: 50%;
  height: 140%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.7s ease;
}

.btn-shine:hover::after {
  left: 150%;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin-top: 12px;
}

.hero-proof-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}

.hero-proof-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(25,0,255,0.16), transparent 65%);
  pointer-events: none;
}

.hero-proof-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted-2);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-proof-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.hero-proof-card small { color: var(--muted); }

.hero-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform var(--transition), border var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
}

.card:hover {
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 22px 72px rgba(0,0,0,0.52);
}

.card-glow {
  position: absolute;
  inset: auto -10% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(88,166,255,0.13), transparent 70%);
  pointer-events: none;
}

.dashboard-card-main {
  width: 100%;
  max-width: 630px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.dashboard-card-main::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(66,18,163,0.45), rgba(25,0,255,0.2), rgba(88,166,255,0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.window-title {
  flex: 1;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-pill {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #e3dbff;
  background: rgba(66,18,163,0.2);
  border: 1px solid rgba(183,156,255,0.18);
}

.metric-box {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
}

.metric-box span {
  display: block;
  color: var(--muted-2);
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-box strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.05em;
}

.metric-box small { color: var(--muted); }

.dashboard-list {
  display: grid;
  gap: 2px;
}

.list-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.list-row:first-child { border-top: none; }

.list-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.list-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.score-pill {
  min-width: 48px;
  text-align: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
}

.score-pill.blue {
  color: #d9e4ff;
  background: rgba(25,0,255,0.16);
}

.score-pill.purple {
  color: #e8deff;
  background: rgba(66,18,163,0.18);
}

.floating-card {
  position: absolute;
  padding: 16px 18px;
  min-width: 180px;
  background: rgba(8,12,22,0.82);
  z-index: 2;
}

.floating-card span {
  display: block;
  color: var(--muted-2);
  font-size: 0.8rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.floating-card-1 {
  top: 36px;
  right: -18px;
  animation: floatY 5s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 42px;
  left: -12px;
  animation: floatY 6s ease-in-out infinite reverse;
}

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.trust-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
}

.trust-marquee-track {
  display: flex;
  gap: 48px;
  min-width: max-content;
  padding: 20px 0;
  color: var(--muted);
  font-weight: 700;
  animation: marquee 24s linear infinite;
}

.trust-marquee-track span {
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.solution-grid,
.pricing-grid,
.process-grid,
.showcase-top-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.solution-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.solution-card,
.pricing-card,
.process-card,
.feature-highlight-card {
  padding: 28px;
}

.solution-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.solution-card h3,
.pricing-card h3,
.process-card h3,
.feature-highlight-card h3,
.gallery-copy h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.solution-card p,
.process-card p,
.feature-highlight-card p,
.gallery-copy p {
  margin: 0;
  color: var(--muted);
}

.mini-points,
.pricing-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.mini-points li,
.pricing-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #dfe8f7;
}

.mini-points li::before,
.pricing-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.showcase-top-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}

.feature-highlight-card {
  min-height: 220px;
  overflow: hidden;
}

.mini-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #b79cff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.gallery-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-open {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.gallery-copy {
  padding: 22px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.9);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9998;
  padding: 24px;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pricing-toggle-label {
  color: var(--muted);
  font-weight: 600;
}

.pricing-switch {
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.pricing-switch-btn {
  min-width: 120px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-switch-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.pricing-card {
  position: relative;
}

.plan-name {
  display: inline-block;
  margin-bottom: 14px;
  color: #b79cff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 2.15rem;
  letter-spacing: -0.05em;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  margin-left: 4px;
}

.pricing-main {
  color: var(--text);
}

.plan-sub {
  margin: 0;
  color: var(--muted);
}

.featured {
  background:
    linear-gradient(180deg, rgba(25,0,255,0.11), rgba(66,18,163,0.08)),
    var(--panel-2);
  border-color: rgba(25,0,255,0.28);
  transform: translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-step {
  display: inline-block;
  margin-bottom: 12px;
  color: #9cc4ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(25,0,255,0.16);
  background:
    linear-gradient(135deg, rgba(66,18,163,0.18), rgba(25,0,255,0.14)),
    rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-copy h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.cta-copy p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
}

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

.site-footer {
  padding: 36px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 460px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-footer h4 {
  margin: 0 0 14px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-layout,
  .solution-grid,
  .pricing-grid,
  .gallery-grid,
  .footer-grid,
  .showcase-top-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { transform: none; }
  .hero-visual { min-height: auto; }
  .floating-card { display: none; }
  .cursor-glow { display: none; }
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-block; }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(5, 8, 15, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .dashboard-grid { grid-template-columns: 1fr; }

  .list-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .section { padding: 92px 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, var(--max)); }
  .hero-copy h1 { font-size: clamp(2.2rem, 11vw, 3.7rem); }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .solution-card,
  .pricing-card,
  .process-card,
  .gallery-copy,
  .feature-highlight-card,
  .cta-box,
  .dashboard-card-main {
    padding: 22px;
  }
}
