.section-contacts-hero {
  background-color: var(--bg);
  padding: 100px 0 40px;
}
@media (min-width: 1200px) {
  .section-contacts-hero {
    padding-top: 148px;
  }
}

.contacts-hero__title {
  font-family: var(--family-titles);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 40px;
  line-height: 1.1;
}
@media (min-width: 1200px) {
  .contacts-hero__title {
    font-size: 56px;
  }
}

.section-contacts-info {
  background-color: var(--bg);
  padding: 0 0 80px;
}
@media (min-width: 1200px) {
  .section-contacts-info {
    padding-bottom: 120px;
  }
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1200px) {
  .contacts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}

.contacts__column {
  display: flex;
  flex-direction: column;
}

.contacts__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--surface-border);
}

.contacts__item-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--cyan);
}
.contacts__item-icon svg {
  width: 20px;
  height: 20px;
}

.contacts__item-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.contacts__item-corner_tl {
  top: 0;
  left: 0;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.contacts__item-corner_tr {
  top: 0;
  right: 0;
  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
}

.contacts__item-corner_bl {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.contacts__item-corner_br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
}

.contacts__item-label {
  color: var(--gray-dim);
  font-family: var(--family-mono);
  font-size: var(--font-size-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contacts__item-value {
  color: var(--white);
  font-family: var(--family-mono);
  font-size: var(--font-size-small);
}
.contacts__item-value a {
  color: inherit;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .contacts__item-value a:hover {
    color: var(--cyan);
  }
}

.contacts__schedule {
  padding: 24px;
  border: 1px solid var(--surface-border);
  margin-top: 8px;
}

.contacts__schedule-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--cyan);
  font-family: var(--family-mono);
  font-size: var(--font-size-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contacts__schedule-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  animation: schedule-status-glow 2.4s ease-in-out infinite;
}
.contacts__schedule-status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background-color: var(--green);
  animation: schedule-status-dot 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .contacts__schedule-status {
    animation: none;
  }
  .contacts__schedule-status::before {
    animation: none;
  }
}

@keyframes schedule-status-glow {
  0%, 100% {
    text-shadow: 0 0 4px rgba(74, 222, 128, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.9), 0 0 18px rgba(74, 222, 128, 0.4);
  }
}
@keyframes schedule-status-dot {
  0%, 100% {
    opacity: 0.5;
    box-shadow: 0 0 4px rgba(74, 222, 128, 0.4);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 9px rgba(74, 222, 128, 0.9);
  }
}
.contacts__schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--surface-border);
  color: var(--gray);
  font-family: var(--family-mono);
  font-size: var(--font-size-small);
}
.contacts__schedule-row:last-child {
  border-bottom: none;
}

.contacts__schedule-highlight {
  color: var(--green);
  font-weight: 700;
}

.contacts__pitch {
  padding: 28px;
  border: 1px solid var(--surface-border);
  background-color: var(--surface);
  height: 100%;
}

.contacts__pitch-title {
  font-family: var(--family-titles);
  font-weight: 700;
  color: var(--white);
  font-size: var(--font-size-big);
  line-height: 1.3;
  margin-bottom: 20px;
}

.contacts__pitch-text {
  color: var(--gray);
  font-family: var(--family-mono);
  font-size: var(--font-size-small);
  line-height: 1.7;
  margin-bottom: 18px;
}

.contacts__pitch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.contacts__pitch-list-item {
  position: relative;
  padding-left: 20px;
  color: var(--white);
  font-family: var(--family-mono);
  font-size: var(--font-size-small);
  line-height: 1.5;
}
.contacts__pitch-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--cyan);
}
/*# sourceMappingURL=contacts.css.map */
