:root {
  --bg: #f7faf5;
  --card: rgba(255, 255, 255, 0.94);
  --text: #102012;
  --muted: #5d6b5d;
  --green: #8ed61f;
  --green-dark: #27680f;
  --line: rgba(28, 84, 20, 0.14);
  --shadow: 0 24px 70px rgba(20, 54, 12, 0.12);
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(142, 214, 31, 0.16), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(11, 184, 232, 0.10), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
}

.coming-soon {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 18px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.hero::before {
  width: 560px;
  height: 560px;
  left: -260px;
  bottom: -260px;
  border: 1px solid rgba(39, 104, 15, 0.18);
  border-radius: 50%;
}

.hero::after {
  width: 420px;
  height: 420px;
  right: -210px;
  top: -210px;
  border: 1px solid rgba(11, 184, 232, 0.18);
  border-radius: 50%;
}

.hero__decor {
  position: absolute;
  width: 320px;
  height: 190px;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 22%, var(--line) 22% 23%, transparent 23%),
    linear-gradient(0deg, transparent 0 48%, var(--line) 48% 49%, transparent 49%);
}

.hero__decor--left {
  left: 3vw;
  bottom: 12vh;
  transform: skewX(-18deg);
}

.hero__decor--right {
  right: 4vw;
  top: 16vh;
  transform: skewX(-18deg) rotate(180deg);
}

.hero__card {
  position: relative;
  width: min(100%, 1050px);
  padding: clamp(28px, 5vw, 64px);
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(39, 104, 15, 0.12);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero__logo-wrap {
  max-width: 560px;
  margin: 0 auto 26px;
}

.hero__logo {
  display: block;
  width: 100%;
  height: auto;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(100%, 420px);
  margin: 0 auto 26px;
  color: var(--green-dark);
}

.hero__divider span {
  display: block;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(39, 104, 15, 0.5), transparent);
}

.hero__divider svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  filter: drop-shadow(0 0 10px rgba(142, 214, 31, 0.45));
}

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero__text {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.35;
  color: var(--muted);
}

.contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 38px auto 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 22px;
  text-align: left;
  color: var(--text);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(39, 104, 15, 0.13);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(20, 54, 12, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 214, 31, 0.7);
  box-shadow: 0 18px 42px rgba(20, 54, 12, 0.13);
}

.contact-card__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--green-dark);
  background: rgba(142, 214, 31, 0.14);
  border: 1px solid rgba(142, 214, 31, 0.45);
  border-radius: 50%;
}

.contact-card__icon svg {
  width: 28px;
  height: 28px;
}

.contact-card__label,
.contact-card__value {
  display: block;
}

.contact-card__label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card__value {
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.2;
  color: var(--green-dark);
  word-break: break-word;
}

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

  .hero__card {
    border-radius: 24px;
  }

  .contacts {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: auto;
  }

  .hero__decor {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero__card {
    padding: 24px 16px;
  }

  .contact-card {
    padding: 18px;
    gap: 12px;
  }

  .contact-card__icon {
    width: 50px;
    height: 50px;
  }

  .contact-card__icon svg {
    width: 24px;
    height: 24px;
  }
}
