.page-contact {
  --card-radius: 28px;
  background: var(--light);
}

.page-contact .breadcrumbs {
  padding: 20px 0 6px;
  font-size: 13px;
  color: #64748b;
  background: var(--white);
}

.page-contact .breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.page-contact .breadcrumbs__sep {
  margin: 0 8px;
  color: #94a3b8;
}

.page-contact .contact-hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 30px 0 88px;
}

.page-contact .contact-hero::before {
  content: "";
  position: absolute;
  top: -96px;
  right: -32px;
  width: 340px;
  height: 340px;
  border-radius: 38px;
  border: 2px solid var(--blue);
  opacity: 0.28;
  transform: rotate(24deg);
}

.page-contact .contact-hero::after {
  content: "";
  position: absolute;
  top: 36px;
  right: 86px;
  width: 180px;
  height: 180px;
  border-radius: 24px;
  background: var(--blue);
  opacity: 0.08;
  transform: rotate(-14deg) skewX(-8deg);
}

.page-contact .contact-hero__inner {
  position: relative;
  z-index: 1;
}

.page-contact .contact-hero__main .kicker {
  color: var(--blue);
}

.page-contact .contact-hero h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 8px 0 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--carbon);
}

.page-contact .contact-hero__lede {
  max-width: 620px;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.page-contact .contact-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-contact .contact-hero__meta .hero-metric {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 18px;
  min-width: 100px;
  text-align: center;
}

.page-contact .contact-hero__meta .hero-metric strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--blue);
  font-weight: 700;
}

.page-contact .contact-hero__meta .hero-metric span {
  font-size: 12px;
  color: #64748b;
}

.page-contact .contact-main {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding-bottom: 60px;
}

.page-contact .contact-main__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, #0a52e0 48%, #0758cc 100%);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-blue);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  color: var(--white);
  padding: 28px 24px;
}

.page-contact .contact-main__card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 260px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-18deg);
  border-radius: 30px;
}

.page-contact .contact-main__vertical-label {
  display: none;
}

.page-contact .contact-main__info {
  position: relative;
}

.page-contact .contact-main__kicker {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.page-contact .contact-main__info h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 8px 0 6px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-contact .contact-main__intro {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px;
}

.page-contact .contact-list {
  display: flex;
  flex-direction: column;
}

.page-contact .contact-item {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.page-contact .contact-item:first-child {
  border-top: 0;
}

.page-contact .contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-contact .contact-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.page-contact .contact-item__body {
  flex: 1;
  min-width: 0;
}

.page-contact .contact-item__body h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  opacity: 0.8;
}

.page-contact .contact-item__value {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  word-break: break-all;
  margin: 2px 0;
}

.page-contact .contact-item__mail {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s var(--ease);
}

.page-contact .contact-item__mail:hover,
.page-contact .contact-item__mail:focus-visible {
  border-color: var(--white);
  outline: none;
}

.page-contact .contact-item__body p:last-child {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin: 4px 0 0;
}

.page-contact .contact-item__map {
  width: 100%;
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-contact .contact-item__map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-contact .contact-main__action {
  position: relative;
}

.page-contact .quick-reply {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.page-contact .quick-reply__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.page-contact .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(57, 255, 136, 0.2);
}

.page-contact .quick-reply__title {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 6px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-contact .quick-reply__desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 14px;
}

.page-contact .quick-reply__fields {
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-contact .quick-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.page-contact .quick-field:last-child {
  border-bottom: 0;
}

.page-contact .quick-field dt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.page-contact .quick-field dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  word-break: break-all;
}

.page-contact .quick-field__highlight {
  color: var(--green);
}

.page-contact .contact-send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--white);
  color: var(--blue);
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.page-contact .contact-send-btn:hover,
.page-contact .contact-send-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 13, 18, 0.16);
  outline: none;
}

.page-contact .quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.page-contact .quick-stats__item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
}

.page-contact .quick-stats__item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.page-contact .quick-stats__item span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.page-contact .support-info {
  background: var(--pale);
}

.page-contact .support-info__head .kicker {
  color: var(--blue);
}

.page-contact .support-info__head h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--carbon);
  margin: 8px 0 0;
}

.page-contact .support-info__body {
  max-width: 620px;
  margin-top: 20px;
}

.page-contact .support-info__lead {
  font-size: 15px;
  color: var(--carbon);
  font-weight: 600;
  margin: 0 0 12px;
}

.page-contact .support-info__list {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}

.page-contact .support-info__list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}

.page-contact .support-info__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 2px;
  transform: rotate(45deg);
}

.page-contact .note-block {
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.65;
  color: #334155;
  box-shadow: var(--shadow);
}

.page-contact .contact-promise {
  position: relative;
  overflow: hidden;
}

.page-contact .contact-promise::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: rgba(10, 95, 255, 0.18);
  border-radius: 50%;
}

.page-contact .contact-promise__head {
  position: relative;
}

.page-contact .contact-promise__head .kicker {
  color: var(--green);
}

.page-contact .contact-promise__head h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--white);
}

.page-contact .contact-promise__head p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 460px;
  line-height: 1.6;
}

.page-contact .contact-promise__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  position: relative;
}

.page-contact .promise-card {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact .promise-card__index {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

.page-contact .promise-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
}

.page-contact .promise-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.64);
  margin: 0;
}

.page-contact .contact-promise__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact .contact-promise__bottom img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.page-contact .contact-promise__links p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0;
}

.page-contact .contact-promise__links a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 136, 0.3);
  transition: border-color 0.2s var(--ease);
}

.page-contact .contact-promise__links a:hover,
.page-contact .contact-promise__links a:focus-visible {
  border-color: var(--green);
  outline: none;
}

@media (min-width: 720px) {
  .page-contact .contact-item__map {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.35s var(--ease), margin-top 0.35s var(--ease);
  }

  .page-contact .contact-item--address:hover .contact-item__map,
  .page-contact .contact-item--address:focus-within .contact-item__map {
    max-height: 260px;
    margin-top: 12px;
  }
}

@media (min-width: 900px) {
  .page-contact .contact-hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
  }

  .page-contact .contact-hero__meta {
    margin-top: 0;
    justify-content: flex-end;
  }

  .page-contact .contact-hero__meta .hero-metric {
    min-width: 130px;
  }

  .page-contact .contact-main__card {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    padding: 44px;
  }

  .page-contact .contact-main__vertical-label {
    display: block;
    position: absolute;
    right: -6px;
    top: 36px;
    writing-mode: vertical-rl;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    transform: rotate(180deg);
    user-select: none;
    z-index: 1;
  }

  .page-contact .contact-main__action {
    z-index: 2;
  }

  .page-contact .contact-item__body p:last-child {
    max-width: 280px;
  }

  .page-contact .support-info__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
  }

  .page-contact .support-info__body {
    margin-top: 0;
  }

  .page-contact .contact-promise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .page-contact .promise-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.03);
  }

  .page-contact .promise-card:first-child {
    transform: translateY(-10px);
    background: rgba(10, 95, 255, 0.18);
  }

  .page-contact .contact-promise__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-contact .contact-promise__bottom img {
    width: 320px;
  }

  .page-contact .contact-promise__links {
    text-align: right;
  }
}
