:root {
  color-scheme: dark;
  --bg: #050507;
  --bg-soft: #0a0b10;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.7);
  --soft: rgba(255, 255, 255, 0.52);
  --accent1: #2F7CF6;
  --accent2: #7A5CFF;
  --green: #2F7CF6;
  --cyan: #00D2FF;
  --amber: #ffb84d;
  --red: #ff647c;
  --blue: #73a7ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  --radius: 14px;
  --max: 1180px;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 15% -10%, rgba(47, 124, 246, 0.18), transparent 60%),
    radial-gradient(800px 520px at 80% 10%, rgba(122, 92, 255, 0.16), transparent 60%),
    radial-gradient(900px 650px at 50% 110%, rgba(0, 210, 255, 0.10), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

img {
  max-width: 100%;
}

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

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(47, 124, 246, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 100;
  transform: translateY(-130%);
  padding: 10px 12px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(100% - 36px, 900px);
  margin-inline: auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left,
.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-left {
  gap: 18px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
}

.brand-word {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-word strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand-word span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.menu-open .nav-toggle span {
  background: transparent;
}

.menu-open .nav-toggle span::before {
  background: var(--text);
  transform: rotate(45deg);
}

.menu-open .nav-toggle span::after {
  background: var(--text);
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 15px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.105);
  border-color: var(--line-strong);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-color: transparent;
  box-shadow: 0 0 40px rgba(47, 124, 246, 0.18);
}

.btn.dark {
  background: #060808;
}

.btn.small {
  min-height: 38px;
  padding: 9px 11px;
  font-size: 0.9rem;
}

.btn.block {
  width: 100%;
}

.btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.hero {
  padding: 26px 0 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.surface,
.feature-card,
.price-card,
.work-card,
.legal-block,
.contact-method,
.faq-item,
.service-card,
.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.surface {
  padding: 28px;
}

.surface.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-height: auto;
  background:
    radial-gradient(500px 260px at 16% 0%, rgba(47, 124, 246, 0.18), transparent 60%),
    radial-gradient(520px 280px at 92% 15%, rgba(122, 92, 255, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.06);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 124, 246, 0.30);
  background: rgba(47, 124, 246, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker,
.estimator-kicker {
  margin-bottom: 16px;
}

.estimator-kicker {
  transform: translateY(-2px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent1), var(--cyan));
  box-shadow: 0 0 18px rgba(47, 124, 246, 0.42);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.hero-title {
  margin-bottom: 16px;
  max-width: 12ch;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 2.1rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 68ch;
}

.hero-soft-copy {
  max-width: 58ch;
  font-size: 1.01rem;
  line-height: 1.58;
}

.text-muted {
  color: var(--muted);
}

.text-soft {
  color: var(--soft);
}

.hero-actions,
.actions-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.proof-item {
  min-height: 80px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.proof-item strong {
  display: block;
  font-size: 1.34rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-landscape {
  margin-top: 12px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.hero-landscape img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-device {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
}

.device-showcase {
  min-height: 210px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 220px at 18% 16%, rgba(47, 124, 246, 0.20), transparent 60%),
    radial-gradient(420px 220px at 82% 18%, rgba(122, 92, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.18)),
    #07080c;
}

.device-showcase img {
  display: block;
  max-height: 250px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.25));
}

.payment-stack {
  display: grid;
  gap: 8px;
  min-width: 150px;
}

.payment-stack p {
  margin: 0;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-logos span {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 32px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.pay-logos img {
  display: block;
  max-height: 19px;
  width: auto;
}

.estimator {
  display: grid;
  gap: 14px;
  min-height: auto;
}

.estimator-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.estimator-head p {
  margin: 5px 0 0;
  color: var(--soft);
  font-size: 0.88rem;
}

.estimator-copy {
  max-width: 42ch;
  line-height: 1.5;
}

.badge,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 9px;
}

.badge.success,
.tag.success {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field.full,
.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 900;
}

select,
input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(47, 124, 246, 0.70);
}

.hint-box,
.price-result,
.notice {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.hint-box {
  display: none;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hint-box a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-result {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}

.price {
  display: block;
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 950;
}

.price.pop {
  animation: pricePop 0.32s ease both;
}

@keyframes pricePop {
  0% {
    opacity: 0.72;
    transform: translateY(4px) scale(0.98);
  }

  60% {
    transform: translateY(0) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.details {
  margin: 6px 0 0;
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.quote-actions .btn:first-child {
  grid-column: 1 / -1;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.section-head p {
  margin-bottom: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.feature-card,
.service-card,
.compare-card,
.faq-item,
.legal-block,
.contact-method {
  padding: 18px;
}

.service-card {
  min-height: 184px;
}

.service-card .tag,
.feature-card .tag {
  margin-bottom: 13px;
}

.feature-card p,
.service-card p,
.compare-card p,
.faq-item p,
.legal-block p {
  color: var(--muted);
  line-height: 1.62;
}

.feature-card p:last-child,
.service-card p:last-child,
.compare-card p:last-child,
.faq-item p:last-child,
.legal-block p:last-child {
  margin-bottom: 0;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 52px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  font-weight: 950;
}

.cta-band {
  padding: 22px;
  border: 1px solid rgba(47, 124, 246, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(47, 124, 246, 0.18), rgba(122, 92, 255, 0.12)),
    rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cta-band p {
  margin: 5px 0 0;
  color: var(--muted);
}

.filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.segment,
.pill {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.segment.active,
.pill.active {
  color: #fff;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-color: transparent;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  padding: 18px 0 8px;
}

.price-card {
  padding: 15px;
  overflow: hidden;
}

.price-card-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  min-height: 72px;
}

.model-title {
  font-size: 1.08rem;
  font-weight: 950;
}

.price-thumb {
  width: 74px;
  height: 74px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #07080c;
}

.price-lines {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
  font-size: 0.93rem;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span:first-child {
  color: var(--muted);
}

.price-row strong {
  text-align: right;
}

.card-note {
  min-height: 58px;
  margin-top: 12px;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  overflow: hidden;
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-card-body {
  padding: 16px;
}

.work-card-body p {
  color: var(--muted);
  line-height: 1.55;
}

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

.ba-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ba-stage {
  --pos: 54%;
  position: relative;
  height: 310px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(420px 220px at 20% 10%, rgba(47, 124, 246, 0.18), transparent 60%),
    radial-gradient(420px 220px at 85% 15%, rgba(122, 92, 255, 0.18), transparent 60%),
    #07080c;
}

.ba-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.ba-layer.after {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba-layer img {
  width: 92%;
  max-height: 96%;
  object-fit: contain;
}

.ba-layer.before img {
  filter: grayscale(0.58) contrast(1.08) brightness(0.64);
  transform: rotate(-2deg) translateX(-4px);
}

.ba-layer.before::after {
  content: "";
  position: absolute;
  inset: 8%;
  background:
    linear-gradient(130deg, transparent 31%, rgba(10, 10, 10, 0.72) 31.4%, transparent 32%),
    linear-gradient(42deg, transparent 51%, rgba(10, 10, 10, 0.52) 51.4%, transparent 52%),
    linear-gradient(102deg, transparent 66%, rgba(255, 255, 255, 0.8) 66.3%, transparent 66.8%),
    linear-gradient(18deg, transparent 39%, rgba(10, 10, 10, 0.45) 39.3%, transparent 39.8%);
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  transform: translateX(-1px);
  background: rgba(6, 16, 13, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.ba-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -53%);
  color: #fff;
  font-weight: 950;
}

.ba-labels {
  position: absolute;
  inset: 12px 12px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.ba-labels span {
  padding: 6px 8px;
  border-radius: var(--radius);
  background: rgba(6, 8, 8, 0.76);
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
}

.ba-range {
  position: absolute;
  inset: auto 14px 12px;
  width: calc(100% - 28px);
  accent-color: var(--accent1);
}

.ba-body {
  padding: 15px;
}

.ba-body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.gallery-note {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 184, 77, 0.32);
  background: rgba(255, 184, 77, 0.08);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 16px;
}

.card-lab-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.digital-card-shell {
  perspective: 1200px;
  min-height: 520px;
  display: grid;
}

.digital-card {
  position: relative;
  min-height: 520px;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.digital-card.is-flipped {
  transform: rotateY(180deg);
}

.digital-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  backface-visibility: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(420px 260px at 18% 12%, rgba(47, 124, 246, 0.24), transparent 60%),
    radial-gradient(380px 240px at 90% 16%, rgba(122, 92, 255, 0.22), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #07080c;
  box-shadow: var(--shadow);
  padding: 24px;
}

.digital-card-face.back {
  transform: rotateY(180deg);
}

.card-logo-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.card-logo-row img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.card-brand-title {
  margin: 22px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.card-chip-row,
.tool-grid,
.mini-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: var(--muted);
  font-weight: 850;
  font-size: 0.84rem;
}

.qr-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.24);
}

.qr-card canvas {
  width: 128px;
  height: 128px;
  border-radius: 10px;
  background: #fff;
}

.contact-builder {
  display: grid;
  gap: 12px;
}

.message-preview {
  min-height: 132px;
  white-space: pre-wrap;
  color: var(--muted);
  line-height: 1.48;
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-action {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 112px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.quick-action strong {
  font-size: 0.96rem;
}

.quick-action span {
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 200;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 11px 13px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 9, 14, 0.95);
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 900;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox.show {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.contact-method p {
  margin: 4px 0 0;
  color: var(--soft);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-row:last-child {
  border-bottom: 0;
}

.legal-row dt {
  color: var(--soft);
  font-weight: 900;
}

.legal-row dd {
  margin: 0;
  color: var(--muted);
}

.legal-row strong {
  color: var(--text);
}

.source-links a,
.inline-link,
.footer-links a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item details {
  display: grid;
  gap: 10px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 950;
}

.compare-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.screen-demo {
  min-height: 190px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 16px;
  display: grid;
  align-content: end;
}

.screen-demo.oled {
  background:
    linear-gradient(135deg, #000 0%, #010310 45%, #2F7CF6 46%, #7A5CFF 72%, #00D2FF 100%);
}

.screen-demo.lcd {
  background:
    linear-gradient(135deg, #22242b 0%, #485057 45%, #315c94 46%, #665aaf 72%, #83b9d8 100%);
}

.screen-demo span {
  width: fit-content;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: 950;
}

.site-footer {
  padding: 26px 0 42px;
  color: var(--soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  font-weight: 950;
  box-shadow: var(--shadow);
}

.to-top.show {
  display: grid;
}

.empty-state {
  display: none;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.empty-state.show {
  display: block;
}

@media (max-width: 1040px) {
  .hero-grid,
  .contact-grid,
  .card-lab-grid {
    grid-template-columns: 1fr;
  }

  .surface.hero-copy,
  .estimator {
    min-height: auto;
  }

  .grid-4,
  .ba-grid,
  .quick-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 70px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-word span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(var(--nav-height) + 8px);
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 11, 12, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }

  .menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-actions .btn.dark {
    display: none;
  }

  h1,
  .hero-title {
    max-width: 13ch;
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .proof-strip,
  .grid-3,
  .grid-4,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .wrap,
  .narrow {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 28px;
  }

  .surface {
    padding: 18px;
  }

  h1,
  .hero-title {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .actions-row .btn,
  .button-row .btn,
  .cta-band .btn,
  .nav-actions .btn.primary {
    width: 100%;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .btn.primary {
    display: none;
  }

  .form-grid,
  .proof-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .quick-action-grid,
  .work-grid,
  .ba-grid,
  .legal-grid,
  .compare-visual {
    grid-template-columns: 1fr;
  }

  .hero-device {
    grid-template-columns: 1fr;
  }

  .payment-stack {
    min-width: 0;
  }

  .price-line {
    align-items: start;
    flex-direction: column;
  }

  .quote-actions,
  .quote-actions .btn:first-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .ba-stage {
    height: 280px;
  }

  .digital-card,
  .digital-card-shell {
    min-height: 560px;
  }

  .digital-card-face {
    padding: 18px;
  }

  .qr-card {
    grid-template-columns: 1fr;
  }

  .contact-method {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
