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

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  color: #111827;
  background-color: #e5e7eb;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background-image: linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.7),
      rgba(15, 23, 42, 0.92)
    ),
    url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(251, 191, 36, 0.18),
    transparent 55%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 980px;
  width: 100%;
  z-index: 1;
  padding: 32px 32px 32px 32px;
  border-radius: 28px;
  backdrop-filter: blur(18px);
  background: linear-gradient(145deg, #f9fafb, #fdf2f8);
  box-shadow:
    0 32px 80px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(148, 163, 184, 0.18);
  border: 1px solid rgba(248, 250, 252, 0.9);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #16a34a;
  background: rgba(134, 239, 172, 0.35);
  border: 1px solid rgba(22, 163, 74, 0.4);
  box-shadow: 0 0 18px rgba(134, 239, 172, 0.6);
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #4ade80, #22c55e);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.95);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 26px;
  align-items: flex-start;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 0%, rgba(248, 250, 252, 0.45), transparent 55%),
    url('assets/logo/logo.jpg') center/cover no-repeat,
    radial-gradient(circle at 70% 100%, rgba(56, 189, 248, 0.16), transparent 55%);
  border: 1px solid rgba(148, 163, 184, 0.8);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 0 32px rgba(56, 189, 248, 0.6);
}

.hero__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__brand-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.hero__title {
  margin-top: 4px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #111827;
}

.hero__subtitle {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

.hero__subtitle strong {
  color: #b91c1c;
}

.hero__list {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr);
  gap: 6px;
  margin-top: 6px;
}

.hero__list li {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  background: radial-gradient(circle at 0 0, rgba(251, 207, 232, 0.7), transparent 55%);
  border-radius: 999px;
  padding: 7px 14px;
  border: 1px solid rgba(248, 187, 208, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(248, 187, 208, 0.55);
}

.hero__right {
  padding: 18px 18px 20px 18px;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(252, 231, 243, 0.9), transparent 65%),
    linear-gradient(135deg, #ffffff, #fef3c7);
  border: 1px solid rgba(254, 202, 202, 0.9);
  box-shadow:
    0 22px 40px rgba(248, 187, 208, 0.65),
    0 0 40px rgba(254, 202, 202, 0.8);
}

.hero__contacts-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9f1239;
}

.hero__contacts-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn__icon {
  margin-right: 8px;
  font-size: 16px;
}

.btn__text {
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.9),
    0 0 25px rgba(59, 130, 246, 0.75);
}

.btn--viber {
  background: radial-gradient(circle at 0 0, #a855f7, #7e22ce);
  color: #f9fafb;
  border-color: rgba(192, 132, 252, 0.9);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.6);
}

.btn--viber:hover {
  background: radial-gradient(circle at 0 0, #c084fc, #8b5cf6);
}

.btn--instagram {
  background: linear-gradient(135deg, #ec4899, #f97316, #facc15);
  color: #f9fafb;
  border-color: rgba(248, 250, 252, 0.6);
  box-shadow: 0 0 24px rgba(248, 113, 113, 0.6);
}

.btn--instagram:hover {
  filter: brightness(1.05);
}

.btn--telegram {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  color: #e0f2fe;
  border-color: rgba(125, 211, 252, 0.9);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.7);
}

.btn--telegram:hover {
  filter: brightness(1.06);
}

@media (max-width: 640px) {
  .hero {
    padding: 18px 14px;
  }

  .hero__content {
    padding: 20px 16px 22px 16px;
    border-radius: 22px;
  }

  .hero__brand {
    justify-content: center;
  }

  .hero__logo-circle {
    width: 72px;
    height: 72px;
  }

  .hero__title {
    letter-spacing: 0.12em;
    text-align: center;
  }

  .hero__subtitle {
    text-align: center;
  }

  .hero__left {
    align-items: center;
  }

  .hero__list {
    width: 100%;
  }

  .hero__list li {
    text-align: left;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .hero__right {
    margin-top: 4px;
  }

  .btn {
    width: 100%;
  }
}




