:root,
[data-theme="light"] {
  --font-body: 'Satoshi', 'Inter', sans-serif;
  --font-display: 'Cabinet Grotesk', 'Satoshi', sans-serif;
  --text-xs: clamp(.75rem, .7rem + .25vw, .875rem);
  --text-sm: clamp(.875rem, .8rem + .35vw, 1rem);
  --text-base: clamp(1rem, .95rem + .25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + .75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --bg: #f7f6f2;
  --surface: #fbfbf9;
  --surface-2: #f3f0ec;
  --surface-3: #ece8f3;
  --text: #17141f;
  --muted: #655f78;
  --line: rgba(23, 20, 31, .1);
  --primary: #6c37ff;
  --primary-2: #a24cff;
  --accent: #ff9800;
  --accent-2: #ff7a00;
  --success: #3bb273;
  --shadow: 0 16px 45px rgba(17, 12, 31, .08);
  --radius: 24px;
  --radius-sm: 16px;
}

[data-theme="dark"] {
  --bg: #0b0914;
  --surface: #131022;
  --surface-2: #1a1530;
  --surface-3: #211b3d;
  --text: #f7f4ff;
  --muted: #b4aacd;
  --line: rgba(255, 255, 255, .09);
  --primary: #7b42ff;
  --primary-2: #bf4cff;
  --accent: #ff9800;
  --accent-2: #ff7a00;
  --success: #57d18b;
  --shadow: 0 22px 60px rgba(0, 0, 0, .45);
}

*,
:before,
:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  background: radial-gradient(circle at top left, rgba(123, 66, 255, .16), transparent 30%), radial-gradient(circle at 85% 12%, rgba(255, 152, 0, .12), transparent 24%), var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip:focus {
  left: var(--space-4);
  top: var(--space-4);
  z-index: 999;
  background: var(--accent);
  padding: var(--space-3) var(--space-4);
  border-radius: 999px;
  color: #fff;
}

#progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 120;
}

#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .7;
  z-index: 0;
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 66, 255, .12), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: .3s ease;
}

header.scrolled {
  background: rgba(11, 9, 20, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

[data-theme="light"] header.scrolled {
  background: rgba(247, 246, 242, .82);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(123, 66, 255, .18);
}

.brand span {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: var(--text-sm);
  color: var(--muted);
  position: relative;
  padding: .3rem 0;
}

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

.nav-links a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: .25s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: none;
  min-height: 46px;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  color: #fff;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(255, 122, 0, .25);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(123, 66, 255, .24);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  padding: 10rem 0 5rem;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--space-12);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255, 152, 0, .12);
  border: 1px solid rgba(255, 152, 0, .25);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 5.4rem);
  line-height: 1.02;
  margin: 1.1rem 0 1rem;
  max-width: 12ch;
}

.gradient-text {
  background: linear-gradient(135deg, var(--text), var(--primary-2) 70%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 62ch;
  color: var(--muted);
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.mini-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.mini-card span {
  font-size: var(--text-xs);
  color: var(--muted);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(123, 66, 255, .18), rgba(255, 152, 0, .06) 55%, var(--surface));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel:before {
  content: '';
  position: absolute;
  inset: auto -10% -25% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 152, 0, .2), transparent 70%);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(87, 209, 139, .12);
  color: var(--success);
  font-size: var(--text-xs);
  font-weight: 700;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.spec {
  padding: 1rem;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.spec .label {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.spec .value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-top: .25rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-head {
  display: grid;
  gap: .9rem;
  margin-bottom: 2.2rem;
  max-width: 760px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
  margin-inline: auto;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.08;
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
}

.service-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-card.large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: .25rem 0 .6rem;
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: var(--text-sm);
}

.service-card ul {
  display: grid;
  gap: .7rem;
  margin: 1rem 0 1.4rem;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: var(--text-sm);
  color: var(--muted);
}

.service-card li:before {
  content: '•';
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.service-card .badge {
  display: inline-flex;
  width: max-content;
  padding: .5rem .75rem;
  border-radius: 999px;
  background: rgba(123, 66, 255, .12);
  color: #cdb4ff;
  font-size: var(--text-xs);
  font-weight: 700;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(123, 66, 255, .22), rgba(255, 152, 0, .16));
  font-size: 1.25rem;
}

.feature h3 {
  margin: .1rem 0 .45rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.popular {
  outline: 1px solid rgba(255, 152, 0, .35);
  transform: translateY(-4px);
}

.pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(255, 152, 0, .15);
  font-size: var(--text-xs);
  color: var(--accent);
  font-weight: 700;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 .55rem;
}

.price {
  display: flex;
  align-items: end;
  gap: .35rem;
  margin-bottom: 1rem;
}

.price strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.price span {
  font-size: var(--text-sm);
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: .75rem;
  margin: 1rem 0 1.35rem;
}

.price-card li {
  font-size: var(--text-sm);
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

.price-card li:before {
  content: '✓';
  color: var(--success);
  font-weight: 900;
}

.custom-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.2rem;
  align-items: start;
}

.custom-builder,
.info-panel {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.custom-builder h3,
.info-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 .5rem;
}

.custom-builder p,
.info-panel p {
  margin: .2rem 0 1.15rem;
  color: var(--muted);
  font-size: var(--text-sm);
}

.config-grid {
  display: grid;
  gap: 1rem;
}

.range-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: 22px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.range-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: .7rem;
}

.range-head strong {
  font-size: var(--text-sm);
}

.range-head span {
  font-size: var(--text-xs);
  color: var(--accent);
  font-weight: 800;
}

input[type=range] {
  width: 100%;
  accent-color: var(--accent);
}

.summary {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(123, 66, 255, .18), rgba(255, 152, 0, .12));
  border: 1px solid rgba(255, 255, 255, .08);
}

