:root {
  --bg: #0b0b12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.66);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --accent: #7c3aed;
  --accent2: #22d3ee;
  --good: #22c55e;
  --warn: #f59e0b;
  --bad: #ef4444;
  --radius: 16px;
  --radiusSm: 12px;
  --ring: 0 0 0 3px rgba(124, 58, 237, 0.35);
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

html[data-theme="light"] {
  --bg: #f7f7fb;
  --panel: rgba(10, 10, 30, 0.05);
  --panel2: rgba(10, 10, 30, 0.07);
  --text: rgba(10, 10, 30, 0.92);
  --muted: rgba(10, 10, 30, 0.64);
  --border: rgba(10, 10, 30, 0.12);
  --shadow: 0 18px 50px rgba(10, 10, 30, 0.12);
  --ring: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(800px 500px at 85% 10%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(900px 600px at 30% 90%, rgba(124, 58, 237, 0.12), transparent 55%),
    var(--bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  transform: translateY(-160%);
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--ring);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 0.92rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.16), rgba(34, 211, 238, 0.14));
  border: 1px solid var(--border);
  color: var(--muted);
}

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0.1px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--panel2);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.btn--sm {
  padding: 9px 11px;
  border-radius: 11px;
  font-weight: 650;
}
.btn--primary {
  border-color: rgba(124, 58, 237, 0.45);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(34, 211, 238, 0.7));
  color: white;
}
.btn--primary:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.98), rgba(34, 211, 238, 0.78));
}
.btn--ghost {
  background: transparent;
}

