:root {
  --color-bg: #050505;
  --color-bg-alt: #101010;
  --color-bg-light: #ffffff;
  --color-primary: #ffffff;
  --color-primary-soft: rgba(255, 255, 255, 0.12);
  --color-accent: #ffffff;
  --color-text: #050505;
  --color-text-light: #ffffff;
  --color-muted: rgba(0, 0, 0, 0.7);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 18px 35px rgba(0, 0, 0, 0.4);
  --transition-base: 220ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top left, #1b1b1b 0, #050505 45%, #000 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.logo__subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.nav__link {
  color: #ffffff;
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width var(--transition-base);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--accent {
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.nav__link--accent::after {
  display: none;
}

.burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
  cursor: pointer;
}

.burger span {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.burger--active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.burger--active span:nth-child(2) {
  opacity: 0;
}

.burger--active span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 104px 0 80px;
  color: #ffffff;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 40px;
  align-items: center;
}

.hero__text h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__text p {
  margin: 0 0 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.btn {
  border-radius: 999px;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    background var(--transition-base), color var(--transition-base);
}

.btn--primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn--light {
  background: #ffffff;
  color: #000000;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat__value {
  font-size: 18px;
  font-weight: 600;
}

.stat__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.hero__card {
  background: rgba(0, 0, 0, 0.85);
  border-radius: var(--radius-xl);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  transform-origin: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    border-color var(--transition-base), background var(--transition-base);
}

.hero__card h2 {
  font-size: 18px;
  margin: 0 0 10px;
}

.hero__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.hero__card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.hero__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hero__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.92);
}

.section {
  padding: 64px 0;
  background: #050505;
  color: #ffffff;
}

.section--light {
  background: #ffffff;
  color: var(--color-text);
}

.section--magazine-bg {
  position: relative;
  overflow: hidden;
}

.section--magazine-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/1770297455.png") center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.section--magazine-bg > * {
  position: relative;
  z-index: 1;
}

.section--dark {
  background: #000000;
  color: #ffffff;
}

.section__title {
  font-size: 26px;
  margin: 0 0 32px;
  text-align: center;
}

.section__inner {
  display: grid;
  gap: 32px;
}

.section__inner--split {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  align-items: flex-start;
}

.section__inner--center {
  align-items: center;
}

.section__text h2 {
  font-size: 26px;
  margin: 0 0 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__text p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--color-muted);
}

.section__text--light p {
  color: rgba(255, 255, 255, 0.75);
}

.about__highlights {
  display: grid;
  gap: 18px;
}

.about__side {
  display: grid;
  gap: 18px;
}

.about__photo {
  margin: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: none;
  background: transparent;
}

.about__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about__photo figcaption {
  font-size: 12px;
  padding: 8px 12px 10px;
  color: var(--color-muted);
  background: #ffffff;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.section--dark .card {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}

.section:not(.section--light) .card {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 13px;
  color: var(--color-muted);
}

.section--dark .card p,
.section:not(.section--light) .card p {
  color: rgba(255, 255, 255, 0.8);
}

.card--accent {
  background: #ffffff;
  color: #000000;
}

.card--accent p {
  color: #000000;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services--split {
  display: grid;
  gap: 20px;
}

.services__group {
  border-radius: var(--radius-lg);
}

.services__group--light {
  background: #ffffff;
  color: #000000;
  padding: 20px 18px 18px;
}

.services__group--dark {
  padding: 20px 18px 18px;
  background: transparent;
}

.service-card {
  background: #000000;
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.services__group--light .service-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
  color: #000000;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 1;
  pointer-events: none;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.service-card p {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.services__group--light .service-card p {
  color: rgba(0, 0, 0, 0.8);
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.services__group--light .service-card ul {
  color: rgba(0, 0, 0, 0.65);
}

.service-card li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
}

.logistics__list h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.small {
  font-size: 11px;
  color: var(--color-muted);
}

.section--dark .small {
  color: rgba(255, 255, 255, 0.7);
}

.list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--color-muted);
}

.section--dark .list {
  color: rgba(255, 255, 255, 0.8);
}

.list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #000000;
}

.magazine__cta {
  max-width: 360px;
  margin-left: auto;
}

.magazine__cta--wide {
  max-width: 630px;
}

.form {
  display: grid;
  gap: 12px;
}

.form--compact {
  gap: 8px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form__field label {
  font-size: 12px;
  color: var(--color-muted);
}

.section--dark .form__field label {
  color: #cbd5f5;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base),
    background var(--transition-base);
}

.section--dark input,
.section--dark select,
.section--dark textarea {
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #000000;
  box-shadow: 0 0 0 1px var(--color-primary-soft);
  background: #ffffff;
}

.section--dark input:focus,
.section--dark select:focus,
.section--dark textarea:focus {
  background: #000000;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form__note {
  margin: 0;
}

.contacts__info p {
  margin: 0 0 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #000000;
  color: #ffffff;
  font-size: 15px;
  transition: background var(--transition-base), color var(--transition-base),
    box-shadow var(--transition-base), transform var(--transition-base);
}

.social-links a:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  transform: translateY(-1px);
}

.map-wrapper {
  max-width: 609px;
  width: 100%;
}

.google-map iframe {
  width: 609px;
  max-width: 100%;
  height: 309px;
  border-radius: 16px;
  overflow: hidden;
}

.embla__viewport {
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.embla__container {
  display: flex;
  align-items: stretch;
}

.embla__slide {
  flex: 0 0 auto;
  margin: 0 1rem;
  scroll-snap-align: center;
}

.embla {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.embla__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base),
    box-shadow var(--transition-base), transform var(--transition-base);
}

.embla__btn:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
  transform: translateY(-1px);
}

.slider-image .item-img img {
  display: block;
  width: 220px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.slider-image .item-img img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.footer {
  padding: 18px 0 22px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__note {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__inner--split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 10px 0;
  }

  .nav {
    position: absolute;
    top: 56px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.75);
    min-width: 190px;
    display: none;
  }

  .nav--open {
    display: flex;
  }

  .nav__link--accent {
    width: 100%;
    justify-content: center;
  }

  .burger {
    display: inline-flex;
  }

  .hero {
    padding-top: 80px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__card {
    order: -1;
  }

  .section {
    padding: 50px 0;
  }

  .section__inner--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .magazine__cta {
    max-width: 100%;
    margin: 0;
  }

  .services__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__text h1 {
    font-size: 26px;
  }

  .hero__stats {
    flex-direction: column;
  }

  .header__inner {
    gap: 10px;
  }

  .logo__subtitle {
    display: none;
  }
}

