:root {
  --bg: #070a12;
  --bg2: #0a0f1d;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f2f5ff;
  --muted: #a9b4d6;
  --primary: #7c5cff;
  --primary2: #1ad6ff;
  --good: #2ee59d;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  --shadow2: 0 12px 36px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1180px;
  --font:
    ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: var(--font);
  background:
    radial-gradient(
      900px 420px at 20% -10%,
      rgba(26, 214, 255, 0.2),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 95% 0%,
      rgba(124, 92, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), #05070d 70%, #04050a);
  color: var(--text);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.no-scroll {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Topbar */
.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 18, 0.65);
  backdrop-filter: blur(12px);
}
.topbar__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 245, 255, 0.92);
  font-size: 13px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 16px rgba(46, 229, 157, 0.45);
}
.topbar__link {
  font-weight: 800;
  font-size: 13px;
  color: rgba(242, 245, 255, 0.92);
}
.topbar__link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 10, 18, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: rgba(7, 10, 18, 0.75);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  color: #edebff;
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand__text b {
  font-size: 14px;
  letter-spacing: 0.2px;
}
.brand__text span {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav__link {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: rgba(242, 245, 255, 0.88);
  font-weight: 800;
  font-size: 13px;
}
.nav__link:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.nav__link.is-active {
  border-color: rgba(124, 92, 255, 0.4);
  background: rgba(124, 92, 255, 0.1);
  color: #fff;
}

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(0px);
}
.btn--primary {
  border-color: rgba(124, 92, 255, 0.45);
  background: linear-gradient(
    180deg,
    rgba(124, 92, 255, 0.25),
    rgba(124, 92, 255, 0.1)
  );
}
.btn--ghost {
  background: transparent;
}
.btn--full {
  width: 100%;
}
.btn__icon {
  display: inline-flex;
}

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 10px;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  margin: 5px 0;
  opacity: 0.9;
}

/* Mobile menu */
.mobile {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
}
.mobile.is-open {
  display: flex;
}
.mobile__panel {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 30, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: #fff;
}
.mobile__links {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.mobile__link {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  margin: 6px 0;
}
.mobile__link.is-active {
  border-color: rgba(124, 92, 255, 0.45);
  background: rgba(124, 92, 255, 0.1);
}
.mobile__cta {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 420px at 20% 30%,
      rgba(26, 214, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 420px at 85% 30%,
      rgba(124, 92, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(7, 10, 18, 0.65),
      rgba(7, 10, 18, 0.85) 60%,
      rgba(7, 10, 18, 0.92)
    );
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
  padding: 34px 0;
}
.hero__content {
  max-width: 680px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  font-size: 12px;
  color: rgba(242, 245, 255, 0.92);
}
.badge__icon {
  color: #edebff;
  display: inline-flex;
}
.h1 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.7px;
}
.h2 {
  font-size: 28px;
  letter-spacing: -0.4px;
}
.h3 {
  font-size: 18px;
  letter-spacing: -0.2px;
}
.lead {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(242, 245, 255, 0.84);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.stat {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.stat b {
  display: block;
  font-size: 13px;
}
.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero__card {
  justify-self: end;
  max-width: 430px;
  width: 100%;
}
.glass {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 30, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 18px;
}
.mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

/* Inputs */
.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  outline: none;
}
.input:focus {
  border-color: rgba(26, 214, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(26, 214, 255, 0.12);
}
.label {
  font-size: 12px;
  color: rgba(242, 245, 255, 0.82);
  font-weight: 800;
  margin-bottom: 6px;
  display: block;
}
.tiny {
  font-size: 12px;
  line-height: 1.5;
}
.muted {
  color: var(--muted);
}
.link {
  color: #edebff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sections */
.section {
  padding: 56px 0;
}
.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}
.section__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
}
.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(124, 92, 255, 0.1);
  margin-bottom: 12px;
}

.ctaStrip {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(26, 214, 255, 0.1),
    rgba(124, 92, 255, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow2);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}
.shot {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  position: relative;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.shot:hover img {
  transform: scale(1.07);
}

/* Page head */
.pagehead {
  padding: 34px 0 10px;
}
.pagehead__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cards for inner pages */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cardx {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
}
.cardx--img {
  padding: 0;
  overflow: hidden;
}
.cardx--img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.list__icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 229, 157, 0.12);
  border: 1px solid rgba(46, 229, 157, 0.25);
  font-weight: 900;
}

/* Services cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  display: grid;
  grid-template-columns: 360px 1fr;
}
.svc__media {
  height: 100%;
}
.svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 900;
  color: rgba(242, 245, 255, 0.9);
}

/* Contact */
.contactbox {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hint {
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form__row textarea.input {
  resize: vertical;
}

.mapwrap {
  margin-top: 12px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow2);
}
.mapwrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.55);
  backdrop-filter: blur(12px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 16px;
  align-items: start;
}
.footer__logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col b {
  font-size: 13px;
}
.footer__col a {
  color: rgba(242, 245, 255, 0.86);
  font-weight: 800;
  font-size: 13px;
}
.footer__col a:hover {
  text-decoration: underline;
}
.footer__note {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.footer__small {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(242, 245, 255, 0.55);
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social__btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Cookie banner */
.cookie {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(520px, calc(100% - 32px));
  display: none;
}
.cookie.is-show {
  display: block;
  animation: pop 0.25s ease;
}
.cookie__card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 30, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(26, 214, 255, 0.1);
}
.cookie__text {
  flex: 1;
}
.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.is-open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.modal__card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 30, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.modal__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__actions {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 900;
}
.toggle input {
  accent-color: var(--primary2);
}

/* Simple legal header */
.simpleHeader {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.75);
  backdrop-filter: blur(14px);
}
.simpleHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.legal {
  padding: 26px 0 56px;
}
.legal__card {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
}
.legal__card h2 {
  margin-top: 14px;
}
.legal__card ul {
  margin: 10px 0 0 18px;
  line-height: 1.7;
}
.legal__links {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Toast */
.toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 120;
  width: min(380px, calc(100% - 32px));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 30, 0.92);
  box-shadow: var(--shadow2);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
}
.toast.is-show {
  opacity: 1;
  transform: translateY(0);
}
.toast b {
  font-size: 13px;
}
.toast span {
  color: var(--muted);
  font-size: 12px;
}
.toast--ok {
  border-color: rgba(46, 229, 157, 0.22);
}
.toast--err {
  border-color: rgba(255, 99, 99, 0.22);
}

@keyframes pop {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 16px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 10px;
  }
  .hero__card {
    justify-self: stretch;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .svc {
    grid-template-columns: 1fr;
  }
  .cardx--img img {
    min-height: 240px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-block;
  }
  .btn.btn--ghost {
    display: none;
  }
  .btn.btn--primary {
    display: none;
  }
  .topbar__inner {
    flex-direction: column;
    padding: 16px;
  }
  .header__inner {
    padding: 16px;
  }
}
