.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 400;
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  transition: top 0.2s ease;
}

.contact-page .section {
  padding: 42px 0;
}

.skip-link:focus {
  top: 12px;
}

.contact-page .nav__link--active::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ece6da;
}

.contact-hero__bg,
.contact-hero__overlay {
  position: absolute;
  inset: 0;
}

.contact-hero__bg {
  background: #173226;
}

.contact-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 31, 21, 0.88) 0%, rgba(4, 31, 21, 0.7) 34%, rgba(4, 31, 21, 0.22) 66%, rgba(4, 31, 21, 0.08) 100%);
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  padding: 44px 24px 28px;
  color: var(--white);
  transform: translateY(-24px);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  backdrop-filter: blur(6px);
}

.breadcrumb a:hover {
  color: #fff;
}

.contact-hero .hero__title-dark,
.contact-hero .hero__title-orange,
.contact-hero .hero__title-sub,
.contact-hero .hero__text,
.contact-hero .hero__eyebrow {
  color: var(--white);
}

.contact-hero .hero__title {
  max-width: 820px;
  margin-bottom: 14px;
}

.contact-hero .hero__title-dark {
  font-size: 48px;
  line-height: 0.98;
}

.contact-hero .hero__title-orange {
  font-size: 46px;
  line-height: 1;
}

.contact-hero .hero__title-sub {
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.contact-hero .hero__text {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.contact-cards {
  background: #fdfcf8;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #ebe5db;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 20px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  line-height: 1.7;
  color: #565656;
}

.contact-info-card a:hover {
  color: var(--orange);
}

.contact-panel-section {
  background: #f7f3eb;
}

.contact-panel-section:nth-of-type(even) {
  background: #fdfcf8;
}

.contact-panel {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #ebe5db;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0d8cb;
  border-radius: 8px;
  background: #fdfcf8;
  font-family: var(--font-body);
  font-size: 14px;
  color: #222;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 61, 42, 0.12);
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  grid-column: 1 / -1;
}

.contact-form__check input {
  margin-top: 3px;
}

.contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.rfq-section {
  background: #fff;
}

.rfq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rfq-card {
  background: var(--white);
  border: 1px solid #ebe5db;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  font: inherit;
  color: inherit;
  width: 100%;
}

.rfq-card:hover,
.rfq-card.is-active {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.rfq-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--green);
  margin-bottom: 6px;
}

.rfq-card span {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.contact-map {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.contact-map-wrap {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #ece5d8;
}

.network-visual {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #ece5d8;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.country-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.country-chip-grid span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #ece3d5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.story,
.faq {
  background: #f7f3eb;
}

.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#contact-cards .story__grid,
#why-contact .story__grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #ebe5db;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 16px 15px;
}

.story-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.story-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #565656;
}

.support-process {
  background: #fdfcf8;
}

.support-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

.support-process__grid::before {
  content: "";
  position: absolute;
  top: 118px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(232, 108, 31, 0.15), rgba(10, 61, 42, 0.25), rgba(232, 108, 31, 0.15));
  z-index: 0;
  pointer-events: none;
}

.support-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #ebe5db;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.support-step__media {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.support-step__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-step__badge {
  position: absolute;
  left: 14px;
  bottom: -16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(232, 108, 31, 0.35);
  border: 3px solid #fff;
  z-index: 2;
}

.support-step__body {
  padding: 28px 18px 20px;
}

.support-step__body h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.support-step__body p {
  font-size: 14px;
  line-height: 1.7;
  color: #565656;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #ebe5db;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq__question {
  width: 100%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1d1d1d;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq__question span:last-child {
  font-size: 22px;
  line-height: 1;
  color: var(--orange);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq__answer p {
  padding: 0 16px 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #5c5c5c;
}

.faq__item.is-open .faq__question span:last-child {
  transform: rotate(45deg);
}

.about-intro__visual {
  width: 100%;
  height: 450px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid #ece5d8;
}

.about-intro__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__grid,
.facility__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.facility__points {
  display: grid;
  gap: 12px;
}

.facility__point {
  padding: 13px 14px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #ece5d9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.facility__point h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.facility__point p {
  font-size: 14px;
  line-height: 1.7;
  color: #565656;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .contact-cards__grid,
  .rfq-grid,
  .story__grid,
  #contact-cards .story__grid,
  #why-contact .story__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .contact-hero {
    min-height: 440px;
  }

  .contact-hero .hero__title-dark {
    font-size: 36px;
  }

  .contact-hero .hero__title-orange {
    font-size: 34px;
  }

  .contact-hero__content {
    transform: none;
  }

  .about-intro__grid,
  .facility__grid,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .support-process__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .support-process__grid::before {
    top: 100px;
  }

  .support-step__media {
    height: 160px;
  }

  .support-step {
    min-height: 365px;
  }

  .support-step__body {
    padding: 26px 14px 16px;
  }

  .support-step__body h3 {
    font-size: 15px;
  }

  .support-step__body p {
    font-size: 13px;
  }

  .about-intro__visual,
  .network-visual {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .support-process__grid {
    grid-template-columns: 1fr;
  }

  .support-process__grid::before {
    display: none;
  }

  .support-step__media {
    height: 200px;
  }

  .support-step {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .contact-cards__grid,
  .rfq-grid,
  .story__grid,
  #contact-cards .story__grid,
  #why-contact .story__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero .hero__title-dark {
    font-size: 30px;
  }

  .contact-hero .hero__title-orange {
    font-size: 28px;
  }

  .contact-panel {
    padding: 20px 16px;
  }

  .contact-map {
    min-height: 300px;
  }
}
