:root {
  --bg: #0b1020;
  --panel: #0f1731;
  --panel-2: #0c132b;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.10);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 14px;
  --brand: #3b82f6;
  --brand-2: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --container: 1120px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-width: 375px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 600px at 15% -10%, rgba(59, 130, 246, 0.35), transparent 60%), radial-gradient(900px 600px at 85% 10%, rgba(34, 197, 94, 0.25), transparent 55%), radial-gradient(900px 600px at 55% 110%, rgba(245, 158, 11, 0.15), transparent 55%), var(--bg);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, auto;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  image-rendering: auto;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  transition: opacity 0.3s ease;
}
img[loading=lazy] {
  opacity: 0;
}
img[loading=lazy]:not([src]) {
  opacity: 1;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #0b1020;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

@keyframes phoneColorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding: 44px 0;
}
.section--alt {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: clamp(22px, 2.7vw, 32px);
  letter-spacing: -0.03em;
}

.section__desc {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.05s ease ease;
  transition: background, border-color, box-shadow 0.15s ease ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand), rgba(59, 130, 246, 0.65));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.16);
}
.btn--primary:hover {
  box-shadow: 0 18px 55px rgba(59, 130, 246, 0.22);
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}
.btn--lg {
  padding: 12px 14px;
  border-radius: 16px;
}
.btn--full {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.pill__kpi {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}
.pill__label {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.topbar {
  background: rgba(8, 12, 26, 0.65);
  border: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 8px;
}
.topbar__brand {
  flex: 0 0 auto;
  min-width: 0;
}
.topbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand__mark {
  display: grid;
  place-items: center;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.18);
}
.brand__mark--img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.brand__text {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.brand__name {
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__tag {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.24), rgba(34, 197, 94, 0.22), rgba(59, 130, 246, 0.24));
  background-size: 260% 260%;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: border-color, box-shadow, transform, background-position 0.22s ease ease;
}
.phone:hover {
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.35) inset;
  transform: translateY(-3px) scale(1.01);
  background-position: 100% 50%;
  animation: phoneColorShift 1.25s linear infinite;
}
.phone.form__phone {
  display: block;
  width: 100%;
  text-align: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  justify-content: center;
}
.menu__link {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.menu__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  padding: 34px 0 10px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 26px;
  align-items: start;
}
.hero__badge {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}
.hero__title {
  margin: 14px 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card--clickable {
  cursor: pointer;
}
.hero-card--clickable:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-card--clickable:hover .hero-card__note {
  background-position: 100% 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 30px rgba(59, 130, 246, 0.28);
  animation: phoneColorShift 1.3s linear infinite;
}
.hero-card__img {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
}
.hero-card__note {
  padding: 14px 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.22), rgba(34, 197, 94, 0.2), rgba(59, 130, 246, 0.22));
  background-size: 260% 260%;
  transition: background-position, box-shadow 0.35s ease ease;
}
.hero-card__note-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hero-card__note-text {
  color: var(--muted);
  font-size: 14px;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(500px 200px at 30% 20%, rgba(59, 130, 246, 0.22), transparent 55%), radial-gradient(500px 200px at 70% 70%, rgba(34, 197, 94, 0.18), transparent 55%), rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  image-rendering: auto;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .img-placeholder img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
.img-placeholder__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.img-placeholder__hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.img-placeholder--small {
  padding: 12px;
}
.img-placeholder__hero {
  height: 100%;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}
.img-placeholder__hero img {
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
.img-placeholder__hero img:hover {
  transform: scale(1.02);
}

.cards {
  display: grid;
  gap: 12px;
}
.cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  transition: transform, border-color, background, box-shadow 0.22s ease ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.48);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}
.card:hover .card__icon {
  background: rgba(59, 130, 246, 0.28);
  border-color: rgba(59, 130, 246, 0.65);
}
.card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(59, 130, 246, 0.35);
  font-weight: 900;
}
.card__title {
  margin: 12px 0 6px;
  letter-spacing: -0.02em;
}
.card__text {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.card__btn {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  padding: 10px 12px;
  cursor: pointer;
}
.card__btn:hover {
  background: rgba(255, 255, 255, 0.07);
}

.callout {
  margin-bottom: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(59, 130, 246, 0.1));
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.callout__title {
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.callout__text {
  margin: 0;
  color: var(--muted);
}

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

.feature {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.feature__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.feature__text {
  color: var(--muted);
  font-size: 14px;
}

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

.review {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}
.review__stars {
  color: rgba(245, 158, 11, 0.98);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.review__text {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.85);
}
.review__author {
  color: var(--muted);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.contact__item {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.contact__label {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.contact__value {
  display: block;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.contact__value + .contact__value {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}
.form--compact {
  padding: 14px;
}
.form__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.form__row + .form__row {
  margin-top: 10px;
}
.form .phone {
  display: block;
  width: 100%;
  text-align: center;
}

.field {
  display: grid;
  gap: 6px;
}
.field__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
.field__input {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
}
.field__input::placeholder {
  color: var(--muted-2);
}
.field__input:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  user-select: none;
}
.check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check__box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  margin-top: 2px;
}
.check__text {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.check__input:checked + .check__box {
  background: rgba(34, 197, 94, 0.22);
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.form__hint {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 12px;
}

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

.regions-link {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.16);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.regions-link:hover {
  background: rgba(59, 130, 246, 0.26);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 26, 0.55);
  padding: 18px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__brand {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.footer__meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.footer__right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__link {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 800;
}
.footer__link:hover {
  background: rgba(255, 255, 255, 0.07);
}

.modal[hidden] {
  display: none;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal__panel {
  position: relative;
  width: min(560px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 23, 49, 0.92);
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(12px);
}
.modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.modal__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-right: 42px;
  margin-bottom: 6px;
}
.modal__text {
  color: var(--muted);
  margin: 0 0 12px;
}

@media (max-width: 980px) {
  .topbar__inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .topbar__brand {
    flex: 1 1 auto;
  }
  .topbar__cta {
    margin-left: auto;
  }
  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 2px;
  }
  .menu__link {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .topbar__inner {
    flex-wrap: nowrap;
    row-gap: 10px;
  }
  .topbar__cta {
    margin-left: auto;
  }
  .topbar__cta .btn--ghost {
    display: none;
  }
  .menu {
    display: none;
  }
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .regions-links {
    grid-template-columns: 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .topbar__inner {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .topbar__brand {
    flex: 1 1 100%;
  }
  .topbar__cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin: 10px 0 10px 0;
  }
  .brand__name {
    font-size: 14px;
  }
  .brand__tag {
    font-size: 11px;
  }
  .topbar__cta .btn {
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 13px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
  .hero {
    padding-top: 24px;
  }
  .hero__title {
    font-size: clamp(26px, 8.4vw, 34px);
  }
  .hero__subtitle {
    font-size: 15px;
  }
  .cards--4 {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .modal__panel {
    border-radius: 16px;
    padding: 14px;
  }
}
@media (max-width: 375px) {
  .hero__copy,
  .section__head,
  .callout__left,
  .contact__left,
  .footer__left {
    text-align: center;
  }
  .hero__actions,
  .hero__trust {
    justify-content: center;
  }
  .contact__item {
    text-align: center;
  }
  .contact__value {
    align-items: center;
  }
  .footer__inner {
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}/*# sourceMappingURL=main.css.map */