.iconBtn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 140ms ease, transform 140ms ease;
}
.iconBtn:hover {
  transform: translateY(-1px);
  background: var(--panel2);
}
.iconBtn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 18, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 160ms ease, border-color 160ms ease;
}
html[data-theme="light"] .header {
  background: rgba(247, 247, 251, 0.75);
}
.header[data-elevate="true"] {
  background: rgba(10, 10, 18, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
}
.nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.nav__toggleLines {
  display: inline-block;
  width: 22px;
  height: 14px;
  background:
    linear-gradient(var(--text), var(--text)) 0 0/22px 2px no-repeat,
    linear-gradient(var(--text), var(--text)) 0 6px/22px 2px no-repeat,
    linear-gradient(var(--text), var(--text)) 0 12px/22px 2px no-repeat;
  opacity: 0.85;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__link {
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.nav__link:hover {
  color: var(--text);
  background: var(--panel);
  border-color: var(--border);
}

.hero {
  padding: 72px 0 28px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 54ch;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.kpi {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radiusSm);
  padding: 12px 12px;
}
.kpi__value {
  font-weight: 850;
  letter-spacing: 0.2px;
}
.kpi__label {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 2px;
}

.hero__art {
  position: relative;
  min-height: 420px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background:
    radial-gradient(260px 220px at 25% 30%, rgba(124, 58, 237, 0.32), transparent 65%),
    radial-gradient(280px 220px at 80% 25%, rgba(34, 211, 238, 0.22), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.card3d {
  position: absolute;
  inset: 18px 18px 18px 18px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.card3d__frame {
  width: min(440px, 100%);
  height: 320px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  transform: rotateX(7deg) rotateY(-10deg);
  overflow: hidden;
  position: relative;
}
html[data-theme="light"] .card3d__frame {
  background: rgba(255, 255, 255, 0.6);
}
.card3d__topbar {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
}
.dot--red {
  background: #ef4444;
}
.dot--yellow {
  background: #f59e0b;
}
.dot--green {
  background: #22c55e;
}
.card3d__content {
  position: relative;
  height: calc(100% - 46px);
  padding: 18px;
}
.shine {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 40%);
  transform: rotate(20deg);
  pointer-events: none;
}
.mock {
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.16), rgba(34, 211, 238, 0.1));
  overflow: hidden;
  display: grid;
  grid-template-rows: 30px 1fr 1.1fr;
  gap: 14px;
  padding: 16px;
}
.mock__title {
  width: 58%;
  height: 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0.85;
}
.mock__rows span {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.26);
  margin-bottom: 10px;
}
.mock__rows span:nth-child(2) {
  width: 88%;
}
.mock__rows span:nth-child(3) {
  width: 78%;
}
.mock__rows span:nth-child(4) {
  width: 64%;
}
.mock__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.mock__grid span {
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 64px 0;
}
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
html[data-theme="light"] .section--alt {
  background: linear-gradient(180deg, transparent, rgba(10, 10, 30, 0.03), transparent);
  border-top-color: rgba(10, 10, 30, 0.08);
  border-bottom-color: rgba(10, 10, 30, 0.08);
}
.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.section__head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing: -0.01em;
}
.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 14px;
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tile {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
html[data-theme="light"] .tile {
  box-shadow: 0 10px 30px rgba(10, 10, 30, 0.06);
}
.tile h3 {
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.tile p {
  margin: 0 0 12px;
  color: var(--muted);
}
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li {
  margin: 6px 0;
}

.callout {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
html[data-theme="light"] .callout {
  border-color: rgba(10, 10, 30, 0.12);
}
.callout h3 {
  margin: 0;
}
.callout p {
  margin: 6px 0 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}
.chip {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
}
.chip:hover {
  transform: translateY(-1px);
  background: var(--panel2);
  color: var(--text);
}
.chip.is-active {
  color: white;
  border-color: rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(34, 211, 238, 0.55));
}
.chip:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}
.shot {
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  position: relative;
  min-height: 220px;
}
html[data-theme="light"] .shot {
  background: rgba(10, 10, 30, 0.03);
  border-color: rgba(10, 10, 30, 0.12);
  box-shadow: 0 16px 44px rgba(10, 10, 30, 0.1);
}
.shot:hover .shot__img {
  transform: scale(1.02);
}
.shot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0001);
  transition: transform 180ms ease;
}
.shot__meta {
  position: absolute;
  inset: auto 12px 12px 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
html[data-theme="light"] .shot__meta {
  background: rgba(247, 247, 251, 0.75);
  border-color: rgba(10, 10, 30, 0.12);
}
.shot__title {
  font-weight: 780;
  letter-spacing: -0.01em;
}
.shot__subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.step h3 {
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.faq__content {
  margin-top: 10px;
  color: var(--muted);
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contactCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.contactCard h3 {
  margin: 0 0 6px;
}
.contactCard p {
  margin: 0 0 14px;
  color: var(--muted);
}
.contactList {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
}
.contactList a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-theme="light"] .footer {
  border-top-color: rgba(10, 10, 30, 0.08);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.footer__link:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--panel);
}

.modal,
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
}
.modal::backdrop,
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}
.modal__panel {
  width: min(720px, calc(100vw - 28px));
  margin: 8vh auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 18, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  padding: 18px;
}
html[data-theme="light"] .modal__panel {
  background: rgba(247, 247, 251, 0.85);
  border-color: rgba(10, 10, 30, 0.12);
  box-shadow: 0 30px 90px rgba(10, 10, 30, 0.18);
}
.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.modal__title {
  margin: 0;
  letter-spacing: -0.01em;
}
.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.modal__hint {
  margin: 12px 0 0;
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
}
.field span {
  color: var(--muted);
  font-size: 0.95rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 12px 12px;
  font: inherit;
}
html[data-theme="light"] .field input,
html[data-theme="light"] .field select,
html[data-theme="light"] .field textarea {
  background: rgba(10, 10, 30, 0.03);
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: rgba(124, 58, 237, 0.45);
}
.field__error {
  min-height: 18px;
  font-size: 0.88rem;
  color: rgba(239, 68, 68, 0.92);
}
.field--full {
  grid-column: 1 / -1;
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.lightbox__panel {
  width: min(980px, calc(100vw - 26px));
  margin: 6vh auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 18, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
}
html[data-theme="light"] .lightbox__panel {
  background: rgba(247, 247, 251, 0.88);
  border-color: rgba(10, 10, 30, 0.12);
  box-shadow: 0 30px 90px rgba(10, 10, 30, 0.18);
}
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.lightbox__img {
  width: 100%;
  height: min(70vh, 640px);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.18);
}
.lightbox__meta {
  padding: 14px 16px 16px;
  display: grid;
  gap: 2px;
}
.lightbox__title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__art {
    min-height: 360px;
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .shot {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .nav__menu {
    position: absolute;
    right: 20px;
    top: 66px;
    width: min(360px, calc(100vw - 40px));
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(10, 10, 18, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease;
  }
  html[data-theme="light"] .nav__menu {
    background: rgba(247, 247, 251, 0.92);
  }
  .nav__menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__link {
    width: 100%;
  }
  .hero__trust {
    grid-template-columns: 1fr;
  }
  .formGrid {
    grid-template-columns: 1fr;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
  .shot {
    grid-column: span 12;
    min-height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