.summary-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: .75rem;
}

.summary-top h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.summary-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  font-size: var(--text-sm);
  color: var(--muted);
}

.tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.tab-btn {
  min-height: 44px;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 700;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(123, 66, 255, .22);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fade .35s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.editorial {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.story {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 1.7rem;
  box-shadow: var(--shadow);
}

.story p {
  color: var(--muted);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.1rem;
}

.kpi {
  padding: 1rem;
  border-radius: 22px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.kpi strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.kpi span {
  font-size: var(--text-xs);
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.quote {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: var(--text-sm);
}

.quote strong {
  display: block;
}

.quote span {
  font-size: var(--text-xs);
  color: var(--muted);
}

.faq {
  display: grid;
  gap: .85rem;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-weight: 700;
  background: transparent;
  border: 0;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-a > div {
  overflow: hidden;
  color: var(--muted);
  padding: 0 1.2rem;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-a > div {
  padding: 0 1.2rem 1.15rem;
}

footer {
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, var(--surface));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-col {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.2rem;
}

.footer-col h4 {
  margin: 0 0 .85rem;
  font-size: var(--text-sm);
}

.footer-col li {
  margin: .55rem 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.footer-brand p {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: .9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: var(--muted);
  font-size: var(--text-xs);
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.floaty {
  animation: floatY 5s ease-in-out infinite;
}

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

#toTop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
  box-shadow: 0 18px 34px rgba(255, 122, 0, .22);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 80;
}

#toTop.show {
  opacity: 1;
  pointer-events: auto;
}

.hero-grid {
  perspective: 1200px;
}

.service-card,
.price-card,
.feature,
.quote,
.story,
.mini-card,
.hero-panel,
.custom-builder,
.info-panel {
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:before,
.price-card:before,
.feature:before,
.quote:before,
.story:before,
.hero-panel:after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0), rgba(255, 152, 0, .16));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-card:hover,
.price-card:hover,
.feature:hover,
.quote:hover,
.story:hover,
.mini-card:hover,
.hero-panel:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .04);
}

.hero-panel:after {
  inset: auto auto -50px -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 66, 255, .16), transparent 70%);
  padding: 0;
  -webkit-mask: none;
}

.mesh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}

.mesh-1 {
  width: 220px;
  height: 220px;
  background: rgba(123, 66, 255, .18);
  top: 8%;
  left: 4%;
  animation: orbMove 12s ease-in-out infinite;
}

.mesh-2 {
  width: 180px;
  height: 180px;
  background: rgba(255, 152, 0, .16);
  top: 28%;
  right: 8%;
  animation: orbMove 16s ease-in-out infinite reverse;
}

.mesh-3 {
  width: 240px;
  height: 240px;
  background: rgba(191, 76, 255, .10);
  bottom: 14%;
  left: 18%;
  animation: orbMove 18s ease-in-out infinite;
}

@keyframes orbMove {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

.shine-line {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}

.shine-line:before {
  content: '';
  position: absolute;
  top: -20%;
  left: -40%;
  width: 30%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  transform: rotate(18deg);
  animation: scan 9s linear infinite;
}

@keyframes scan {
  0% {
    left: -40%;
  }
  100% {
    left: 140%;
  }
}

.parallax-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(123, 66, 255, .14);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #dacaff;
  font-size: var(--text-xs);
  font-weight: 700;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.stat-glass strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.stat-glass span {
  font-size: var(--text-xs);
  color: var(--muted);
}

@media (max-width: 780px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .custom-wrap,
  .editorial,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid .large {
    grid-row: auto;
  }
  .cards-4,
  .offer-grid,
  .trust-grid,
  .testimonials,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    top: 5.2rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(19, 16, 34, .96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-btn {
    display: grid;
    place-items: center;
  }
  .hero {
    padding-top: 8.5rem;
    min-height: auto;
  }
  .hero h1 {
    max-width: none;
  }
  .hero-meta,
  .spec-grid,
  .summary-list,
  .kpi-row,
  .cards-4,
  .offer-grid,
  .trust-grid,
  .testimonials,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-actions .btn-ghost {
    display: none;
  }
  .cursor-glow {
    display: none;
  }
}
